/* DUPLICATOR MYSQL SCRIPT CREATED ON : 2016-12-20 18:34:59 */

SET FOREIGN_KEY_CHECKS = 0;

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=MyISAM AUTO_INCREMENT=21 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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` text 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` mediumtext 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=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wp_duplicator_packages` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(250) NOT NULL,
  `hash` varchar(50) NOT NULL,
  `status` int(11) NOT NULL,
  `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `owner` varchar(60) NOT NULL,
  `package` mediumblob NOT NULL,
  PRIMARY KEY (`id`),
  KEY `hash` (`hash`)
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=latin1;

CREATE TABLE `wp_et_bloom_stats` (
  `id` mediumint(9) NOT NULL AUTO_INCREMENT,
  `record_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `record_type` varchar(3) COLLATE utf8mb4_unicode_ci NOT NULL,
  `optin_id` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `list_id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
  `ip_address` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL,
  `page_id` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `removed_flag` tinyint(1) NOT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=52 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wp_et_social_stats` (
  `id` mediumint(9) NOT NULL AUTO_INCREMENT,
  `sharing_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `network` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `action` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_id` bigint(20) NOT NULL,
  `ip_address` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL,
  `media_url` varchar(2083) COLLATE utf8mb4_unicode_ci NOT NULL,
  `location` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wp_frm_fields` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `field_key` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `name` text COLLATE utf8mb4_unicode_ci,
  `description` longtext COLLATE utf8mb4_unicode_ci,
  `type` text COLLATE utf8mb4_unicode_ci,
  `default_value` longtext COLLATE utf8mb4_unicode_ci,
  `options` longtext COLLATE utf8mb4_unicode_ci,
  `field_order` int(11) DEFAULT '0',
  `required` int(1) DEFAULT NULL,
  `field_options` longtext COLLATE utf8mb4_unicode_ci,
  `form_id` int(11) DEFAULT NULL,
  `created_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `field_key` (`field_key`),
  KEY `form_id` (`form_id`)
) ENGINE=MyISAM AUTO_INCREMENT=22 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wp_frm_forms` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `form_key` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `description` text COLLATE utf8mb4_unicode_ci,
  `parent_form_id` int(11) DEFAULT '0',
  `logged_in` tinyint(1) DEFAULT NULL,
  `editable` tinyint(1) DEFAULT NULL,
  `is_template` tinyint(1) DEFAULT '0',
  `default_template` tinyint(1) DEFAULT '0',
  `status` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `options` longtext COLLATE utf8mb4_unicode_ci,
  `created_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `form_key` (`form_key`)
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wp_frm_item_metas` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci,
  `field_id` int(11) NOT NULL,
  `item_id` int(11) NOT NULL,
  `created_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `field_id` (`field_id`),
  KEY `item_id` (`item_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wp_frm_items` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `item_key` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `description` text COLLATE utf8mb4_unicode_ci,
  `ip` text COLLATE utf8mb4_unicode_ci,
  `form_id` int(11) DEFAULT NULL,
  `post_id` int(11) DEFAULT NULL,
  `user_id` int(11) DEFAULT NULL,
  `parent_item_id` int(11) DEFAULT '0',
  `is_draft` tinyint(1) DEFAULT '0',
  `updated_by` int(11) DEFAULT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `item_key` (`item_key`),
  KEY `form_id` (`form_id`),
  KEY `post_id` (`post_id`),
  KEY `user_id` (`user_id`),
  KEY `parent_item_id` (`parent_item_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wp_itsec_lockouts` (
  `lockout_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `lockout_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `lockout_start` datetime NOT NULL,
  `lockout_start_gmt` datetime NOT NULL,
  `lockout_expire` datetime NOT NULL,
  `lockout_expire_gmt` datetime NOT NULL,
  `lockout_host` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `lockout_user` bigint(20) unsigned DEFAULT NULL,
  `lockout_username` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `lockout_active` int(1) NOT NULL DEFAULT '1',
  PRIMARY KEY (`lockout_id`),
  KEY `lockout_expire_gmt` (`lockout_expire_gmt`),
  KEY `lockout_host` (`lockout_host`),
  KEY `lockout_user` (`lockout_user`),
  KEY `lockout_username` (`lockout_username`),
  KEY `lockout_active` (`lockout_active`)
) ENGINE=MyISAM AUTO_INCREMENT=87 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wp_itsec_log` (
  `log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `log_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `log_function` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `log_priority` int(2) NOT NULL DEFAULT '1',
  `log_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `log_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `log_host` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `log_username` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `log_user` bigint(20) unsigned DEFAULT NULL,
  `log_url` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `log_referrer` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `log_data` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`log_id`),
  KEY `log_type` (`log_type`),
  KEY `log_date_gmt` (`log_date_gmt`)
) ENGINE=MyISAM AUTO_INCREMENT=1427 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `wp_itsec_temp` (
  `temp_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `temp_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `temp_date` datetime NOT NULL,
  `temp_date_gmt` datetime NOT NULL,
  `temp_host` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `temp_user` bigint(20) unsigned DEFAULT NULL,
  `temp_username` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`temp_id`),
  KEY `temp_date_gmt` (`temp_date_gmt`),
  KEY `temp_host` (`temp_host`),
  KEY `temp_user` (`temp_user`),
  KEY `temp_username` (`temp_username`)
) ENGINE=MyISAM AUTO_INCREMENT=1924 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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` longtext 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=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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=MyISAM AUTO_INCREMENT=10094 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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=MyISAM AUTO_INCREMENT=682 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_excerpt` mediumtext 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` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `pinged` mediumtext 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 `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
  KEY `post_parent` (`post_parent`),
  KEY `post_author` (`post_author`),
  KEY `post_name` (`post_name`(191))
) ENGINE=MyISAM AUTO_INCREMENT=526 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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=MyISAM AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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;

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=MyISAM AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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=MyISAM AUTO_INCREMENT=48 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


/* INSERT TABLE DATA: wp_commentmeta */
INSERT INTO `wp_commentmeta` VALUES("20", "4", "_wp_trash_meta_time", "1482202069");
INSERT INTO `wp_commentmeta` VALUES("19", "4", "_wp_trash_meta_status", "0");

/* INSERT TABLE DATA: wp_comments */
INSERT INTO `wp_comments` VALUES("4", "323", "seo plugin", "bidxlqve@gmail.com", "http://www.SEORankingLinks.us/", "107.175.39.175", "2016-12-10 23:17:37", "2016-12-10 10:17:37", "Hello Web Admin, I noticed that your On-Page SEO is is missing a few factors, for one you do not use all three H tags in your post, also I notice that you are not using bold or italics properly in your SEO optimization. On-Page SEO means more now than ever since the new Google update: Panda. No longer are backlinks and simply pinging or sending out a RSS feed the key to getting Google PageRank or Alexa Rankings, You now NEED On-Page SEO. So what is good On-Page SEO?First your keyword must appear in the title.Then it must appear in the URL.You have to optimize your keyword and make sure that it has a nice keyword density of 3-5% in your article with relevant LSI (Latent Semantic Indexing). Then you should spread all H1,H2,H3 tags in your article.Your Keyword should appear in your first paragraph and in the last sentence of the page. You should have relevant usage of Bold and italics of your keyword.There should be one internal link to a page on your blog and you should have one image with an alt tag that has your keyword....wait there\'s even more Now what if i told you there was a simple Wordpress plugin that does all the On-Page SEO, and automatically for you? That\'s right AUTOMATICALLY, just watch this 4minute video for more information at. <a href=\"http://www.SEORankingLinks.us\" rel=\"nofollow\">Seo Plugin</a>", "0", "spam", "Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko", "", "0", "0");

/* INSERT TABLE DATA: wp_duplicator_packages */
INSERT INTO `wp_duplicator_packages` VALUES("5", "20161220_infinitymarketing", "585979c77893d1841161220183447", "20", "2016-12-20 18:34:59", "infinitymarketingnz", "O:11:\"DUP_Package\":23:{s:7:\"Created\";s:19:\"2016-12-20 18:34:47\";s:7:\"Version\";s:6:\"1.1.26\";s:9:\"VersionWP\";s:5:\"4.6.1\";s:9:\"VersionDB\";s:6:\"5.5.52\";s:10:\"VersionPHP\";s:6:\"5.4.45\";s:9:\"VersionOS\";s:5:\"Linux\";s:2:\"ID\";i:5;s:4:\"Name\";s:26:\"20161220_infinitymarketing\";s:4:\"Hash\";s:29:\"585979c77893d1841161220183447\";s:8:\"NameHash\";s:56:\"20161220_infinitymarketing_585979c77893d1841161220183447\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:48:\"/home/candiclebaker/public_html/wp-snapshots/tmp\";s:8:\"StoreURL\";s:48:\"http://www.infinitymarketing.co.nz/wp-snapshots/\";s:8:\"ScanFile\";s:66:\"20161220_infinitymarketing_585979c77893d1841161220183447_scan.json\";s:7:\"Runtime\";N;s:7:\"ExeSize\";N;s:7:\"ZipSize\";N;s:6:\"Status\";N;s:6:\"WPUser\";s:19:\"infinitymarketingnz\";s:7:\"Archive\";O:11:\"DUP_Archive\":13:{s:10:\"FilterDirs\";s:0:\"\";s:10:\"FilterExts\";s:0:\"\";s:13:\"FilterDirsAll\";a:0:{}s:13:\"FilterExtsAll\";a:0:{}s:8:\"FilterOn\";i:0;s:4:\"File\";s:68:\"20161220_infinitymarketing_585979c77893d1841161220183447_archive.zip\";s:6:\"Format\";s:3:\"ZIP\";s:7:\"PackDir\";s:31:\"/home/candiclebaker/public_html\";s:4:\"Size\";i:0;s:4:\"Dirs\";a:0:{}s:5:\"Files\";a:0:{}s:10:\"FilterInfo\";O:23:\"DUP_Archive_Filter_Info\":6:{s:4:\"Dirs\";O:34:\"DUP_Archive_Filter_Scope_Directory\":4:{s:7:\"Warning\";a:0:{}s:10:\"Unreadable\";a:0:{}s:4:\"Core\";a:0:{}s:8:\"Instance\";a:0:{}}s:5:\"Files\";O:29:\"DUP_Archive_Filter_Scope_File\":5:{s:4:\"Size\";a:0:{}s:7:\"Warning\";a:0:{}s:10:\"Unreadable\";a:0:{}s:4:\"Core\";a:0:{}s:8:\"Instance\";a:0:{}}s:4:\"Exts\";O:29:\"DUP_Archive_Filter_Scope_Base\":2:{s:4:\"Core\";a:0:{}s:8:\"Instance\";a:0:{}}s:9:\"UDirCount\";i:0;s:10:\"UFileCount\";i:0;s:9:\"UExtCount\";i:0;}s:10:\"\0*\0Package\";O:11:\"DUP_Package\":23:{s:7:\"Created\";s:19:\"2016-12-20 18:34:47\";s:7:\"Version\";s:6:\"1.1.26\";s:9:\"VersionWP\";s:5:\"4.6.1\";s:9:\"VersionDB\";s:6:\"5.5.52\";s:10:\"VersionPHP\";s:6:\"5.4.45\";s:9:\"VersionOS\";s:5:\"Linux\";s:2:\"ID\";N;s:4:\"Name\";s:26:\"20161220_infinitymarketing\";s:4:\"Hash\";s:29:\"585979c77893d1841161220183447\";s:8:\"NameHash\";s:56:\"20161220_infinitymarketing_585979c77893d1841161220183447\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:48:\"/home/candiclebaker/public_html/wp-snapshots/tmp\";s:8:\"StoreURL\";s:48:\"http://www.infinitymarketing.co.nz/wp-snapshots/\";s:8:\"ScanFile\";N;s:7:\"Runtime\";N;s:7:\"ExeSize\";N;s:7:\"ZipSize\";N;s:6:\"Status\";N;s:6:\"WPUser\";N;s:7:\"Archive\";r:22;s:9:\"Installer\";O:13:\"DUP_Installer\":12:{s:4:\"File\";s:70:\"20161220_infinitymarketing_585979c77893d1841161220183447_installer.php\";s:4:\"Size\";i:0;s:10:\"OptsDBHost\";s:0:\"\";s:10:\"OptsDBPort\";s:0:\"\";s:10:\"OptsDBName\";s:0:\"\";s:10:\"OptsDBUser\";s:0:\"\";s:12:\"OptsSSLAdmin\";i:0;s:12:\"OptsSSLLogin\";i:0;s:11:\"OptsCacheWP\";i:0;s:13:\"OptsCachePath\";i:0;s:10:\"OptsURLNew\";s:0:\"\";s:10:\"\0*\0Package\";r:52;}s:8:\"Database\";O:12:\"DUP_Database\":12:{s:4:\"Type\";s:5:\"MySQL\";s:4:\"Size\";N;s:4:\"File\";s:69:\"20161220_infinitymarketing_585979c77893d1841161220183447_database.sql\";s:4:\"Path\";N;s:12:\"FilterTables\";s:0:\"\";s:8:\"FilterOn\";i:0;s:4:\"Name\";N;s:10:\"Compatible\";s:0:\"\";s:10:\"\0*\0Package\";r:1;s:25:\"\0DUP_Database\0dbStorePath\";N;s:23:\"\0DUP_Database\0EOFMarker\";s:0:\"\";s:26:\"\0DUP_Database\0networkFlush\";b:0;}}}s:9:\"Installer\";r:74;s:8:\"Database\";r:87;}");

/* INSERT TABLE DATA: wp_et_bloom_stats */
INSERT INTO `wp_et_bloom_stats` VALUES("1", "2016-03-01 22:27:48", "imp", "optin_1", "mailchimp_4419f44e8e", "122.57.166.244", "0", "0");
INSERT INTO `wp_et_bloom_stats` VALUES("2", "2016-03-01 22:27:48", "imp", "optin_1", "mailchimp_4419f44e8e", "122.57.166.244", "0", "0");
INSERT INTO `wp_et_bloom_stats` VALUES("3", "2016-03-01 22:27:48", "imp", "optin_1", "mailchimp_4419f44e8e", "122.57.166.244", "0", "0");
INSERT INTO `wp_et_bloom_stats` VALUES("4", "2016-03-01 22:27:48", "imp", "optin_1", "mailchimp_4419f44e8e", "122.57.166.244", "0", "0");
INSERT INTO `wp_et_bloom_stats` VALUES("5", "2016-03-01 22:27:51", "imp", "optin_1", "mailchimp_4419f44e8e", "122.57.166.244", "37", "0");
INSERT INTO `wp_et_bloom_stats` VALUES("6", "2016-03-01 22:27:53", "imp", "optin_1", "mailchimp_4419f44e8e", "122.57.166.244", "37", "0");
INSERT INTO `wp_et_bloom_stats` VALUES("7", "2016-03-01 22:27:55", "imp", "optin_1", "mailchimp_4419f44e8e", "122.57.166.244", "0", "0");
INSERT INTO `wp_et_bloom_stats` VALUES("8", "2016-03-01 22:27:55", "imp", "optin_1", "mailchimp_4419f44e8e", "122.57.166.244", "0", "0");
INSERT INTO `wp_et_bloom_stats` VALUES("9", "2016-03-01 22:27:55", "imp", "optin_1", "mailchimp_4419f44e8e", "122.57.166.244", "0", "0");
INSERT INTO `wp_et_bloom_stats` VALUES("10", "2016-03-01 22:27:55", "imp", "optin_1", "mailchimp_4419f44e8e", "122.57.166.244", "0", "0");
INSERT INTO `wp_et_bloom_stats` VALUES("11", "2016-03-01 22:32:45", "imp", "optin_1", "mailchimp_4419f44e8e", "122.57.166.244", "37", "0");
INSERT INTO `wp_et_bloom_stats` VALUES("12", "2016-03-01 22:34:46", "imp", "optin_1", "mailchimp_4419f44e8e", "122.57.166.244", "37", "0");
INSERT INTO `wp_et_bloom_stats` VALUES("13", "2016-03-01 22:34:51", "imp", "optin_1", "mailchimp_4419f44e8e", "122.57.166.244", "0", "0");
INSERT INTO `wp_et_bloom_stats` VALUES("14", "2016-03-01 22:34:51", "imp", "optin_1", "mailchimp_4419f44e8e", "122.57.166.244", "0", "0");
INSERT INTO `wp_et_bloom_stats` VALUES("15", "2016-03-01 22:34:51", "imp", "optin_1", "mailchimp_4419f44e8e", "122.57.166.244", "0", "0");
INSERT INTO `wp_et_bloom_stats` VALUES("16", "2016-03-01 22:34:51", "imp", "optin_1", "mailchimp_4419f44e8e", "122.57.166.244", "0", "0");
INSERT INTO `wp_et_bloom_stats` VALUES("17", "2016-04-15 17:23:04", "imp", "optin_2", "4419f44e8e", "122.59.72.18", "323", "0");
INSERT INTO `wp_et_bloom_stats` VALUES("18", "2016-04-15 17:45:00", "imp", "optin_2", "4419f44e8e", "27.252.147.71", "323", "0");
INSERT INTO `wp_et_bloom_stats` VALUES("19", "2016-04-15 17:50:29", "imp", "optin_2", "4419f44e8e", "122.60.194.205", "323", "0");
INSERT INTO `wp_et_bloom_stats` VALUES("20", "2016-04-15 17:59:23", "imp", "optin_2", "4419f44e8e", "122.58.41.56", "323", "0");
INSERT INTO `wp_et_bloom_stats` VALUES("21", "2016-04-15 18:31:54", "imp", "optin_2", "4419f44e8e", "118.90.6.126", "323", "0");
INSERT INTO `wp_et_bloom_stats` VALUES("22", "2016-04-15 18:44:36", "imp", "optin_2", "4419f44e8e", "119.224.31.48", "323", "0");
INSERT INTO `wp_et_bloom_stats` VALUES("23", "2016-04-15 19:08:10", "imp", "optin_2", "4419f44e8e", "125.236.137.70", "323", "0");
INSERT INTO `wp_et_bloom_stats` VALUES("24", "2016-04-15 20:48:35", "imp", "optin_2", "4419f44e8e", "210.246.58.246", "323", "0");
INSERT INTO `wp_et_bloom_stats` VALUES("25", "2016-04-15 22:38:32", "imp", "optin_2", "4419f44e8e", "122.59.72.18", "323", "0");
INSERT INTO `wp_et_bloom_stats` VALUES("26", "2016-04-15 22:39:44", "imp", "optin_2", "4419f44e8e", "122.56.202.86", "323", "0");
INSERT INTO `wp_et_bloom_stats` VALUES("27", "2016-04-16 11:55:42", "imp", "optin_2", "4419f44e8e", "118.92.157.156", "323", "0");
INSERT INTO `wp_et_bloom_stats` VALUES("28", "2016-04-20 08:48:22", "imp", "optin_2", "4419f44e8e", "118.92.33.193", "323", "0");
INSERT INTO `wp_et_bloom_stats` VALUES("29", "2016-04-20 13:41:17", "imp", "optin_2", "4419f44e8e", "122.59.109.138", "323", "0");
INSERT INTO `wp_et_bloom_stats` VALUES("30", "2016-04-21 07:50:39", "imp", "optin_2", "4419f44e8e", "122.59.109.138", "323", "0");
INSERT INTO `wp_et_bloom_stats` VALUES("31", "2016-04-21 11:42:26", "imp", "optin_2", "4419f44e8e", "121.98.239.43", "323", "0");
INSERT INTO `wp_et_bloom_stats` VALUES("32", "2016-04-22 14:56:53", "imp", "optin_2", "4419f44e8e", "122.59.215.226", "323", "0");
INSERT INTO `wp_et_bloom_stats` VALUES("33", "2016-05-08 20:19:54", "imp", "optin_2", "4419f44e8e", "95.90.243.7", "323", "0");
INSERT INTO `wp_et_bloom_stats` VALUES("34", "2016-05-16 18:45:25", "imp", "optin_2", "4419f44e8e", "122.57.0.164", "323", "0");
INSERT INTO `wp_et_bloom_stats` VALUES("35", "2016-05-19 23:50:32", "imp", "optin_2", "4419f44e8e", "122.59.106.228", "323", "0");
INSERT INTO `wp_et_bloom_stats` VALUES("36", "2016-06-06 16:32:09", "imp", "optin_2", "4419f44e8e", "122.59.61.128", "323", "0");
INSERT INTO `wp_et_bloom_stats` VALUES("37", "2016-06-07 11:49:59", "imp", "optin_2", "4419f44e8e", "54.187.9.44", "323", "0");
INSERT INTO `wp_et_bloom_stats` VALUES("38", "2016-06-07 11:50:00", "imp", "optin_2", "4419f44e8e", "54.187.9.44", "323", "0");
INSERT INTO `wp_et_bloom_stats` VALUES("39", "2016-06-21 15:28:12", "imp", "optin_2", "4419f44e8e", "121.99.177.154", "323", "0");
INSERT INTO `wp_et_bloom_stats` VALUES("40", "2016-07-09 23:21:10", "imp", "optin_2", "4419f44e8e", "213.205.198.235", "323", "0");
INSERT INTO `wp_et_bloom_stats` VALUES("41", "2016-07-21 17:32:14", "imp", "optin_2", "4419f44e8e", "122.59.104.98", "323", "0");
INSERT INTO `wp_et_bloom_stats` VALUES("42", "2016-07-28 12:43:38", "imp", "optin_2", "4419f44e8e", "218.101.116.253", "323", "0");
INSERT INTO `wp_et_bloom_stats` VALUES("43", "2016-08-12 22:22:54", "imp", "optin_2", "4419f44e8e", "125.238.250.112", "323", "0");
INSERT INTO `wp_et_bloom_stats` VALUES("44", "2016-08-20 13:09:37", "imp", "optin_2", "4419f44e8e", "118.92.149.243", "323", "0");
INSERT INTO `wp_et_bloom_stats` VALUES("45", "2016-08-25 21:08:54", "imp", "optin_2", "4419f44e8e", "103.224.128.187", "323", "0");
INSERT INTO `wp_et_bloom_stats` VALUES("46", "2016-09-14 23:40:50", "imp", "optin_2", "4419f44e8e", "158.69.228.25", "323", "0");
INSERT INTO `wp_et_bloom_stats` VALUES("47", "2016-09-14 23:40:51", "imp", "optin_2", "4419f44e8e", "158.69.228.25", "323", "0");
INSERT INTO `wp_et_bloom_stats` VALUES("48", "2016-09-16 15:52:51", "imp", "optin_2", "4419f44e8e", "54.149.128.167", "323", "0");
INSERT INTO `wp_et_bloom_stats` VALUES("49", "2016-09-16 15:52:52", "imp", "optin_2", "4419f44e8e", "54.149.128.167", "323", "0");
INSERT INTO `wp_et_bloom_stats` VALUES("50", "2016-09-27 08:52:38", "imp", "optin_2", "4419f44e8e", "43.243.60.4", "323", "0");
INSERT INTO `wp_et_bloom_stats` VALUES("51", "2016-11-10 09:41:02", "imp", "optin_2", "4419f44e8e", "103.29.30.24", "323", "0");

/* INSERT TABLE DATA: wp_frm_fields */
INSERT INTO `wp_frm_fields` VALUES("1", "qh4icy", "Name", "First", "text", NULL, NULL, "1", "1", "a:4:{s:5:\"blank\";s:0:\"\";s:14:\"separate_value\";i:0;s:7:\"classes\";s:18:\"frm_first frm_half\";s:10:\"in_section\";i:0;}", "1", "2016-02-29 09:01:54");
INSERT INTO `wp_frm_fields` VALUES("2", "ocfup1", "Last", "Last", "text", NULL, NULL, "2", "1", "a:4:{s:5:\"label\";s:6:\"hidden\";s:5:\"blank\";s:0:\"\";s:7:\"classes\";s:8:\"frm_half\";s:10:\"in_section\";i:0;}", "1", "2016-02-29 09:01:54");
INSERT INTO `wp_frm_fields` VALUES("3", "29yf4d", "Email", "", "email", NULL, NULL, "3", "1", "a:4:{s:5:\"blank\";s:0:\"\";s:7:\"invalid\";s:34:\"Please enter a valid email address\";s:7:\"classes\";s:8:\"frm_full\";s:10:\"in_section\";i:0;}", "1", "2016-02-29 09:01:54");
INSERT INTO `wp_frm_fields` VALUES("4", "itt5me", "Website", "", "url", NULL, NULL, "4", "0", "a:4:{s:5:\"blank\";s:0:\"\";s:7:\"invalid\";s:28:\"Please enter a valid website\";s:7:\"classes\";s:8:\"frm_full\";s:10:\"in_section\";i:0;}", "1", "2016-02-29 09:01:54");
INSERT INTO `wp_frm_fields` VALUES("5", "e6lis6", "Subject", "", "text", NULL, NULL, "5", "1", "a:3:{s:5:\"blank\";s:0:\"\";s:7:\"classes\";s:8:\"frm_full\";s:10:\"in_section\";i:0;}", "1", "2016-02-29 09:01:54");
INSERT INTO `wp_frm_fields` VALUES("6", "9jv0r1", "Message", "", "textarea", NULL, NULL, "6", "1", "a:4:{s:3:\"max\";s:1:\"5\";s:5:\"blank\";s:0:\"\";s:7:\"classes\";s:8:\"frm_full\";s:10:\"in_section\";i:0;}", "1", "2016-02-29 09:01:54");
INSERT INTO `wp_frm_fields` VALUES("7", "62n6q3", "Captcha", "", "captcha", NULL, NULL, "7", "0", "a:5:{s:5:\"label\";s:4:\"none\";s:5:\"blank\";s:0:\"\";s:14:\"clear_on_focus\";i:0;s:13:\"default_blank\";i:0;s:10:\"in_section\";i:0;}", "1", "2016-02-29 09:01:54");
INSERT INTO `wp_frm_fields` VALUES("8", "qh4icy2", "Name", "First", "text", NULL, NULL, "1", "1", "a:3:{s:5:\"blank\";s:0:\"\";s:14:\"separate_value\";i:0;s:7:\"classes\";s:18:\"frm_first frm_half\";}", "3", "2016-02-29 09:44:10");
INSERT INTO `wp_frm_fields` VALUES("9", "ocfup12", "Last", "Last", "text", NULL, NULL, "2", "1", "a:3:{s:5:\"label\";s:6:\"hidden\";s:5:\"blank\";s:0:\"\";s:7:\"classes\";s:8:\"frm_half\";}", "3", "2016-02-29 09:44:10");
INSERT INTO `wp_frm_fields` VALUES("10", "29yf4d2", "Email", "", "email", NULL, NULL, "3", "1", "a:3:{s:5:\"blank\";s:0:\"\";s:7:\"invalid\";s:34:\"Please enter a valid email address\";s:7:\"classes\";s:8:\"frm_full\";}", "3", "2016-02-29 09:44:10");
INSERT INTO `wp_frm_fields` VALUES("11", "itt5me2", "Website", "", "url", NULL, NULL, "4", "0", "a:3:{s:5:\"blank\";s:0:\"\";s:7:\"invalid\";s:28:\"Please enter a valid website\";s:7:\"classes\";s:8:\"frm_full\";}", "3", "2016-02-29 09:44:10");
INSERT INTO `wp_frm_fields` VALUES("12", "e6lis62", "Subject", "", "text", NULL, NULL, "5", "1", "a:2:{s:5:\"blank\";s:0:\"\";s:7:\"classes\";s:8:\"frm_full\";}", "3", "2016-02-29 09:44:10");
INSERT INTO `wp_frm_fields` VALUES("13", "9jv0r12", "Message", "", "textarea", NULL, NULL, "6", "1", "a:3:{s:3:\"max\";s:1:\"5\";s:5:\"blank\";s:0:\"\";s:7:\"classes\";s:8:\"frm_full\";}", "3", "2016-02-29 09:44:10");
INSERT INTO `wp_frm_fields` VALUES("14", "62n6q32", "Captcha", "", "captcha", NULL, NULL, "7", "0", "a:4:{s:5:\"label\";s:4:\"none\";s:5:\"blank\";s:0:\"\";s:14:\"clear_on_focus\";i:0;s:13:\"default_blank\";i:0;}", "3", "2016-02-29 09:44:10");
INSERT INTO `wp_frm_fields` VALUES("15", "qh4icy3", "Name", "First", "text", NULL, NULL, "1", "1", "a:3:{s:5:\"blank\";s:0:\"\";s:14:\"separate_value\";i:0;s:7:\"classes\";s:18:\"frm_first frm_half\";}", "4", "2016-02-29 21:22:55");
INSERT INTO `wp_frm_fields` VALUES("16", "ocfup13", "Last", "Last", "text", NULL, NULL, "2", "1", "a:3:{s:5:\"label\";s:6:\"hidden\";s:5:\"blank\";s:0:\"\";s:7:\"classes\";s:8:\"frm_half\";}", "4", "2016-02-29 21:22:55");
INSERT INTO `wp_frm_fields` VALUES("17", "29yf4d3", "Email", "", "email", NULL, NULL, "3", "1", "a:3:{s:5:\"blank\";s:0:\"\";s:7:\"invalid\";s:34:\"Please enter a valid email address\";s:7:\"classes\";s:8:\"frm_full\";}", "4", "2016-02-29 21:22:55");
INSERT INTO `wp_frm_fields` VALUES("18", "itt5me3", "Website", "", "url", NULL, NULL, "4", "0", "a:3:{s:5:\"blank\";s:0:\"\";s:7:\"invalid\";s:28:\"Please enter a valid website\";s:7:\"classes\";s:8:\"frm_full\";}", "4", "2016-02-29 21:22:55");
INSERT INTO `wp_frm_fields` VALUES("19", "e6lis63", "Subject", "", "text", NULL, NULL, "5", "1", "a:2:{s:5:\"blank\";s:0:\"\";s:7:\"classes\";s:8:\"frm_full\";}", "4", "2016-02-29 21:22:55");
INSERT INTO `wp_frm_fields` VALUES("20", "9jv0r13", "Message", "", "textarea", NULL, NULL, "6", "1", "a:3:{s:3:\"max\";s:1:\"5\";s:5:\"blank\";s:0:\"\";s:7:\"classes\";s:8:\"frm_full\";}", "4", "2016-02-29 21:22:55");
INSERT INTO `wp_frm_fields` VALUES("21", "62n6q33", "Captcha", "", "captcha", NULL, NULL, "7", "0", "a:4:{s:5:\"label\";s:4:\"none\";s:5:\"blank\";s:0:\"\";s:14:\"clear_on_focus\";i:0;s:13:\"default_blank\";i:0;}", "4", "2016-02-29 21:22:55");

/* INSERT TABLE DATA: wp_frm_forms */
INSERT INTO `wp_frm_forms` VALUES("1", "contact", "Contact Us", "We would like to hear from you. Please send us a message by filling out the form below and we will get back with you shortly.", "0", "0", "0", "1", "1", "published", "a:12:{s:12:\"custom_style\";i:1;s:12:\"submit_value\";s:6:\"Submit\";s:14:\"success_action\";s:7:\"message\";s:11:\"success_msg\";s:54:\"Your responses were successfully submitted. Thank you!\";s:9:\"show_form\";i:0;s:7:\"akismet\";s:0:\"\";s:7:\"no_save\";i:0;s:9:\"ajax_load\";i:0;s:10:\"form_class\";s:0:\"\";s:11:\"before_html\";s:217:\"<legend class=\"frm_hidden\">[form_name]</legend>\n[if form_name]<h3 class=\"frm_form_title\">[form_name]</h3>[/if form_name]\n[if form_description]<div class=\"frm_description\">[form_description]</div>[/if form_description]\";s:10:\"after_html\";s:0:\"\";s:11:\"submit_html\";s:440:\"<div class=\"frm_submit\">\n[if back_button]<input type=\"button\" value=\"[back_label]\" name=\"frm_prev_page\" formnovalidate=\"formnovalidate\" class=\"frm_prev_page\" [back_hook] />[/if back_button]\n<input type=\"submit\" value=\"[button_label]\" [button_action] />\n<img class=\"frm_ajax_loading\" src=\"[frmurl]/images/ajax_loader.gif\" alt=\"Sending\"/>\n[if save_draft]<a href=\"#\" class=\"frm_save_draft\" [draft_hook]>[draft_label]</a>[/if save_draft]\n</div>\";}", "2009-11-24 00:17:31");
INSERT INTO `wp_frm_forms` VALUES("3", "contact2", "Contact Us", "We would like to hear from you. Please send us a message by filling out the form below and we will get back with you shortly.", "0", "0", "0", "0", "0", "draft", "a:12:{s:12:\"submit_value\";s:6:\"Submit\";s:14:\"success_action\";s:7:\"message\";s:11:\"success_msg\";s:54:\"Your responses were successfully submitted. Thank you!\";s:9:\"show_form\";i:0;s:7:\"akismet\";s:0:\"\";s:7:\"no_save\";i:0;s:9:\"ajax_load\";i:0;s:10:\"form_class\";s:0:\"\";s:12:\"custom_style\";i:1;s:11:\"before_html\";s:217:\"<legend class=\"frm_hidden\">[form_name]</legend>\n[if form_name]<h3 class=\"frm_form_title\">[form_name]</h3>[/if form_name]\n[if form_description]<div class=\"frm_description\">[form_description]</div>[/if form_description]\";s:10:\"after_html\";s:0:\"\";s:11:\"submit_html\";s:440:\"<div class=\"frm_submit\">\n[if back_button]<input type=\"button\" value=\"[back_label]\" name=\"frm_prev_page\" formnovalidate=\"formnovalidate\" class=\"frm_prev_page\" [back_hook] />[/if back_button]\n<input type=\"submit\" value=\"[button_label]\" [button_action] />\n<img class=\"frm_ajax_loading\" src=\"[frmurl]/images/ajax_loader.gif\" alt=\"Sending\"/>\n[if save_draft]<a href=\"#\" class=\"frm_save_draft\" [draft_hook]>[draft_label]</a>[/if save_draft]\n</div>\";}", "2016-02-29 09:44:10");
INSERT INTO `wp_frm_forms` VALUES("4", "contact3", "Contact Us", "We would like to hear from you. Please send us a message by filling out the form below and we will get back with you shortly.", "0", "0", "0", "0", "0", "draft", "a:12:{s:12:\"submit_value\";s:6:\"Submit\";s:14:\"success_action\";s:7:\"message\";s:11:\"success_msg\";s:54:\"Your responses were successfully submitted. Thank you!\";s:9:\"show_form\";i:0;s:7:\"akismet\";s:0:\"\";s:7:\"no_save\";i:0;s:9:\"ajax_load\";i:0;s:10:\"form_class\";s:0:\"\";s:12:\"custom_style\";i:1;s:11:\"before_html\";s:217:\"<legend class=\"frm_hidden\">[form_name]</legend>\n[if form_name]<h3 class=\"frm_form_title\">[form_name]</h3>[/if form_name]\n[if form_description]<div class=\"frm_description\">[form_description]</div>[/if form_description]\";s:10:\"after_html\";s:0:\"\";s:11:\"submit_html\";s:440:\"<div class=\"frm_submit\">\n[if back_button]<input type=\"button\" value=\"[back_label]\" name=\"frm_prev_page\" formnovalidate=\"formnovalidate\" class=\"frm_prev_page\" [back_hook] />[/if back_button]\n<input type=\"submit\" value=\"[button_label]\" [button_action] />\n<img class=\"frm_ajax_loading\" src=\"[frmurl]/images/ajax_loader.gif\" alt=\"Sending\"/>\n[if save_draft]<a href=\"#\" class=\"frm_save_draft\" [draft_hook]>[draft_label]</a>[/if save_draft]\n</div>\";}", "2016-02-29 21:22:55");
INSERT INTO `wp_frm_forms` VALUES("5", "t879x", "", "", "0", "0", "0", "0", "0", "draft", "a:12:{s:12:\"submit_value\";s:6:\"Submit\";s:14:\"success_action\";s:7:\"message\";s:11:\"success_msg\";s:54:\"Your responses were successfully submitted. Thank you!\";s:9:\"show_form\";i:0;s:7:\"akismet\";s:0:\"\";s:7:\"no_save\";i:0;s:9:\"ajax_load\";i:0;s:10:\"form_class\";s:0:\"\";s:12:\"custom_style\";i:1;s:11:\"before_html\";s:217:\"<legend class=\"frm_hidden\">[form_name]</legend>\n[if form_name]<h3 class=\"frm_form_title\">[form_name]</h3>[/if form_name]\n[if form_description]<div class=\"frm_description\">[form_description]</div>[/if form_description]\";s:10:\"after_html\";s:0:\"\";s:11:\"submit_html\";s:440:\"<div class=\"frm_submit\">\n[if back_button]<input type=\"button\" value=\"[back_label]\" name=\"frm_prev_page\" formnovalidate=\"formnovalidate\" class=\"frm_prev_page\" [back_hook] />[/if back_button]\n<input type=\"submit\" value=\"[button_label]\" [button_action] />\n<img class=\"frm_ajax_loading\" src=\"[frmurl]/images/ajax_loader.gif\" alt=\"Sending\"/>\n[if save_draft]<a href=\"#\" class=\"frm_save_draft\" [draft_hook]>[draft_label]</a>[/if save_draft]\n</div>\";}", "2016-05-17 00:54:33");

/* INSERT TABLE DATA: wp_itsec_lockouts */
INSERT INTO `wp_itsec_lockouts` VALUES("84", "brute_force", "2016-12-20 21:27:02", "2016-12-20 08:27:02", "2016-12-20 21:42:02", "2016-12-20 08:42:02", "185.57.29.107", NULL, NULL, "1");
INSERT INTO `wp_itsec_lockouts` VALUES("85", "brute_force", "2016-12-20 23:51:09", "2016-12-20 10:51:09", "2016-12-21 00:06:09", "2016-12-20 11:06:09", "184.168.27.192", NULL, NULL, "1");
INSERT INTO `wp_itsec_lockouts` VALUES("86", "brute_force", "2016-12-21 01:42:30", "2016-12-20 12:42:30", "2016-12-21 01:57:30", "2016-12-20 12:57:30", "173.201.196.222", NULL, NULL, "1");
INSERT INTO `wp_itsec_lockouts` VALUES("81", "brute_force", "2016-12-20 03:47:06", "2016-12-19 14:47:06", "2016-12-20 04:02:06", "2016-12-19 15:02:06", "178.33.228.61", NULL, NULL, "1");
INSERT INTO `wp_itsec_lockouts` VALUES("80", "brute_force", "2016-12-19 07:22:28", "2016-12-18 18:22:28", "2016-12-19 07:37:28", "2016-12-18 18:37:28", "50.62.177.143", NULL, NULL, "1");
INSERT INTO `wp_itsec_lockouts` VALUES("59", "brute_force", "2016-12-12 19:55:22", "2016-12-12 06:55:22", "2016-12-12 20:10:22", "2016-12-12 07:10:22", "184.168.27.197", NULL, NULL, "1");
INSERT INTO `wp_itsec_lockouts` VALUES("65", "brute_force", "2016-12-13 16:55:10", "2016-12-13 03:55:10", "2016-12-13 17:10:10", "2016-12-13 04:10:10", "185.110.46.162", NULL, NULL, "1");
INSERT INTO `wp_itsec_lockouts` VALUES("74", "brute_force", "2016-12-15 17:48:57", "2016-12-15 04:48:57", "2016-12-15 18:03:57", "2016-12-15 05:03:57", "195.130.247.116", NULL, NULL, "1");
INSERT INTO `wp_itsec_lockouts` VALUES("78", "brute_force", "2016-12-16 19:42:55", "2016-12-16 06:42:55", "2016-12-16 19:57:55", "2016-12-16 06:57:55", "31.173.164.97", NULL, NULL, "1");
INSERT INTO `wp_itsec_lockouts` VALUES("66", "brute_force", "2016-12-13 17:11:49", "2016-12-13 04:11:49", "2016-12-13 17:26:49", "2016-12-13 04:26:49", "68.178.254.182", NULL, NULL, "1");
INSERT INTO `wp_itsec_lockouts` VALUES("83", "brute_force", "2016-12-20 19:43:20", "2016-12-20 06:43:20", "2016-12-20 19:58:20", "2016-12-20 06:58:20", "195.189.17.216", NULL, NULL, "1");
INSERT INTO `wp_itsec_lockouts` VALUES("82", "brute_force", "2016-12-20 15:30:25", "2016-12-20 02:30:25", "2016-12-20 15:45:25", "2016-12-20 02:45:25", "50.62.177.143", NULL, NULL, "1");
INSERT INTO `wp_itsec_lockouts` VALUES("60", "brute_force", "2016-12-12 21:19:39", "2016-12-12 08:19:39", "2016-12-12 21:34:39", "2016-12-12 08:34:39", "194.126.224.33", NULL, NULL, "1");
INSERT INTO `wp_itsec_lockouts` VALUES("61", "brute_force", "2016-12-12 23:19:18", "2016-12-12 10:19:18", "2016-12-12 23:34:18", "2016-12-12 10:34:18", "5.142.69.33", NULL, NULL, "1");
INSERT INTO `wp_itsec_lockouts` VALUES("62", "brute_force", "2016-12-13 01:44:44", "2016-12-12 12:44:44", "2016-12-13 01:59:44", "2016-12-12 12:59:44", "184.168.27.197", NULL, NULL, "1");
INSERT INTO `wp_itsec_lockouts` VALUES("63", "brute_force", "2016-12-13 09:14:28", "2016-12-12 20:14:28", "2016-12-13 09:29:28", "2016-12-12 20:29:28", "109.94.10.6", NULL, NULL, "1");
INSERT INTO `wp_itsec_lockouts` VALUES("64", "brute_force", "2016-12-13 09:31:53", "2016-12-12 20:31:53", "2016-12-13 09:46:53", "2016-12-12 20:46:53", "50.62.177.143", NULL, NULL, "1");
INSERT INTO `wp_itsec_lockouts` VALUES("67", "brute_force", "2016-12-13 19:53:32", "2016-12-13 06:53:32", "2016-12-13 20:08:32", "2016-12-13 07:08:32", "178.33.228.61", NULL, NULL, "1");
INSERT INTO `wp_itsec_lockouts` VALUES("68", "brute_force", "2016-12-13 21:28:57", "2016-12-13 08:28:57", "2016-12-13 21:43:57", "2016-12-13 08:43:57", "94.231.190.238", NULL, NULL, "1");
INSERT INTO `wp_itsec_lockouts` VALUES("69", "brute_force", "2016-12-13 23:56:11", "2016-12-13 10:56:11", "2016-12-14 00:11:11", "2016-12-13 11:11:11", "178.88.15.202", NULL, NULL, "1");
INSERT INTO `wp_itsec_lockouts` VALUES("70", "brute_force", "2016-12-14 07:37:14", "2016-12-13 18:37:14", "2016-12-14 07:52:14", "2016-12-13 18:52:14", "119.1.227.1", NULL, NULL, "1");
INSERT INTO `wp_itsec_lockouts` VALUES("71", "brute_force", "2016-12-14 07:37:49", "2016-12-13 18:37:49", "2016-12-14 07:52:49", "2016-12-13 18:52:49", "", NULL, "www", "1");
INSERT INTO `wp_itsec_lockouts` VALUES("72", "brute_force", "2016-12-14 09:26:45", "2016-12-13 20:26:45", "2016-12-14 09:41:45", "2016-12-13 20:41:45", "184.168.200.102", NULL, NULL, "1");
INSERT INTO `wp_itsec_lockouts` VALUES("73", "brute_force", "2016-12-14 21:20:49", "2016-12-14 08:20:49", "2016-12-14 21:35:49", "2016-12-14 08:35:49", "182.50.151.63", NULL, NULL, "1");
INSERT INTO `wp_itsec_lockouts` VALUES("75", "brute_force", "2016-12-15 19:58:25", "2016-12-15 06:58:25", "2016-12-15 20:13:25", "2016-12-15 07:13:25", "173.201.196.146", NULL, NULL, "1");
INSERT INTO `wp_itsec_lockouts` VALUES("76", "brute_force", "2016-12-16 01:43:48", "2016-12-15 12:43:48", "2016-12-16 01:58:48", "2016-12-15 12:58:48", "173.201.196.146", NULL, NULL, "1");
INSERT INTO `wp_itsec_lockouts` VALUES("77", "brute_force", "2016-12-16 13:38:49", "2016-12-16 00:38:49", "2016-12-16 13:53:49", "2016-12-16 00:53:49", "184.168.200.102", NULL, NULL, "1");
INSERT INTO `wp_itsec_lockouts` VALUES("79", "brute_force", "2016-12-18 13:35:33", "2016-12-18 00:35:33", "2016-12-18 13:50:33", "2016-12-18 00:50:33", "184.168.200.230", NULL, NULL, "1");

/* INSERT TABLE DATA: wp_itsec_log */
INSERT INTO `wp_itsec_log` VALUES("994", "brute_force", "Invalid Login Attempt", "5", "2016-12-12 19:55:22", "2016-12-12 06:55:22", "184.168.27.197", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("995", "brute_force", "Invalid Login Attempt", "5", "2016-12-12 19:55:22", "2016-12-12 06:55:22", "184.168.27.197", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("996", "brute_force", "Invalid Login Attempt", "5", "2016-12-12 19:55:22", "2016-12-12 06:55:22", "184.168.27.197", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("973", "brute_force", "Invalid Login Attempt", "5", "2016-12-12 05:55:51", "2016-12-11 16:55:51", "184.168.200.230", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("974", "brute_force", "Invalid Login Attempt", "5", "2016-12-12 05:55:51", "2016-12-11 16:55:51", "184.168.200.230", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("975", "brute_force", "Invalid Login Attempt", "5", "2016-12-12 05:55:51", "2016-12-11 16:55:51", "184.168.200.230", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("976", "brute_force", "Invalid Login Attempt", "5", "2016-12-12 05:55:51", "2016-12-11 16:55:51", "184.168.200.230", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("977", "brute_force", "Invalid Login Attempt", "5", "2016-12-12 05:55:51", "2016-12-11 16:55:51", "184.168.200.230", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("978", "lockout", "Host or User Lockout", "10", "2016-12-12 05:55:51", "2016-12-11 16:55:51", "184.168.200.230", "", "0", "", "", "a:3:{s:7:\"expires\";s:19:\"2016-12-12 06:10:51\";s:11:\"expires_gmt\";s:19:\"2016-12-11 17:10:51\";s:4:\"type\";s:11:\"brute_force\";}");
INSERT INTO `wp_itsec_log` VALUES("979", "brute_force", "Invalid Login Attempt", "5", "2016-12-12 08:08:49", "2016-12-11 19:08:49", "86.86.111.46", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("980", "brute_force", "Invalid Login Attempt", "5", "2016-12-12 09:37:20", "2016-12-11 20:37:20", "95.102.126.178", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("981", "brute_force", "Invalid Login Attempt", "5", "2016-12-12 11:33:58", "2016-12-11 22:33:58", "177.102.236.6", "candice", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("982", "brute_force", "Invalid Login Attempt", "5", "2016-12-12 11:34:07", "2016-12-11 22:34:07", "177.102.236.6", "venter", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("983", "brute_force", "Invalid Login Attempt", "5", "2016-12-12 11:34:10", "2016-12-11 22:34:10", "177.102.236.6", "marketing", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("984", "brute_force", "Invalid Login Attempt", "5", "2016-12-12 11:34:12", "2016-12-11 22:34:12", "177.102.236.6", "your", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("985", "brute_force", "Invalid Login Attempt", "5", "2016-12-12 11:34:15", "2016-12-11 22:34:15", "177.102.236.6", "business", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("986", "lockout", "Host or User Lockout", "10", "2016-12-12 11:34:15", "2016-12-11 22:34:15", "177.102.236.6", "", "0", "", "", "a:3:{s:7:\"expires\";s:19:\"2016-12-12 11:49:15\";s:11:\"expires_gmt\";s:19:\"2016-12-11 22:49:15\";s:4:\"type\";s:11:\"brute_force\";}");
INSERT INTO `wp_itsec_log` VALUES("971", "brute_force", "Invalid Login Attempt", "5", "2016-12-12 03:33:40", "2016-12-11 14:33:40", "203.202.248.92", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("972", "brute_force", "Invalid Login Attempt", "5", "2016-12-12 03:48:35", "2016-12-11 14:48:35", "112.135.62.143", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("970", "lockout", "Host or User Lockout", "10", "2016-12-11 23:59:52", "2016-12-11 10:59:52", "198.71.228.41", "", "0", "", "", "a:3:{s:7:\"expires\";s:19:\"2016-12-12 00:14:52\";s:11:\"expires_gmt\";s:19:\"2016-12-11 11:14:52\";s:4:\"type\";s:11:\"brute_force\";}");
INSERT INTO `wp_itsec_log` VALUES("969", "brute_force", "Invalid Login Attempt", "5", "2016-12-11 23:59:52", "2016-12-11 10:59:52", "198.71.228.41", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("968", "brute_force", "Invalid Login Attempt", "5", "2016-12-11 23:59:52", "2016-12-11 10:59:52", "198.71.228.41", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("967", "brute_force", "Invalid Login Attempt", "5", "2016-12-11 23:59:52", "2016-12-11 10:59:52", "198.71.228.41", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("966", "brute_force", "Invalid Login Attempt", "5", "2016-12-11 23:59:52", "2016-12-11 10:59:52", "198.71.228.41", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("965", "brute_force", "Invalid Login Attempt", "5", "2016-12-11 23:59:52", "2016-12-11 10:59:52", "198.71.228.41", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("964", "four_oh_four", "404 Error", "3", "2016-12-11 23:31:15", "2016-12-11 10:31:15", "210.246.42.47", "", "0", "/wp-content/uploads/2016/02/Infinity-Marketing_Logo_Lg.png", "http://www.infinitymarketing.co.nz/", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("963", "lockout", "Host or User Lockout", "10", "2016-12-11 23:28:03", "2016-12-11 10:28:03", "50.62.161.99", "", "0", "", "", "a:3:{s:7:\"expires\";s:19:\"2016-12-11 23:43:03\";s:11:\"expires_gmt\";s:19:\"2016-12-11 10:43:03\";s:4:\"type\";s:11:\"brute_force\";}");
INSERT INTO `wp_itsec_log` VALUES("962", "brute_force", "Invalid Login Attempt", "5", "2016-12-11 23:28:03", "2016-12-11 10:28:03", "50.62.161.99", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("960", "brute_force", "Invalid Login Attempt", "5", "2016-12-11 23:28:03", "2016-12-11 10:28:03", "50.62.161.99", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("961", "brute_force", "Invalid Login Attempt", "5", "2016-12-11 23:28:03", "2016-12-11 10:28:03", "50.62.161.99", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1387", "brute_force", "Invalid Login Attempt", "5", "2016-12-20 19:44:40", "2016-12-20 06:44:40", "117.244.103.245", "www", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1388", "brute_force", "Invalid Login Attempt", "5", "2016-12-20 19:53:16", "2016-12-20 06:53:16", "50.62.177.143", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1389", "brute_force", "Invalid Login Attempt", "5", "2016-12-20 19:53:16", "2016-12-20 06:53:16", "50.62.177.143", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1390", "brute_force", "Invalid Login Attempt", "5", "2016-12-20 19:53:16", "2016-12-20 06:53:16", "50.62.177.143", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1391", "brute_force", "Invalid Login Attempt", "5", "2016-12-20 19:53:16", "2016-12-20 06:53:16", "50.62.177.143", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1392", "brute_force", "Invalid Login Attempt", "5", "2016-12-20 19:53:16", "2016-12-20 06:53:16", "50.62.177.143", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1393", "brute_force", "Invalid Login Attempt", "5", "2016-12-20 20:22:52", "2016-12-20 07:22:52", "49.206.110.144", "infinitymarketing", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1394", "brute_force", "Invalid Login Attempt", "5", "2016-12-20 21:26:50", "2016-12-20 08:26:50", "185.57.29.107", "test123", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1395", "brute_force", "Invalid Login Attempt", "5", "2016-12-20 21:26:54", "2016-12-20 08:26:54", "185.57.29.107", "infinitymarketing.co.nz", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("898", "brute_force", "Invalid Login Attempt", "5", "2016-12-10 07:38:00", "2016-12-09 18:38:00", "109.102.1.74", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("886", "brute_force", "Invalid Login Attempt", "5", "2016-12-10 02:49:39", "2016-12-09 13:49:39", "41.142.174.172", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("887", "brute_force", "Invalid Login Attempt", "5", "2016-12-10 03:24:55", "2016-12-09 14:24:55", "126.235.76.31", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("888", "four_oh_four", "404 Error", "3", "2016-12-10 04:40:26", "2016-12-09 15:40:26", "5.77.60.29", "", "0", "/wordpress/wp-login.php", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("889", "brute_force", "Invalid Login Attempt", "5", "2016-12-10 06:01:32", "2016-12-09 17:01:32", "113.59.210.143", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("890", "four_oh_four", "404 Error", "3", "2016-12-10 07:20:15", "2016-12-09 18:20:15", "5.77.60.29", "", "0", "/blog/wp-login.php", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("891", "brute_force", "Invalid Login Attempt", "5", "2016-12-10 07:25:13", "2016-12-09 18:25:13", "50.62.176.36", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("892", "brute_force", "Invalid Login Attempt", "5", "2016-12-10 07:25:13", "2016-12-09 18:25:13", "50.62.176.36", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("893", "brute_force", "Invalid Login Attempt", "5", "2016-12-10 07:25:13", "2016-12-09 18:25:13", "50.62.176.36", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("894", "brute_force", "Invalid Login Attempt", "5", "2016-12-10 07:25:13", "2016-12-09 18:25:13", "50.62.176.36", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("895", "brute_force", "Invalid Login Attempt", "5", "2016-12-10 07:25:13", "2016-12-09 18:25:13", "50.62.176.36", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("896", "lockout", "Host or User Lockout", "10", "2016-12-10 07:25:13", "2016-12-09 18:25:13", "50.62.176.36", "", "0", "", "", "a:3:{s:7:\"expires\";s:19:\"2016-12-10 07:40:13\";s:11:\"expires_gmt\";s:19:\"2016-12-09 18:40:13\";s:4:\"type\";s:11:\"brute_force\";}");
INSERT INTO `wp_itsec_log` VALUES("897", "four_oh_four", "404 Error", "3", "2016-12-10 07:28:03", "2016-12-09 18:28:03", "101.53.217.220", "", "0", "/wp-content/uploads/2016/02/Infinity-Marketing_Logo_Lg.png", "http://www.infinitymarketing.co.nz/", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1260", "brute_force", "Invalid Login Attempt", "5", "2016-12-16 19:55:30", "2016-12-16 06:55:30", "173.201.196.146", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1259", "brute_force", "Invalid Login Attempt", "5", "2016-12-16 19:55:30", "2016-12-16 06:55:30", "173.201.196.146", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1258", "brute_force", "Invalid Login Attempt", "5", "2016-12-16 19:55:30", "2016-12-16 06:55:30", "173.201.196.146", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1257", "brute_force", "Invalid Login Attempt", "5", "2016-12-16 19:55:30", "2016-12-16 06:55:30", "173.201.196.146", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1254", "brute_force", "Invalid Login Attempt", "5", "2016-12-16 19:42:49", "2016-12-16 06:42:49", "31.173.164.97", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1255", "brute_force", "Invalid Login Attempt", "5", "2016-12-16 19:42:55", "2016-12-16 06:42:55", "31.173.164.97", "infinitymarketing.co", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1256", "lockout", "Host or User Lockout", "10", "2016-12-16 19:42:55", "2016-12-16 06:42:55", "31.173.164.97", "", "0", "", "", "a:3:{s:7:\"expires\";s:19:\"2016-12-16 19:57:55\";s:11:\"expires_gmt\";s:19:\"2016-12-16 06:57:55\";s:4:\"type\";s:11:\"brute_force\";}");
INSERT INTO `wp_itsec_log` VALUES("1253", "brute_force", "Invalid Login Attempt", "5", "2016-12-16 19:42:42", "2016-12-16 06:42:42", "31.173.164.97", "test@infinitymarketing.co.nz", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1251", "brute_force", "Invalid Login Attempt", "5", "2016-12-16 19:42:21", "2016-12-16 06:42:21", "31.173.164.97", "admin@infinitymarketing.co.nz", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1252", "brute_force", "Invalid Login Attempt", "5", "2016-12-16 19:42:29", "2016-12-16 06:42:29", "31.173.164.97", "test1", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1323", "brute_force", "Invalid Login Attempt", "5", "2016-12-19 11:05:22", "2016-12-18 22:05:22", "88.207.98.67", "infinitymarketing", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("857", "brute_force", "Invalid Login Attempt", "5", "2016-12-09 02:44:20", "2016-12-08 13:44:20", "77.120.142.35", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("855", "brute_force", "Invalid Login Attempt", "5", "2016-12-08 17:57:31", "2016-12-08 04:57:31", "208.81.161.145", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("856", "four_oh_four", "404 Error", "3", "2016-12-09 00:15:29", "2016-12-08 11:15:29", "198.204.244.162", "", "0", "/wp-content/plugins/blaze-slide-show-for-wordpress/css/default.css", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1041", "brute_force", "Invalid Login Attempt", "5", "2016-12-13 13:40:00", "2016-12-13 00:40:00", "45.74.235.197", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("834", "brute_force", "Invalid Login Attempt", "5", "2016-12-07 17:30:56", "2016-12-07 04:30:56", "212.83.187.108", "administrator", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("835", "lockout", "Host or User Lockout", "10", "2016-12-07 17:30:56", "2016-12-07 04:30:56", "212.83.187.108", "", "0", "", "", "a:3:{s:7:\"expires\";s:19:\"2016-12-07 17:45:56\";s:11:\"expires_gmt\";s:19:\"2016-12-07 04:45:56\";s:4:\"type\";s:11:\"brute_force\";}");
INSERT INTO `wp_itsec_log` VALUES("832", "brute_force", "Invalid Login Attempt", "5", "2016-12-07 17:30:55", "2016-12-07 04:30:55", "212.83.187.108", "candice venter", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("833", "brute_force", "Invalid Login Attempt", "5", "2016-12-07 17:30:56", "2016-12-07 04:30:56", "212.83.187.108", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("831", "four_oh_four", "404 Error", "3", "2016-12-07 17:30:52", "2016-12-07 04:30:52", "212.83.187.108", "", "0", "/", "", "a:1:{s:12:\"query_string\";s:8:\"author=3\";}");
INSERT INTO `wp_itsec_log` VALUES("830", "four_oh_four", "404 Error", "3", "2016-12-07 17:30:50", "2016-12-07 04:30:50", "212.83.187.108", "", "0", "/", "", "a:1:{s:12:\"query_string\";s:8:\"author=2\";}");
INSERT INTO `wp_itsec_log` VALUES("829", "four_oh_four", "404 Error", "3", "2016-12-07 15:46:29", "2016-12-07 02:46:29", "178.137.83.166", "", "0", "/wp-content/plugins/revslider/temp/update_extract/revslider/db.php", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("825", "four_oh_four", "404 Error", "3", "2016-12-07 15:20:11", "2016-12-07 02:20:11", "198.57.230.50", "", "0", "/", "", "a:1:{s:12:\"query_string\";s:8:\"author=2\";}");
INSERT INTO `wp_itsec_log` VALUES("826", "four_oh_four", "404 Error", "3", "2016-12-07 15:20:12", "2016-12-07 02:20:12", "198.57.230.50", "", "0", "/", "", "a:1:{s:12:\"query_string\";s:8:\"author=3\";}");
INSERT INTO `wp_itsec_log` VALUES("827", "four_oh_four", "404 Error", "3", "2016-12-07 15:46:19", "2016-12-07 02:46:19", "178.137.83.166", "", "0", "/wp-content/plugins/simple-ads-manager/js/slider/tmpl.js", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("828", "four_oh_four", "404 Error", "3", "2016-12-07 15:46:20", "2016-12-07 02:46:20", "178.137.83.166", "", "0", "/wp-content/plugins/formcraft/file-upload/server/php/upload.php", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("824", "brute_force", "Invalid Login Attempt", "5", "2016-12-07 13:19:48", "2016-12-07 00:19:48", "88.120.139.71", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1199", "four_oh_four", "404 Error", "3", "2016-12-15 17:01:23", "2016-12-15 04:01:23", "89.238.166.246", "", "0", "/administrator/", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("943", "brute_force", "Invalid Login Attempt", "5", "2016-12-11 13:19:31", "2016-12-11 00:19:31", "217.229.116.64", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("944", "brute_force", "Invalid Login Attempt", "5", "2016-12-11 13:43:36", "2016-12-11 00:43:36", "173.201.196.221", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("945", "brute_force", "Invalid Login Attempt", "5", "2016-12-11 13:43:36", "2016-12-11 00:43:36", "173.201.196.221", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("946", "brute_force", "Invalid Login Attempt", "5", "2016-12-11 13:43:36", "2016-12-11 00:43:36", "173.201.196.221", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("947", "brute_force", "Invalid Login Attempt", "5", "2016-12-11 13:43:36", "2016-12-11 00:43:36", "173.201.196.221", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("948", "brute_force", "Invalid Login Attempt", "5", "2016-12-11 13:43:36", "2016-12-11 00:43:36", "173.201.196.221", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("949", "lockout", "Host or User Lockout", "10", "2016-12-11 13:43:36", "2016-12-11 00:43:36", "173.201.196.221", "", "0", "", "", "a:3:{s:7:\"expires\";s:19:\"2016-12-11 13:58:36\";s:11:\"expires_gmt\";s:19:\"2016-12-11 00:58:36\";s:4:\"type\";s:11:\"brute_force\";}");
INSERT INTO `wp_itsec_log` VALUES("1211", "brute_force", "Invalid Login Attempt", "5", "2016-12-15 19:58:25", "2016-12-15 06:58:25", "173.201.196.146", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1210", "brute_force", "Invalid Login Attempt", "5", "2016-12-15 19:58:25", "2016-12-15 06:58:25", "173.201.196.146", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1209", "four_oh_four", "404 Error", "3", "2016-12-15 18:57:49", "2016-12-15 05:57:49", "185.159.36.6", "", "0", "/wp-content/plugins/dzs-zoomsounds/admin/upload.php", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1208", "four_oh_four", "404 Error", "3", "2016-12-15 18:57:11", "2016-12-15 05:57:11", "185.159.36.6", "", "0", "/wp-content/plugins/dzs-zoomsounds/admin/upload.php", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1207", "four_oh_four", "404 Error", "3", "2016-12-15 18:11:38", "2016-12-15 05:11:38", "185.159.36.6", "", "0", "/wp-content/plugins/sexy-contact-form/includes/fileupload/index.php", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1206", "lockout", "Host or User Lockout", "10", "2016-12-15 17:48:57", "2016-12-15 04:48:57", "195.130.247.116", "", "0", "", "", "a:3:{s:7:\"expires\";s:19:\"2016-12-15 18:03:57\";s:11:\"expires_gmt\";s:19:\"2016-12-15 05:03:57\";s:4:\"type\";s:11:\"brute_force\";}");
INSERT INTO `wp_itsec_log` VALUES("1205", "brute_force", "Invalid Login Attempt", "5", "2016-12-15 17:48:57", "2016-12-15 04:48:57", "195.130.247.116", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1204", "brute_force", "Invalid Login Attempt", "5", "2016-12-15 17:48:57", "2016-12-15 04:48:57", "195.130.247.116", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1203", "brute_force", "Invalid Login Attempt", "5", "2016-12-15 17:48:57", "2016-12-15 04:48:57", "195.130.247.116", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1202", "brute_force", "Invalid Login Attempt", "5", "2016-12-15 17:48:57", "2016-12-15 04:48:57", "195.130.247.116", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1201", "brute_force", "Invalid Login Attempt", "5", "2016-12-15 17:48:57", "2016-12-15 04:48:57", "195.130.247.116", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1200", "four_oh_four", "404 Error", "3", "2016-12-15 17:01:26", "2016-12-15 04:01:26", "89.238.166.246", "", "0", "/admin.php", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("941", "brute_force", "Invalid Login Attempt", "5", "2016-12-11 08:28:31", "2016-12-10 19:28:31", "176.222.43.215", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1228", "brute_force", "Invalid Login Attempt", "5", "2016-12-16 01:59:37", "2016-12-15 12:59:37", "178.91.240.166", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("942", "brute_force", "Invalid Login Attempt", "5", "2016-12-11 10:45:03", "2016-12-10 21:45:03", "175.138.223.31", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1223", "brute_force", "Invalid Login Attempt", "5", "2016-12-16 01:43:48", "2016-12-15 12:43:48", "173.201.196.146", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1227", "lockout", "Host or User Lockout", "10", "2016-12-16 01:43:48", "2016-12-15 12:43:48", "173.201.196.146", "", "0", "", "", "a:3:{s:7:\"expires\";s:19:\"2016-12-16 01:58:48\";s:11:\"expires_gmt\";s:19:\"2016-12-15 12:58:48\";s:4:\"type\";s:11:\"brute_force\";}");
INSERT INTO `wp_itsec_log` VALUES("1226", "brute_force", "Invalid Login Attempt", "5", "2016-12-16 01:43:48", "2016-12-15 12:43:48", "173.201.196.146", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1225", "brute_force", "Invalid Login Attempt", "5", "2016-12-16 01:43:48", "2016-12-15 12:43:48", "173.201.196.146", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1224", "brute_force", "Invalid Login Attempt", "5", "2016-12-16 01:43:48", "2016-12-15 12:43:48", "173.201.196.146", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1136", "four_oh_four", "404 Error", "3", "2016-12-14 15:30:29", "2016-12-14 02:30:29", "185.159.36.6", "", "0", "/wp-content/plugins/acf-frontend-display/js/blueimp-jQuery-File-Upload-d45deb1/server/php/index.php", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1134", "four_oh_four", "404 Error", "3", "2016-12-14 14:30:16", "2016-12-14 01:30:16", "185.159.36.6", "", "0", "/wp-content/themes/churchope/lib/downloadlink.php", "", "a:1:{s:12:\"query_string\";s:30:\"file=../../../../wp-config.php\";}");
INSERT INTO `wp_itsec_log` VALUES("1135", "four_oh_four", "404 Error", "3", "2016-12-14 14:57:28", "2016-12-14 01:57:28", "185.159.36.6", "", "0", "/wp-content/plugins/work-the-flow-file-upload/public/assets/jQuery-File-Upload-9.5.0/server/php/index.php", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1218", "brute_force", "Invalid Login Attempt", "5", "2016-12-15 22:45:01", "2016-12-15 09:45:01", "86.98.7.48", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("951", "brute_force", "Invalid Login Attempt", "5", "2016-12-11 19:55:14", "2016-12-11 06:55:14", "41.140.95.44", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("992", "brute_force", "Invalid Login Attempt", "5", "2016-12-12 19:55:22", "2016-12-12 06:55:22", "184.168.27.197", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("950", "four_oh_four", "404 Error", "3", "2016-12-11 17:41:54", "2016-12-11 04:41:54", "66.249.66.104", "", "0", "/wp-content/uploads/2016/02/Infinity-Marketing_Logo_Lg.png", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("993", "brute_force", "Invalid Login Attempt", "5", "2016-12-12 19:55:22", "2016-12-12 06:55:22", "184.168.27.197", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("872", "four_oh_four", "404 Error", "3", "2016-12-09 23:15:05", "2016-12-09 10:15:05", "5.77.60.29", "", "0", "/wp/wp-login.php", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("991", "brute_force", "Invalid Login Attempt", "5", "2016-12-12 19:50:06", "2016-12-12 06:50:06", "217.118.79.21", "help", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("871", "four_oh_four", "404 Error", "3", "2016-12-09 23:14:58", "2016-12-09 10:14:58", "5.77.60.29", "", "0", "/test/wp-login.php", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("870", "four_oh_four", "404 Error", "3", "2016-12-09 22:45:25", "2016-12-09 09:45:25", "106.220.63.84", "", "0", "/wp-content/uploads/2016/02/Infinity-Marketing_Logo_Lg.png", "http://www.infinitymarketing.co.nz/", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("869", "four_oh_four", "404 Error", "3", "2016-12-09 21:42:30", "2016-12-09 08:42:30", "5.77.60.29", "", "0", "/en/wp-login.php", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("928", "four_oh_four", "404 Error", "3", "2016-12-10 23:51:02", "2016-12-10 10:51:02", "198.204.244.162", "", "0", "/wp-content/plugins/wp-carouselslideshow/css/default.css", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("929", "brute_force", "Invalid Login Attempt", "5", "2016-12-11 00:58:43", "2016-12-10 11:58:43", "188.27.168.225", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("927", "brute_force", "Invalid Login Attempt", "5", "2016-12-10 22:50:11", "2016-12-10 09:50:11", "106.165.11.198", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("926", "brute_force", "Invalid Login Attempt", "5", "2016-12-10 21:23:33", "2016-12-10 08:23:33", "5.107.30.168", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("925", "four_oh_four", "404 Error", "3", "2016-12-10 20:50:38", "2016-12-10 07:50:38", "195.154.194.192", "", "0", "/wp-content/upgrade/theme-compat/popup-pomo.php", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("919", "brute_force", "Invalid Login Attempt", "5", "2016-12-10 19:59:39", "2016-12-10 06:59:39", "184.168.27.199", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("920", "brute_force", "Invalid Login Attempt", "5", "2016-12-10 19:59:39", "2016-12-10 06:59:39", "184.168.27.199", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("921", "brute_force", "Invalid Login Attempt", "5", "2016-12-10 19:59:39", "2016-12-10 06:59:39", "184.168.27.199", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("922", "brute_force", "Invalid Login Attempt", "5", "2016-12-10 19:59:39", "2016-12-10 06:59:39", "184.168.27.199", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("923", "lockout", "Host or User Lockout", "10", "2016-12-10 19:59:39", "2016-12-10 06:59:39", "184.168.27.199", "", "0", "", "", "a:3:{s:7:\"expires\";s:19:\"2016-12-10 20:14:39\";s:11:\"expires_gmt\";s:19:\"2016-12-10 07:14:39\";s:4:\"type\";s:11:\"brute_force\";}");
INSERT INTO `wp_itsec_log` VALUES("924", "four_oh_four", "404 Error", "3", "2016-12-10 20:30:56", "2016-12-10 07:30:56", "195.154.181.162", "", "0", "/wp-content/plugins/text-hover/text-hovers.php", "http://www.infinitymarketing.co.nz/wp-content/plugins/text-hover/text-hovers.php", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("918", "brute_force", "Invalid Login Attempt", "5", "2016-12-10 19:59:39", "2016-12-10 06:59:39", "184.168.27.199", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("917", "brute_force", "Invalid Login Attempt", "5", "2016-12-10 19:42:32", "2016-12-10 06:42:32", "113.203.225.141", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("916", "four_oh_four", "404 Error", "3", "2016-12-10 18:52:29", "2016-12-10 05:52:29", "141.8.143.223", "", "0", "/wp-content/uploads/2016/02/Infinity-Marketing_Logo_Lg.png", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("915", "brute_force", "Invalid Login Attempt", "5", "2016-12-10 18:09:15", "2016-12-10 05:09:15", "124.106.245.172", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("914", "four_oh_four", "404 Error", "3", "2016-12-10 17:29:24", "2016-12-10 04:29:24", "5.77.60.29", "", "0", "/site/wp-login.php", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("913", "four_oh_four", "404 Error", "3", "2016-12-10 15:54:07", "2016-12-10 02:54:07", "5.77.60.29", "", "0", "/web/wp-login.php", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("912", "brute_force", "Invalid Login Attempt", "5", "2016-12-10 15:07:47", "2016-12-10 02:07:47", "37.16.158.25", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("911", "four_oh_four", "404 Error", "3", "2016-12-10 14:33:18", "2016-12-10 01:33:18", "5.77.60.29", "", "0", "/test/wp-login.php", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1043", "brute_force", "Invalid Login Attempt", "5", "2016-12-13 16:54:58", "2016-12-13 03:54:58", "185.110.46.162", "infinitymarketing.co", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1042", "brute_force", "Invalid Login Attempt", "5", "2016-12-13 16:54:48", "2016-12-13 03:54:48", "185.110.46.162", "infinitymarketing.co", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("959", "brute_force", "Invalid Login Attempt", "5", "2016-12-11 23:28:03", "2016-12-11 10:28:03", "50.62.161.99", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("990", "brute_force", "Invalid Login Attempt", "5", "2016-12-12 19:49:58", "2016-12-12 06:49:58", "217.118.79.21", "infinity", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("952", "brute_force", "Invalid Login Attempt", "5", "2016-12-11 21:59:36", "2016-12-11 08:59:36", "50.62.176.36", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("953", "brute_force", "Invalid Login Attempt", "5", "2016-12-11 21:59:36", "2016-12-11 08:59:36", "50.62.176.36", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("954", "brute_force", "Invalid Login Attempt", "5", "2016-12-11 21:59:36", "2016-12-11 08:59:36", "50.62.176.36", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("955", "brute_force", "Invalid Login Attempt", "5", "2016-12-11 21:59:36", "2016-12-11 08:59:36", "50.62.176.36", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("956", "brute_force", "Invalid Login Attempt", "5", "2016-12-11 21:59:36", "2016-12-11 08:59:36", "50.62.176.36", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("957", "brute_force", "Invalid Login Attempt", "5", "2016-12-11 22:20:50", "2016-12-11 09:20:50", "143.160.107.213", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("958", "brute_force", "Invalid Login Attempt", "5", "2016-12-11 23:28:03", "2016-12-11 10:28:03", "50.62.161.99", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("935", "brute_force", "Invalid Login Attempt", "5", "2016-12-11 03:19:24", "2016-12-10 14:19:24", "184.168.27.199", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("936", "brute_force", "Invalid Login Attempt", "5", "2016-12-11 03:19:24", "2016-12-10 14:19:24", "184.168.27.199", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("937", "lockout", "Host or User Lockout", "10", "2016-12-11 03:19:24", "2016-12-10 14:19:24", "184.168.27.199", "", "0", "", "", "a:3:{s:7:\"expires\";s:19:\"2016-12-11 03:34:24\";s:11:\"expires_gmt\";s:19:\"2016-12-10 14:34:24\";s:4:\"type\";s:11:\"brute_force\";}");
INSERT INTO `wp_itsec_log` VALUES("938", "backup", "Database Backup Executed", "3", "2016-12-11 06:33:45", "2016-12-10 17:33:45", "", "", "0", "", "", "a:1:{i:0;a:2:{s:6:\"status\";s:7:\"Success\";s:7:\"details\";s:28:\"emailed to backup recipients\";}}");
INSERT INTO `wp_itsec_log` VALUES("939", "brute_force", "Invalid Login Attempt", "5", "2016-12-11 07:00:02", "2016-12-10 18:00:02", "79.114.155.46", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("934", "brute_force", "Invalid Login Attempt", "5", "2016-12-11 03:19:24", "2016-12-10 14:19:24", "184.168.27.199", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("933", "brute_force", "Invalid Login Attempt", "5", "2016-12-11 03:19:24", "2016-12-10 14:19:24", "184.168.27.199", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("931", "brute_force", "Invalid Login Attempt", "5", "2016-12-11 01:51:06", "2016-12-10 12:51:06", "94.77.233.225", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("932", "brute_force", "Invalid Login Attempt", "5", "2016-12-11 03:19:24", "2016-12-10 14:19:24", "184.168.27.199", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("930", "brute_force", "Invalid Login Attempt", "5", "2016-12-11 01:40:19", "2016-12-10 12:40:19", "85.49.165.147", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1045", "brute_force", "Invalid Login Attempt", "5", "2016-12-13 16:55:08", "2016-12-13 03:55:08", "185.110.46.162", "infinitymarketing.co", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1046", "brute_force", "Invalid Login Attempt", "5", "2016-12-13 16:55:10", "2016-12-13 03:55:10", "185.110.46.162", "infinitymarketing.co", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1047", "lockout", "Host or User Lockout", "10", "2016-12-13 16:55:10", "2016-12-13 03:55:10", "185.110.46.162", "", "0", "", "", "a:3:{s:7:\"expires\";s:19:\"2016-12-13 17:10:10\";s:11:\"expires_gmt\";s:19:\"2016-12-13 04:10:10\";s:4:\"type\";s:11:\"brute_force\";}");
INSERT INTO `wp_itsec_log` VALUES("1048", "brute_force", "Invalid Login Attempt", "5", "2016-12-13 17:11:49", "2016-12-13 04:11:49", "68.178.254.182", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1049", "brute_force", "Invalid Login Attempt", "5", "2016-12-13 17:11:49", "2016-12-13 04:11:49", "68.178.254.182", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1050", "brute_force", "Invalid Login Attempt", "5", "2016-12-13 17:11:49", "2016-12-13 04:11:49", "68.178.254.182", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1051", "brute_force", "Invalid Login Attempt", "5", "2016-12-13 17:11:49", "2016-12-13 04:11:49", "68.178.254.182", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1052", "brute_force", "Invalid Login Attempt", "5", "2016-12-13 17:11:49", "2016-12-13 04:11:49", "68.178.254.182", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1053", "lockout", "Host or User Lockout", "10", "2016-12-13 17:11:49", "2016-12-13 04:11:49", "68.178.254.182", "", "0", "", "", "a:3:{s:7:\"expires\";s:19:\"2016-12-13 17:26:49\";s:11:\"expires_gmt\";s:19:\"2016-12-13 04:26:49\";s:4:\"type\";s:11:\"brute_force\";}");
INSERT INTO `wp_itsec_log` VALUES("1054", "brute_force", "Invalid Login Attempt", "5", "2016-12-13 17:17:41", "2016-12-13 04:17:41", "166.62.144.250", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1055", "four_oh_four", "404 Error", "3", "2016-12-13 17:30:37", "2016-12-13 04:30:37", "122.56.79.5", "", "0", "/wp-content/uploads/2016/02/Infinity-Marketing_Logo_Lg.png", "http://www.infinitymarketing.co.nz/", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1056", "four_oh_four", "404 Error", "3", "2016-12-13 18:34:18", "2016-12-13 05:34:18", "115.69.165.165", "", "0", "/wp-content/uploads/2016/02/Infinity-Marketing_Logo_Lg.png", "http://www.infinitymarketing.co.nz/", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1044", "brute_force", "Invalid Login Attempt", "5", "2016-12-13 16:55:06", "2016-12-13 03:55:06", "185.110.46.162", "infinitymarketing.co", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1057", "brute_force", "Invalid Login Attempt", "5", "2016-12-13 19:03:02", "2016-12-13 06:03:02", "46.99.99.28", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1058", "brute_force", "Invalid Login Attempt", "5", "2016-12-13 19:53:32", "2016-12-13 06:53:32", "178.33.228.61", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1059", "brute_force", "Invalid Login Attempt", "5", "2016-12-13 19:53:32", "2016-12-13 06:53:32", "178.33.228.61", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("989", "brute_force", "Invalid Login Attempt", "5", "2016-12-12 19:49:51", "2016-12-12 06:49:51", "217.118.79.21", "with", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("987", "brute_force", "Invalid Login Attempt", "5", "2016-12-12 16:40:28", "2016-12-12 03:40:28", "95.42.242.187", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1060", "brute_force", "Invalid Login Attempt", "5", "2016-12-13 19:53:32", "2016-12-13 06:53:32", "178.33.228.61", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("988", "brute_force", "Invalid Login Attempt", "5", "2016-12-12 17:08:18", "2016-12-12 04:08:18", "49.146.132.9", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1212", "brute_force", "Invalid Login Attempt", "5", "2016-12-15 19:58:25", "2016-12-15 06:58:25", "173.201.196.146", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1222", "brute_force", "Invalid Login Attempt", "5", "2016-12-16 01:43:48", "2016-12-15 12:43:48", "173.201.196.146", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1221", "brute_force", "Invalid Login Attempt", "5", "2016-12-16 00:50:55", "2016-12-15 11:50:55", "39.42.156.6", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1220", "brute_force", "Invalid Login Attempt", "5", "2016-12-16 00:30:16", "2016-12-15 11:30:16", "99.125.74.13", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1219", "four_oh_four", "404 Error", "3", "2016-12-15 23:06:40", "2016-12-15 10:06:40", "185.159.36.6", "", "0", "/wp-content/themes/echelon/lib/scripts/dl-skin.php", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1068", "four_oh_four", "404 Error", "3", "2016-12-13 20:38:42", "2016-12-13 07:38:42", "185.159.36.6", "", "0", "/wp-content/plugins/db-backup/download.php", "", "a:1:{s:12:\"query_string\";s:27:\"file=../../../wp-config.php\";}");
INSERT INTO `wp_itsec_log` VALUES("1067", "brute_force", "Invalid Login Attempt", "5", "2016-12-13 20:10:33", "2016-12-13 07:10:33", "183.171.19.98", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1066", "four_oh_four", "404 Error", "3", "2016-12-13 20:09:56", "2016-12-13 07:09:56", "184.75.251.195", "", "0", "/", "", "a:1:{s:12:\"query_string\";s:8:\"author=4\";}");
INSERT INTO `wp_itsec_log` VALUES("1065", "four_oh_four", "404 Error", "3", "2016-12-13 20:09:55", "2016-12-13 07:09:55", "184.75.251.195", "", "0", "/", "", "a:1:{s:12:\"query_string\";s:8:\"author=3\";}");
INSERT INTO `wp_itsec_log` VALUES("1064", "four_oh_four", "404 Error", "3", "2016-12-13 20:09:52", "2016-12-13 07:09:52", "184.75.251.195", "", "0", "/", "", "a:1:{s:12:\"query_string\";s:8:\"author=2\";}");
INSERT INTO `wp_itsec_log` VALUES("1063", "lockout", "Host or User Lockout", "10", "2016-12-13 19:53:32", "2016-12-13 06:53:32", "178.33.228.61", "", "0", "", "", "a:3:{s:7:\"expires\";s:19:\"2016-12-13 20:08:32\";s:11:\"expires_gmt\";s:19:\"2016-12-13 07:08:32\";s:4:\"type\";s:11:\"brute_force\";}");
INSERT INTO `wp_itsec_log` VALUES("1061", "brute_force", "Invalid Login Attempt", "5", "2016-12-13 19:53:32", "2016-12-13 06:53:32", "178.33.228.61", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1062", "brute_force", "Invalid Login Attempt", "5", "2016-12-13 19:53:32", "2016-12-13 06:53:32", "178.33.228.61", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1217", "four_oh_four", "404 Error", "3", "2016-12-15 21:00:03", "2016-12-15 08:00:03", "185.159.36.6", "", "0", "/wp-content/themes/echelon/lib/scripts/dl-skin.php", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1213", "brute_force", "Invalid Login Attempt", "5", "2016-12-15 19:58:25", "2016-12-15 06:58:25", "173.201.196.146", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1214", "brute_force", "Invalid Login Attempt", "5", "2016-12-15 19:58:25", "2016-12-15 06:58:25", "173.201.196.146", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1215", "lockout", "Host or User Lockout", "10", "2016-12-15 19:58:25", "2016-12-15 06:58:25", "173.201.196.146", "", "0", "", "", "a:3:{s:7:\"expires\";s:19:\"2016-12-15 20:13:25\";s:11:\"expires_gmt\";s:19:\"2016-12-15 07:13:25\";s:4:\"type\";s:11:\"brute_force\";}");
INSERT INTO `wp_itsec_log` VALUES("1216", "brute_force", "Invalid Login Attempt", "5", "2016-12-15 20:37:11", "2016-12-15 07:37:11", "72.252.198.1", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1322", "brute_force", "Invalid Login Attempt", "5", "2016-12-19 09:09:43", "2016-12-18 20:09:43", "183.83.219.0", "infinitymarketing", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1329", "brute_force", "Invalid Login Attempt", "5", "2016-12-20 03:18:05", "2016-12-19 14:18:05", "153.133.166.186", "infinitymarketing", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1328", "brute_force", "Invalid Login Attempt", "5", "2016-12-20 03:05:18", "2016-12-19 14:05:18", "2.114.231.106", "infinitymarketing", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1326", "brute_force", "Invalid Login Attempt", "5", "2016-12-19 15:21:59", "2016-12-19 02:21:59", "99.240.49.14", "infinitymarketing", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1327", "brute_force", "Invalid Login Attempt", "5", "2016-12-19 17:08:56", "2016-12-19 04:08:56", "187.255.71.38", "infinitymarketing", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("899", "four_oh_four", "404 Error", "3", "2016-12-10 07:38:27", "2016-12-09 18:38:27", "5.77.60.29", "", "0", "/blogs/wp-login.php", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("900", "four_oh_four", "404 Error", "3", "2016-12-10 09:09:21", "2016-12-09 20:09:21", "5.77.60.29", "", "0", "/blogs/wp-login.php", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("901", "four_oh_four", "404 Error", "3", "2016-12-10 09:17:26", "2016-12-09 20:17:26", "5.77.60.29", "", "0", "/wordpress/wp-login.php", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("902", "brute_force", "Invalid Login Attempt", "5", "2016-12-10 09:24:16", "2016-12-09 20:24:16", "50.62.176.36", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("903", "brute_force", "Invalid Login Attempt", "5", "2016-12-10 09:24:16", "2016-12-09 20:24:16", "50.62.176.36", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("904", "brute_force", "Invalid Login Attempt", "5", "2016-12-10 09:24:16", "2016-12-09 20:24:16", "50.62.176.36", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("905", "brute_force", "Invalid Login Attempt", "5", "2016-12-10 09:24:16", "2016-12-09 20:24:16", "50.62.176.36", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("906", "brute_force", "Invalid Login Attempt", "5", "2016-12-10 09:24:16", "2016-12-09 20:24:16", "50.62.176.36", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("907", "lockout", "Host or User Lockout", "10", "2016-12-10 09:24:16", "2016-12-09 20:24:16", "50.62.176.36", "", "0", "", "", "a:3:{s:7:\"expires\";s:19:\"2016-12-10 09:39:16\";s:11:\"expires_gmt\";s:19:\"2016-12-09 20:39:16\";s:4:\"type\";s:11:\"brute_force\";}");
INSERT INTO `wp_itsec_log` VALUES("908", "brute_force", "Invalid Login Attempt", "5", "2016-12-10 10:09:02", "2016-12-09 21:09:02", "176.92.185.163", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("909", "four_oh_four", "404 Error", "3", "2016-12-10 10:12:25", "2016-12-09 21:12:25", "195.154.181.162", "", "0", "/wp-includes/css/modules.php", "http://www.infinitymarketing.co.nz/wp-includes/css/modules.php", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("910", "four_oh_four", "404 Error", "3", "2016-12-10 13:09:35", "2016-12-10 00:09:35", "5.77.60.29", "", "0", "/wp/wp-login.php", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("940", "brute_force", "Invalid Login Attempt", "5", "2016-12-11 08:00:54", "2016-12-10 19:00:54", "187.11.75.196", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1321", "brute_force", "Invalid Login Attempt", "5", "2016-12-19 07:48:00", "2016-12-18 18:48:00", "109.175.98.112", "infinitymarketing", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1320", "lockout", "Host or User Lockout", "10", "2016-12-19 07:22:28", "2016-12-18 18:22:28", "50.62.177.143", "", "0", "", "", "a:3:{s:7:\"expires\";s:19:\"2016-12-19 07:37:28\";s:11:\"expires_gmt\";s:19:\"2016-12-18 18:37:28\";s:4:\"type\";s:11:\"brute_force\";}");
INSERT INTO `wp_itsec_log` VALUES("1304", "lockout", "Host or User Lockout", "10", "2016-12-18 13:35:33", "2016-12-18 00:35:33", "184.168.200.230", "", "0", "", "", "a:3:{s:7:\"expires\";s:19:\"2016-12-18 13:50:33\";s:11:\"expires_gmt\";s:19:\"2016-12-18 00:50:33\";s:4:\"type\";s:11:\"brute_force\";}");
INSERT INTO `wp_itsec_log` VALUES("1303", "brute_force", "Invalid Login Attempt", "5", "2016-12-18 13:35:33", "2016-12-18 00:35:33", "184.168.200.230", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1302", "brute_force", "Invalid Login Attempt", "5", "2016-12-18 13:35:33", "2016-12-18 00:35:33", "184.168.200.230", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1301", "brute_force", "Invalid Login Attempt", "5", "2016-12-18 13:35:33", "2016-12-18 00:35:33", "184.168.200.230", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1300", "brute_force", "Invalid Login Attempt", "5", "2016-12-18 13:35:33", "2016-12-18 00:35:33", "184.168.200.230", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1299", "brute_force", "Invalid Login Attempt", "5", "2016-12-18 13:35:33", "2016-12-18 00:35:33", "184.168.200.230", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1298", "brute_force", "Invalid Login Attempt", "5", "2016-12-18 08:26:32", "2016-12-17 19:26:32", "59.91.221.82", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1297", "brute_force", "Invalid Login Attempt", "5", "2016-12-18 07:36:37", "2016-12-17 18:36:37", "179.35.10.132", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1296", "four_oh_four", "404 Error", "3", "2016-12-18 06:55:04", "2016-12-17 17:55:04", "62.210.152.87", "", "0", "/wp-config.php.bak", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1295", "four_oh_four", "404 Error", "3", "2016-12-18 06:40:16", "2016-12-17 17:40:16", "66.249.64.190", "", "0", "/why-you-need-a-website", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1294", "brute_force", "Invalid Login Attempt", "5", "2016-12-17 20:19:08", "2016-12-17 07:19:08", "130.105.239.37", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1293", "four_oh_four", "404 Error", "3", "2016-12-17 16:56:23", "2016-12-17 03:56:23", "5.45.67.17", "", "0", "/wp-import.php", "http://www.infinitymarketing.co.nz/wp-import.php", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1339", "four_oh_four", "404 Error", "3", "2016-12-20 07:06:44", "2016-12-19 18:06:44", "77.88.47.11", "", "0", "/wp-content/uploads/2016/02/Infinity-Marketing_Logo_Lg.png", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1338", "brute_force", "Invalid Login Attempt", "5", "2016-12-20 07:03:46", "2016-12-19 18:03:46", "91.21.57.68", "infinitymarketing", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1337", "brute_force", "Invalid Login Attempt", "5", "2016-12-20 06:57:14", "2016-12-19 17:57:14", "188.171.252.163", "infinitymarketing", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1336", "brute_force", "Invalid Login Attempt", "5", "2016-12-20 05:56:02", "2016-12-19 16:56:02", "94.254.226.133", "infinitymarketing", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1335", "lockout", "Host or User Lockout", "10", "2016-12-20 03:47:06", "2016-12-19 14:47:06", "178.33.228.61", "", "0", "", "", "a:3:{s:7:\"expires\";s:19:\"2016-12-20 04:02:06\";s:11:\"expires_gmt\";s:19:\"2016-12-19 15:02:06\";s:4:\"type\";s:11:\"brute_force\";}");
INSERT INTO `wp_itsec_log` VALUES("1334", "brute_force", "Invalid Login Attempt", "5", "2016-12-20 03:47:06", "2016-12-19 14:47:06", "178.33.228.61", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1333", "brute_force", "Invalid Login Attempt", "5", "2016-12-20 03:47:06", "2016-12-19 14:47:06", "178.33.228.61", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1332", "brute_force", "Invalid Login Attempt", "5", "2016-12-20 03:47:06", "2016-12-19 14:47:06", "178.33.228.61", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1331", "brute_force", "Invalid Login Attempt", "5", "2016-12-20 03:47:06", "2016-12-19 14:47:06", "178.33.228.61", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1330", "brute_force", "Invalid Login Attempt", "5", "2016-12-20 03:47:06", "2016-12-19 14:47:06", "178.33.228.61", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1319", "brute_force", "Invalid Login Attempt", "5", "2016-12-19 07:22:28", "2016-12-18 18:22:28", "50.62.177.143", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1318", "brute_force", "Invalid Login Attempt", "5", "2016-12-19 07:22:28", "2016-12-18 18:22:28", "50.62.177.143", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1317", "brute_force", "Invalid Login Attempt", "5", "2016-12-19 07:22:28", "2016-12-18 18:22:28", "50.62.177.143", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1316", "brute_force", "Invalid Login Attempt", "5", "2016-12-19 07:22:28", "2016-12-18 18:22:28", "50.62.177.143", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1315", "brute_force", "Invalid Login Attempt", "5", "2016-12-19 07:22:28", "2016-12-18 18:22:28", "50.62.177.143", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1314", "brute_force", "Invalid Login Attempt", "5", "2016-12-19 06:14:31", "2016-12-18 17:14:31", "87.18.87.6", "infinitymarketing", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1313", "four_oh_four", "404 Error", "3", "2016-12-19 03:38:32", "2016-12-18 14:38:32", "51.254.200.119", "", "0", "/info.asp", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1312", "four_oh_four", "404 Error", "3", "2016-12-19 03:36:40", "2016-12-18 14:36:40", "51.254.200.119", "", "0", "/info.asp", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1311", "brute_force", "Invalid Login Attempt", "5", "2016-12-18 23:47:29", "2016-12-18 10:47:29", "203.194.50.250", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1309", "brute_force", "Invalid Login Attempt", "5", "2016-12-18 19:47:34", "2016-12-18 06:47:34", "184.168.200.230", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1310", "brute_force", "Invalid Login Attempt", "5", "2016-12-18 21:09:09", "2016-12-18 08:09:09", "197.248.208.118", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1308", "brute_force", "Invalid Login Attempt", "5", "2016-12-18 19:47:34", "2016-12-18 06:47:34", "184.168.200.230", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1307", "brute_force", "Invalid Login Attempt", "5", "2016-12-18 19:47:34", "2016-12-18 06:47:34", "184.168.200.230", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1306", "brute_force", "Invalid Login Attempt", "5", "2016-12-18 19:47:34", "2016-12-18 06:47:34", "184.168.200.230", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1305", "brute_force", "Invalid Login Attempt", "5", "2016-12-18 19:47:34", "2016-12-18 06:47:34", "184.168.200.230", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1386", "brute_force", "Invalid Login Attempt", "5", "2016-12-20 19:44:27", "2016-12-20 06:44:27", "112.65.168.126", "www", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1385", "brute_force", "Invalid Login Attempt", "5", "2016-12-20 19:43:29", "2016-12-20 06:43:29", "122.3.127.124", "www", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1384", "brute_force", "Invalid Login Attempt", "5", "2016-12-20 19:43:27", "2016-12-20 06:43:27", "122.3.127.124", "www", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1383", "brute_force", "Invalid Login Attempt", "5", "2016-12-20 19:43:26", "2016-12-20 06:43:26", "122.3.127.124", "www", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1355", "four_oh_four", "404 Error", "3", "2016-12-20 12:32:04", "2016-12-19 23:32:04", "185.65.134.79", "", "0", "/user/", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1356", "brute_force", "Invalid Login Attempt", "5", "2016-12-20 13:06:31", "2016-12-20 00:06:31", "185.27.217.17", "infinitymarketing", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1354", "four_oh_four", "404 Error", "3", "2016-12-20 12:31:59", "2016-12-19 23:31:59", "185.65.134.79", "", "0", "/admin/login.php", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1353", "four_oh_four", "404 Error", "3", "2016-12-20 12:31:57", "2016-12-19 23:31:57", "185.65.134.79", "", "0", "/bitrix/admin/", "", "a:1:{s:12:\"query_string\";s:7:\"lang=en\";}");
INSERT INTO `wp_itsec_log` VALUES("1352", "four_oh_four", "404 Error", "3", "2016-12-20 12:31:54", "2016-12-19 23:31:54", "185.65.134.79", "", "0", "/admin.php", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1351", "four_oh_four", "404 Error", "3", "2016-12-20 12:31:50", "2016-12-19 23:31:50", "185.65.134.79", "", "0", "/administrator/", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1350", "backup", "Database Backup Executed", "3", "2016-12-20 12:31:50", "2016-12-19 23:31:50", "", "", "0", "", "", "a:1:{i:0;a:2:{s:6:\"status\";s:7:\"Success\";s:7:\"details\";s:28:\"emailed to backup recipients\";}}");
INSERT INTO `wp_itsec_log` VALUES("1349", "backup", "Database Backup Executed", "3", "2016-12-20 12:31:46", "2016-12-19 23:31:46", "", "", "0", "", "", "a:1:{i:0;a:2:{s:6:\"status\";s:7:\"Success\";s:7:\"details\";s:28:\"emailed to backup recipients\";}}");
INSERT INTO `wp_itsec_log` VALUES("1348", "brute_force", "Invalid Login Attempt", "5", "2016-12-20 11:35:34", "2016-12-19 22:35:34", "103.47.133.7", "infinitymarketing", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1347", "brute_force", "Invalid Login Attempt", "5", "2016-12-20 11:05:10", "2016-12-19 22:05:10", "109.67.209.214", "infinitymarketing", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1346", "brute_force", "Invalid Login Attempt", "5", "2016-12-20 09:18:13", "2016-12-19 20:18:13", "89.80.26.166", "infinitymarketing", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1344", "brute_force", "Invalid Login Attempt", "5", "2016-12-20 09:17:13", "2016-12-19 20:17:13", "188.135.53.53", "infinitymarketing", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1345", "brute_force", "Invalid Login Attempt", "5", "2016-12-20 09:17:21", "2016-12-19 20:17:21", "188.135.53.53", "infinitymarketing", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1343", "brute_force", "Invalid Login Attempt", "5", "2016-12-20 07:34:13", "2016-12-19 18:34:13", "178.91.39.95", "infinitymarketing", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1342", "brute_force", "Invalid Login Attempt", "5", "2016-12-20 07:22:58", "2016-12-19 18:22:58", "78.58.168.152", "infinitymarketing", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1341", "brute_force", "Invalid Login Attempt", "5", "2016-12-20 07:21:47", "2016-12-19 18:21:47", "124.120.207.156", "infinitymarketing", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1340", "brute_force", "Invalid Login Attempt", "5", "2016-12-20 07:21:44", "2016-12-19 18:21:44", "124.120.207.156", "infinitymarketing", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("868", "brute_force", "Invalid Login Attempt", "5", "2016-12-09 12:01:00", "2016-12-08 23:01:00", "93.21.92.96", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("866", "brute_force", "Invalid Login Attempt", "5", "2016-12-09 08:43:28", "2016-12-08 19:43:28", "106.51.29.110", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("867", "brute_force", "Invalid Login Attempt", "5", "2016-12-09 08:43:35", "2016-12-08 19:43:35", "106.51.29.110", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("865", "brute_force", "Invalid Login Attempt", "5", "2016-12-09 08:25:54", "2016-12-08 19:25:54", "109.95.93.13", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("863", "brute_force", "Invalid Login Attempt", "5", "2016-12-09 07:45:01", "2016-12-08 18:45:01", "88.148.187.160", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("864", "brute_force", "Invalid Login Attempt", "5", "2016-12-09 07:45:15", "2016-12-08 18:45:15", "88.148.187.160", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("862", "brute_force", "Invalid Login Attempt", "5", "2016-12-09 06:19:03", "2016-12-08 17:19:03", "188.49.89.235", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("861", "brute_force", "Invalid Login Attempt", "5", "2016-12-09 06:14:27", "2016-12-08 17:14:27", "173.244.223.122", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("860", "brute_force", "Invalid Login Attempt", "5", "2016-12-09 06:14:23", "2016-12-08 17:14:23", "193.50.159.59", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("859", "brute_force", "Invalid Login Attempt", "5", "2016-12-09 06:13:10", "2016-12-08 17:13:10", "117.204.128.80", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("858", "brute_force", "Invalid Login Attempt", "5", "2016-12-09 04:50:00", "2016-12-08 15:50:00", "49.49.233.136", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("854", "brute_force", "Invalid Login Attempt", "5", "2016-12-08 11:37:57", "2016-12-07 22:37:57", "80.12.128.19", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("853", "brute_force", "Invalid Login Attempt", "5", "2016-12-08 10:47:58", "2016-12-07 21:47:58", "94.253.224.12", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("852", "four_oh_four", "404 Error", "3", "2016-12-08 08:58:52", "2016-12-07 19:58:52", "27.252.72.9", "", "0", "/wp-content/uploads/2016/02/Infinity-Marketing_Logo_Lg.png", "http://www.infinitymarketing.co.nz/", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("851", "brute_force", "Invalid Login Attempt", "5", "2016-12-08 07:12:25", "2016-12-07 18:12:25", "191.43.66.116", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("850", "backup", "Database Backup Executed", "3", "2016-12-08 06:20:08", "2016-12-07 17:20:08", "", "", "0", "", "", "a:1:{i:0;a:2:{s:6:\"status\";s:7:\"Success\";s:7:\"details\";s:28:\"emailed to backup recipients\";}}");
INSERT INTO `wp_itsec_log` VALUES("846", "brute_force", "Invalid Login Attempt", "5", "2016-12-08 02:22:51", "2016-12-07 13:22:51", "61.6.94.171", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("847", "brute_force", "Invalid Login Attempt", "5", "2016-12-08 02:22:55", "2016-12-07 13:22:55", "61.6.94.171", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("848", "brute_force", "Invalid Login Attempt", "5", "2016-12-08 04:15:58", "2016-12-07 15:15:58", "93.35.13.242", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("849", "brute_force", "Invalid Login Attempt", "5", "2016-12-08 06:20:04", "2016-12-07 17:20:04", "90.181.55.242", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("803", "brute_force", "Invalid Login Attempt", "5", "2016-12-06 15:15:33", "2016-12-06 02:15:33", "180.241.222.220", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("804", "brute_force", "Invalid Login Attempt", "5", "2016-12-06 17:10:09", "2016-12-06 04:10:09", "105.155.196.250", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("805", "four_oh_four", "404 Error", "3", "2016-12-06 21:24:33", "2016-12-06 08:24:33", "103.73.226.133", "", "0", "/wp-content/uploads/2016/02/Infinity-Marketing_Logo_Lg.png", "http://www.infinitymarketing.co.nz/", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("806", "four_oh_four", "404 Error", "3", "2016-12-07 00:16:16", "2016-12-06 11:16:16", "54.225.75.223", "", "0", "/", "", "a:1:{s:12:\"query_string\";s:8:\"author=2\";}");
INSERT INTO `wp_itsec_log` VALUES("807", "four_oh_four", "404 Error", "3", "2016-12-07 00:16:17", "2016-12-06 11:16:17", "54.225.75.223", "", "0", "/", "", "a:1:{s:12:\"query_string\";s:8:\"author=3\";}");
INSERT INTO `wp_itsec_log` VALUES("808", "four_oh_four", "404 Error", "3", "2016-12-07 01:16:12", "2016-12-06 12:16:12", "198.204.244.162", "", "0", "/wp-content/plugins/advanced-ajax-page-loader/reload_code.js", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("809", "brute_force", "Invalid Login Attempt", "5", "2016-12-07 02:17:27", "2016-12-06 13:17:27", "85.106.99.156", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("810", "four_oh_four", "404 Error", "3", "2016-12-07 03:05:02", "2016-12-06 14:05:02", "128.199.232.93", "", "0", "/", "", "a:1:{s:12:\"query_string\";s:8:\"author=2\";}");
INSERT INTO `wp_itsec_log` VALUES("811", "four_oh_four", "404 Error", "3", "2016-12-07 03:05:04", "2016-12-06 14:05:04", "128.199.232.93", "", "0", "/", "", "a:1:{s:12:\"query_string\";s:8:\"author=3\";}");
INSERT INTO `wp_itsec_log` VALUES("812", "brute_force", "Invalid Login Attempt", "5", "2016-12-07 03:05:08", "2016-12-06 14:05:08", "128.199.232.93", "candice venter", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("813", "brute_force", "Invalid Login Attempt", "5", "2016-12-07 03:05:10", "2016-12-06 14:05:10", "128.199.232.93", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("814", "brute_force", "Invalid Login Attempt", "5", "2016-12-07 03:05:10", "2016-12-06 14:05:10", "128.199.232.93", "administrator", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("815", "lockout", "Host or User Lockout", "10", "2016-12-07 03:05:10", "2016-12-06 14:05:10", "128.199.232.93", "", "0", "", "", "a:3:{s:7:\"expires\";s:19:\"2016-12-07 03:20:10\";s:11:\"expires_gmt\";s:19:\"2016-12-06 14:20:10\";s:4:\"type\";s:11:\"brute_force\";}");
INSERT INTO `wp_itsec_log` VALUES("816", "four_oh_four", "404 Error", "3", "2016-12-07 03:50:16", "2016-12-06 14:50:16", "104.131.73.113", "", "0", "/wp-content/uploads/2016/02/Infinity-Marketing_Logo_Lg.png", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("817", "brute_force", "Invalid Login Attempt", "5", "2016-12-07 04:43:09", "2016-12-06 15:43:09", "1.233.137.145", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("818", "brute_force", "Invalid Login Attempt", "5", "2016-12-07 07:25:33", "2016-12-06 18:25:33", "197.87.160.162", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("819", "brute_force", "Invalid Login Attempt", "5", "2016-12-07 10:31:23", "2016-12-06 21:31:23", "188.169.98.201", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("820", "brute_force", "Invalid Login Attempt", "5", "2016-12-07 10:34:05", "2016-12-06 21:34:05", "178.164.137.156", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("821", "brute_force", "Invalid Login Attempt", "5", "2016-12-07 11:29:41", "2016-12-06 22:29:41", "105.102.27.85", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("822", "four_oh_four", "404 Error", "3", "2016-12-07 12:32:28", "2016-12-06 23:32:28", "104.238.73.11", "", "0", "/", "", "a:1:{s:12:\"query_string\";s:8:\"author=2\";}");
INSERT INTO `wp_itsec_log` VALUES("823", "four_oh_four", "404 Error", "3", "2016-12-07 12:32:29", "2016-12-06 23:32:29", "104.238.73.11", "", "0", "/", "", "a:1:{s:12:\"query_string\";s:8:\"author=3\";}");
INSERT INTO `wp_itsec_log` VALUES("836", "brute_force", "Invalid Login Attempt", "5", "2016-12-07 20:42:58", "2016-12-07 07:42:58", "151.255.102.115", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("837", "brute_force", "Invalid Login Attempt", "5", "2016-12-07 21:43:57", "2016-12-07 08:43:57", "37.106.214.152", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("838", "four_oh_four", "404 Error", "3", "2016-12-07 23:52:01", "2016-12-07 10:52:01", "195.154.181.162", "", "0", "/tmp.php", "http://www.infinitymarketing.co.nz/tmp.php", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("839", "four_oh_four", "404 Error", "3", "2016-12-08 01:10:15", "2016-12-07 12:10:15", "198.204.244.162", "", "0", "/wp-content/plugins/wp-catprogallery/css/default.css", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("840", "four_oh_four", "404 Error", "3", "2016-12-08 01:51:39", "2016-12-07 12:51:39", "198.204.238.170", "", "0", "/lib/elfinder/build/elfinder.html", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("841", "four_oh_four", "404 Error", "3", "2016-12-08 01:51:45", "2016-12-07 12:51:45", "198.204.238.170", "", "0", "/career/elfinder.html", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("842", "four_oh_four", "404 Error", "3", "2016-12-08 01:51:46", "2016-12-07 12:51:46", "198.204.238.170", "", "0", "/market/elfinder.html", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("843", "four_oh_four", "404 Error", "3", "2016-12-08 01:51:47", "2016-12-07 12:51:47", "198.204.238.170", "", "0", "/news/elfinder.html", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("844", "four_oh_four", "404 Error", "3", "2016-12-08 01:51:48", "2016-12-07 12:51:48", "198.204.238.170", "", "0", "/elfinder1/elfinder.html", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("845", "brute_force", "Invalid Login Attempt", "5", "2016-12-08 02:05:12", "2016-12-07 13:05:12", "41.87.145.230", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1358", "brute_force", "Invalid Login Attempt", "5", "2016-12-20 15:21:02", "2016-12-20 02:21:02", "81.193.38.31", "infinitymarketing", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1357", "brute_force", "Invalid Login Attempt", "5", "2016-12-20 14:28:36", "2016-12-20 01:28:36", "187.190.157.133", "infinitymarketing", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("873", "brute_force", "Invalid Login Attempt", "5", "2016-12-09 23:24:07", "2016-12-09 10:24:07", "198.71.224.64", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("874", "brute_force", "Invalid Login Attempt", "5", "2016-12-09 23:24:07", "2016-12-09 10:24:07", "198.71.224.64", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("875", "brute_force", "Invalid Login Attempt", "5", "2016-12-09 23:24:07", "2016-12-09 10:24:07", "198.71.224.64", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("876", "brute_force", "Invalid Login Attempt", "5", "2016-12-09 23:24:07", "2016-12-09 10:24:07", "198.71.224.64", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("877", "brute_force", "Invalid Login Attempt", "5", "2016-12-09 23:24:07", "2016-12-09 10:24:07", "198.71.224.64", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("878", "lockout", "Host or User Lockout", "10", "2016-12-09 23:24:07", "2016-12-09 10:24:07", "198.71.224.64", "", "0", "", "", "a:3:{s:7:\"expires\";s:19:\"2016-12-09 23:39:07\";s:11:\"expires_gmt\";s:19:\"2016-12-09 10:39:07\";s:4:\"type\";s:11:\"brute_force\";}");
INSERT INTO `wp_itsec_log` VALUES("879", "four_oh_four", "404 Error", "3", "2016-12-09 23:38:40", "2016-12-09 10:38:40", "198.204.244.162", "", "0", "/wp-content/plugins/wp-homepage-slideshow/css/default.css", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("880", "four_oh_four", "404 Error", "3", "2016-12-10 00:36:36", "2016-12-09 11:36:36", "5.77.60.29", "", "0", "/blog/wp-login.php", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("881", "brute_force", "Invalid Login Attempt", "5", "2016-12-10 01:03:35", "2016-12-09 12:03:35", "79.180.215.103", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("882", "four_oh_four", "404 Error", "3", "2016-12-10 01:20:04", "2016-12-09 12:20:04", "5.77.60.29", "", "0", "/site/wp-login.php", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("883", "four_oh_four", "404 Error", "3", "2016-12-10 01:20:19", "2016-12-09 12:20:19", "5.77.60.29", "", "0", "/cms/wp-login.php", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("884", "brute_force", "Invalid Login Attempt", "5", "2016-12-10 01:44:34", "2016-12-09 12:44:34", "86.173.8.197", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("885", "brute_force", "Invalid Login Attempt", "5", "2016-12-10 02:35:33", "2016-12-09 13:35:33", "211.247.121.223", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1378", "four_oh_four", "404 Error", "3", "2016-12-20 19:43:15", "2016-12-20 06:43:15", "195.189.17.216", "", "0", "/", "", "a:1:{s:12:\"query_string\";s:8:\"author=9\";}");
INSERT INTO `wp_itsec_log` VALUES("1359", "brute_force", "Invalid Login Attempt", "5", "2016-12-20 15:30:25", "2016-12-20 02:30:25", "50.62.177.143", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1360", "brute_force", "Invalid Login Attempt", "5", "2016-12-20 15:30:25", "2016-12-20 02:30:25", "50.62.177.143", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1361", "brute_force", "Invalid Login Attempt", "5", "2016-12-20 15:30:25", "2016-12-20 02:30:25", "50.62.177.143", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1362", "brute_force", "Invalid Login Attempt", "5", "2016-12-20 15:30:25", "2016-12-20 02:30:25", "50.62.177.143", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1363", "brute_force", "Invalid Login Attempt", "5", "2016-12-20 15:30:25", "2016-12-20 02:30:25", "50.62.177.143", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1364", "lockout", "Host or User Lockout", "10", "2016-12-20 15:30:25", "2016-12-20 02:30:25", "50.62.177.143", "", "0", "", "", "a:3:{s:7:\"expires\";s:19:\"2016-12-20 15:45:25\";s:11:\"expires_gmt\";s:19:\"2016-12-20 02:45:25\";s:4:\"type\";s:11:\"brute_force\";}");
INSERT INTO `wp_itsec_log` VALUES("1365", "four_oh_four", "404 Error", "3", "2016-12-20 15:46:03", "2016-12-20 02:46:03", "122.59.80.126", "", "0", "/wp-content/uploads/2016/02/Infinity-Marketing_Logo_Lg.png", "http://www.infinitymarketing.co.nz/", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1366", "four_oh_four", "404 Error", "3", "2016-12-20 16:44:05", "2016-12-20 03:44:05", "122.59.80.126", "", "0", "/wp-admin/admin-ajax.php", "http://www.infinitymarketing.co.nz/wp-admin/admin.php?page=duplicator&tab=new3", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1367", "four_oh_four", "404 Error", "3", "2016-12-20 18:23:57", "2016-12-20 05:23:57", "49.224.231.13", "", "0", "/wp-content/uploads/2016/02/Infinity-Marketing_Logo_Lg.png", "http://www.infinitymarketing.co.nz/", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1368", "four_oh_four", "404 Error", "3", "2016-12-20 18:24:40", "2016-12-20 05:24:40", "49.224.231.13", "", "0", "/cpanwl", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1369", "four_oh_four", "404 Error", "3", "2016-12-20 19:00:32", "2016-12-20 06:00:32", "66.249.64.182", "", "0", "/wp-content/uploads/2016/02/Infinity-Marketing_Logo_Lg.png", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1370", "brute_force", "Invalid Login Attempt", "5", "2016-12-20 19:17:22", "2016-12-20 06:17:22", "94.26.26.35", "infinitymarketing", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1371", "four_oh_four", "404 Error", "3", "2016-12-20 19:42:53", "2016-12-20 06:42:53", "110.36.45.106", "", "0", "/", "", "a:1:{s:12:\"query_string\";s:8:\"author=2\";}");
INSERT INTO `wp_itsec_log` VALUES("1372", "four_oh_four", "404 Error", "3", "2016-12-20 19:42:57", "2016-12-20 06:42:57", "110.36.45.106", "", "0", "/", "", "a:1:{s:12:\"query_string\";s:8:\"author=3\";}");
INSERT INTO `wp_itsec_log` VALUES("1373", "four_oh_four", "404 Error", "3", "2016-12-20 19:43:04", "2016-12-20 06:43:04", "195.189.17.216", "", "0", "/", "", "a:1:{s:12:\"query_string\";s:8:\"author=4\";}");
INSERT INTO `wp_itsec_log` VALUES("1374", "four_oh_four", "404 Error", "3", "2016-12-20 19:43:06", "2016-12-20 06:43:06", "195.189.17.216", "", "0", "/", "", "a:1:{s:12:\"query_string\";s:8:\"author=5\";}");
INSERT INTO `wp_itsec_log` VALUES("1375", "four_oh_four", "404 Error", "3", "2016-12-20 19:43:09", "2016-12-20 06:43:09", "195.189.17.216", "", "0", "/", "", "a:1:{s:12:\"query_string\";s:8:\"author=6\";}");
INSERT INTO `wp_itsec_log` VALUES("1376", "four_oh_four", "404 Error", "3", "2016-12-20 19:43:11", "2016-12-20 06:43:11", "195.189.17.216", "", "0", "/", "", "a:1:{s:12:\"query_string\";s:8:\"author=7\";}");
INSERT INTO `wp_itsec_log` VALUES("1377", "four_oh_four", "404 Error", "3", "2016-12-20 19:43:13", "2016-12-20 06:43:13", "195.189.17.216", "", "0", "/", "", "a:1:{s:12:\"query_string\";s:8:\"author=8\";}");
INSERT INTO `wp_itsec_log` VALUES("1382", "brute_force", "Invalid Login Attempt", "5", "2016-12-20 19:43:24", "2016-12-20 06:43:24", "122.3.127.124", "www", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1379", "four_oh_four", "404 Error", "3", "2016-12-20 19:43:18", "2016-12-20 06:43:18", "195.189.17.216", "", "0", "/", "", "a:1:{s:12:\"query_string\";s:9:\"author=10\";}");
INSERT INTO `wp_itsec_log` VALUES("1380", "brute_force", "Invalid Login Attempt", "5", "2016-12-20 19:43:20", "2016-12-20 06:43:20", "195.189.17.216", "www", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1381", "lockout", "Host or User Lockout", "10", "2016-12-20 19:43:20", "2016-12-20 06:43:20", "195.189.17.216", "", "0", "", "", "a:3:{s:7:\"expires\";s:19:\"2016-12-20 19:58:20\";s:11:\"expires_gmt\";s:19:\"2016-12-20 06:58:20\";s:4:\"type\";s:11:\"brute_force\";}");
INSERT INTO `wp_itsec_log` VALUES("1325", "four_oh_four", "404 Error", "3", "2016-12-19 15:05:53", "2016-12-19 02:05:53", "27.252.64.182", "", "0", "/wp-content/uploads/2016/02/Infinity-Marketing_Logo_Lg.png", "http://www.infinitymarketing.co.nz/", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("997", "lockout", "Host or User Lockout", "10", "2016-12-12 19:55:22", "2016-12-12 06:55:22", "184.168.27.197", "", "0", "", "", "a:3:{s:7:\"expires\";s:19:\"2016-12-12 20:10:22\";s:11:\"expires_gmt\";s:19:\"2016-12-12 07:10:22\";s:4:\"type\";s:11:\"brute_force\";}");
INSERT INTO `wp_itsec_log` VALUES("998", "brute_force", "Invalid Login Attempt", "5", "2016-12-12 20:31:31", "2016-12-12 07:31:31", "182.74.118.2", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("999", "brute_force", "Invalid Login Attempt", "5", "2016-12-12 21:19:21", "2016-12-12 08:19:21", "194.126.224.33", "your", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1000", "brute_force", "Invalid Login Attempt", "5", "2016-12-12 21:19:30", "2016-12-12 08:19:30", "194.126.224.33", "business", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1001", "brute_force", "Invalid Login Attempt", "5", "2016-12-12 21:19:34", "2016-12-12 08:19:34", "194.126.224.33", "services", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1002", "brute_force", "Invalid Login Attempt", "5", "2016-12-12 21:19:37", "2016-12-12 08:19:37", "194.126.224.33", "small", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1003", "brute_force", "Invalid Login Attempt", "5", "2016-12-12 21:19:39", "2016-12-12 08:19:39", "194.126.224.33", "that", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1004", "lockout", "Host or User Lockout", "10", "2016-12-12 21:19:39", "2016-12-12 08:19:39", "194.126.224.33", "", "0", "", "", "a:3:{s:7:\"expires\";s:19:\"2016-12-12 21:34:39\";s:11:\"expires_gmt\";s:19:\"2016-12-12 08:34:39\";s:4:\"type\";s:11:\"brute_force\";}");
INSERT INTO `wp_itsec_log` VALUES("1005", "brute_force", "Invalid Login Attempt", "5", "2016-12-12 23:19:00", "2016-12-12 10:19:00", "5.142.69.33", "candice", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1006", "brute_force", "Invalid Login Attempt", "5", "2016-12-12 23:19:10", "2016-12-12 10:19:10", "5.142.69.33", "home", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1007", "brute_force", "Invalid Login Attempt", "5", "2016-12-12 23:19:12", "2016-12-12 10:19:12", "5.142.69.33", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1008", "brute_force", "Invalid Login Attempt", "5", "2016-12-12 23:19:15", "2016-12-12 10:19:15", "5.142.69.33", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1009", "brute_force", "Invalid Login Attempt", "5", "2016-12-12 23:19:18", "2016-12-12 10:19:18", "5.142.69.33", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1010", "lockout", "Host or User Lockout", "10", "2016-12-12 23:19:18", "2016-12-12 10:19:18", "5.142.69.33", "", "0", "", "", "a:3:{s:7:\"expires\";s:19:\"2016-12-12 23:34:18\";s:11:\"expires_gmt\";s:19:\"2016-12-12 10:34:18\";s:4:\"type\";s:11:\"brute_force\";}");
INSERT INTO `wp_itsec_log` VALUES("1011", "four_oh_four", "404 Error", "3", "2016-12-12 23:57:18", "2016-12-12 10:57:18", "198.204.244.162", "", "0", "/wp-content/plugins/wp-image-news-slider/css/default.css", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1012", "brute_force", "Invalid Login Attempt", "5", "2016-12-13 00:35:58", "2016-12-12 11:35:58", "112.150.74.221", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1013", "brute_force", "Invalid Login Attempt", "5", "2016-12-13 01:16:03", "2016-12-12 12:16:03", "117.20.48.214", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1014", "brute_force", "Invalid Login Attempt", "5", "2016-12-13 01:44:44", "2016-12-12 12:44:44", "184.168.27.197", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1015", "brute_force", "Invalid Login Attempt", "5", "2016-12-13 01:44:44", "2016-12-12 12:44:44", "184.168.27.197", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1016", "brute_force", "Invalid Login Attempt", "5", "2016-12-13 01:44:44", "2016-12-12 12:44:44", "184.168.27.197", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1017", "brute_force", "Invalid Login Attempt", "5", "2016-12-13 01:44:44", "2016-12-12 12:44:44", "184.168.27.197", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1018", "brute_force", "Invalid Login Attempt", "5", "2016-12-13 01:44:44", "2016-12-12 12:44:44", "184.168.27.197", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1019", "lockout", "Host or User Lockout", "10", "2016-12-13 01:44:44", "2016-12-12 12:44:44", "184.168.27.197", "", "0", "", "", "a:3:{s:7:\"expires\";s:19:\"2016-12-13 01:59:44\";s:11:\"expires_gmt\";s:19:\"2016-12-12 12:59:44\";s:4:\"type\";s:11:\"brute_force\";}");
INSERT INTO `wp_itsec_log` VALUES("1020", "brute_force", "Invalid Login Attempt", "5", "2016-12-13 02:48:47", "2016-12-12 13:48:47", "122.168.243.120", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1021", "brute_force", "Invalid Login Attempt", "5", "2016-12-13 06:33:47", "2016-12-12 17:33:47", "80.26.232.236", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1022", "brute_force", "Invalid Login Attempt", "5", "2016-12-13 06:46:13", "2016-12-12 17:46:13", "178.149.134.117", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1023", "brute_force", "Invalid Login Attempt", "5", "2016-12-13 07:39:07", "2016-12-12 18:39:07", "212.200.159.130", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1024", "brute_force", "Invalid Login Attempt", "5", "2016-12-13 09:14:12", "2016-12-12 20:14:12", "109.94.10.6", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1025", "brute_force", "Invalid Login Attempt", "5", "2016-12-13 09:14:21", "2016-12-12 20:14:21", "109.94.10.6", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1026", "brute_force", "Invalid Login Attempt", "5", "2016-12-13 09:14:23", "2016-12-12 20:14:23", "109.94.10.6", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1027", "brute_force", "Invalid Login Attempt", "5", "2016-12-13 09:14:26", "2016-12-12 20:14:26", "109.94.10.6", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1028", "brute_force", "Invalid Login Attempt", "5", "2016-12-13 09:14:28", "2016-12-12 20:14:28", "109.94.10.6", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1029", "lockout", "Host or User Lockout", "10", "2016-12-13 09:14:28", "2016-12-12 20:14:28", "109.94.10.6", "", "0", "", "", "a:3:{s:7:\"expires\";s:19:\"2016-12-13 09:29:28\";s:11:\"expires_gmt\";s:19:\"2016-12-12 20:29:28\";s:4:\"type\";s:11:\"brute_force\";}");
INSERT INTO `wp_itsec_log` VALUES("1030", "brute_force", "Invalid Login Attempt", "5", "2016-12-13 09:31:53", "2016-12-12 20:31:53", "50.62.177.143", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1031", "brute_force", "Invalid Login Attempt", "5", "2016-12-13 09:31:53", "2016-12-12 20:31:53", "50.62.177.143", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1032", "brute_force", "Invalid Login Attempt", "5", "2016-12-13 09:31:53", "2016-12-12 20:31:53", "50.62.177.143", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1033", "brute_force", "Invalid Login Attempt", "5", "2016-12-13 09:31:53", "2016-12-12 20:31:53", "50.62.177.143", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1034", "brute_force", "Invalid Login Attempt", "5", "2016-12-13 09:31:53", "2016-12-12 20:31:53", "50.62.177.143", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1035", "lockout", "Host or User Lockout", "10", "2016-12-13 09:31:53", "2016-12-12 20:31:53", "50.62.177.143", "", "0", "", "", "a:3:{s:7:\"expires\";s:19:\"2016-12-13 09:46:53\";s:11:\"expires_gmt\";s:19:\"2016-12-12 20:46:53\";s:4:\"type\";s:11:\"brute_force\";}");
INSERT INTO `wp_itsec_log` VALUES("1036", "four_oh_four", "404 Error", "3", "2016-12-13 10:34:31", "2016-12-12 21:34:31", "77.88.47.11", "", "0", "/wp-content/uploads/2016/02/Infinity-Marketing_Logo_Lg.png", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1037", "brute_force", "Invalid Login Attempt", "5", "2016-12-13 10:57:48", "2016-12-12 21:57:48", "92.92.71.134", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1038", "brute_force", "Invalid Login Attempt", "5", "2016-12-13 12:17:10", "2016-12-12 23:17:10", "111.94.198.94", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1039", "brute_force", "Invalid Login Attempt", "5", "2016-12-13 12:34:18", "2016-12-12 23:34:18", "219.117.107.184", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1040", "four_oh_four", "404 Error", "3", "2016-12-13 12:52:57", "2016-12-12 23:52:57", "107.21.1.8", "", "0", "/wp-content/uploads/2016/02/Infinity-Marketing_Logo_Lg.png", "http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity-Marketing_Logo_Lg.png", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1069", "brute_force", "Invalid Login Attempt", "5", "2016-12-13 21:28:41", "2016-12-13 08:28:41", "94.231.190.238", "infinitymarketing.co", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1070", "brute_force", "Invalid Login Attempt", "5", "2016-12-13 21:28:49", "2016-12-13 08:28:49", "94.231.190.238", "infinitymarketing.co", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1071", "brute_force", "Invalid Login Attempt", "5", "2016-12-13 21:28:51", "2016-12-13 08:28:51", "94.231.190.238", "infinitymarketing.co", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1072", "brute_force", "Invalid Login Attempt", "5", "2016-12-13 21:28:54", "2016-12-13 08:28:54", "94.231.190.238", "infinitymarketing.co", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1073", "brute_force", "Invalid Login Attempt", "5", "2016-12-13 21:28:57", "2016-12-13 08:28:57", "94.231.190.238", "ftp", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1074", "lockout", "Host or User Lockout", "10", "2016-12-13 21:28:57", "2016-12-13 08:28:57", "94.231.190.238", "", "0", "", "", "a:3:{s:7:\"expires\";s:19:\"2016-12-13 21:43:57\";s:11:\"expires_gmt\";s:19:\"2016-12-13 08:43:57\";s:4:\"type\";s:11:\"brute_force\";}");
INSERT INTO `wp_itsec_log` VALUES("1075", "four_oh_four", "404 Error", "3", "2016-12-13 21:44:35", "2016-12-13 08:44:35", "185.159.36.6", "", "0", "/wp-content/plugins/aviary-image-editor-add-on-for-gravity-forms/includes/upload.php", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1076", "four_oh_four", "404 Error", "3", "2016-12-13 22:56:40", "2016-12-13 09:56:40", "185.159.36.6", "", "0", "/wp-content/plugins/inboundio-marketing/admin/partials/csv_uploader.php", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1077", "four_oh_four", "404 Error", "3", "2016-12-13 23:29:53", "2016-12-13 10:29:53", "185.159.36.6", "", "0", "/wp-content/plugins/wpshop/includes/ajax.php", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1078", "brute_force", "Invalid Login Attempt", "5", "2016-12-13 23:55:55", "2016-12-13 10:55:55", "178.88.15.202", "ftp@infinitymarketing.co.nz", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1079", "brute_force", "Invalid Login Attempt", "5", "2016-12-13 23:56:02", "2016-12-13 10:56:02", "178.88.15.202", "infinitymarketing.co@infinitymarketing.co.nz", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1080", "brute_force", "Invalid Login Attempt", "5", "2016-12-13 23:56:07", "2016-12-13 10:56:07", "178.88.15.202", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1081", "brute_force", "Invalid Login Attempt", "5", "2016-12-13 23:56:09", "2016-12-13 10:56:09", "178.88.15.202", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1082", "brute_force", "Invalid Login Attempt", "5", "2016-12-13 23:56:11", "2016-12-13 10:56:11", "178.88.15.202", "test@infinitymarketing.co.nz", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1083", "lockout", "Host or User Lockout", "10", "2016-12-13 23:56:11", "2016-12-13 10:56:11", "178.88.15.202", "", "0", "", "", "a:3:{s:7:\"expires\";s:19:\"2016-12-14 00:11:11\";s:11:\"expires_gmt\";s:19:\"2016-12-13 11:11:11\";s:4:\"type\";s:11:\"brute_force\";}");
INSERT INTO `wp_itsec_log` VALUES("1084", "brute_force", "Invalid Login Attempt", "5", "2016-12-14 01:12:59", "2016-12-13 12:12:59", "174.96.217.7", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1085", "four_oh_four", "404 Error", "3", "2016-12-14 01:41:54", "2016-12-13 12:41:54", "185.159.36.6", "", "0", "/wp-content/themes/awake/lib/scripts/dl-skin.php", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1086", "four_oh_four", "404 Error", "3", "2016-12-14 03:56:02", "2016-12-13 14:56:02", "185.159.36.6", "", "0", "/wp-content/plugins/wp-symposium/server/php/index.php", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1087", "brute_force", "Invalid Login Attempt", "5", "2016-12-14 04:27:31", "2016-12-13 15:27:31", "181.229.207.69", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1088", "four_oh_four", "404 Error", "3", "2016-12-14 04:30:59", "2016-12-13 15:30:59", "185.159.36.6", "", "0", "/wp-content/plugins/simple-ads-manager/sam-ajax-admin.php", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1089", "brute_force", "Invalid Login Attempt", "5", "2016-12-14 04:43:58", "2016-12-13 15:43:58", "27.147.201.3", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1090", "brute_force", "Invalid Login Attempt", "5", "2016-12-14 04:44:12", "2016-12-13 15:44:12", "182.253.150.255", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1091", "brute_force", "Invalid Login Attempt", "5", "2016-12-14 04:57:25", "2016-12-13 15:57:25", "91.137.204.55", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1092", "four_oh_four", "404 Error", "3", "2016-12-14 04:59:27", "2016-12-13 15:59:27", "185.159.36.6", "", "0", "/wp-content/plugins/reflex-gallery/admin/scripts/FileUploader/php.php", "", "a:1:{s:12:\"query_string\";s:18:\"Year=2016&Month=11\";}");
INSERT INTO `wp_itsec_log` VALUES("1093", "backup", "Database Backup Executed", "3", "2016-12-14 06:44:17", "2016-12-13 17:44:17", "", "", "0", "", "", "a:1:{i:0;a:2:{s:6:\"status\";s:7:\"Success\";s:7:\"details\";s:28:\"emailed to backup recipients\";}}");
INSERT INTO `wp_itsec_log` VALUES("1094", "four_oh_four", "404 Error", "3", "2016-12-14 06:44:17", "2016-12-13 17:44:17", "185.159.36.6", "", "0", "/wp-content/plugins/front-end-upload/lib/plupload/examples/upload.php", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1095", "brute_force", "Invalid Login Attempt", "5", "2016-12-14 07:10:11", "2016-12-13 18:10:11", "37.48.48.34", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1096", "four_oh_four", "404 Error", "3", "2016-12-14 07:15:17", "2016-12-13 18:15:17", "185.159.36.6", "", "0", "/wp-content/plugins/malapascua-agency/js/plupload/examples/upload.php", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1097", "four_oh_four", "404 Error", "3", "2016-12-14 07:36:44", "2016-12-13 18:36:44", "122.139.5.237", "", "0", "/", "", "a:1:{s:12:\"query_string\";s:8:\"author=2\";}");
INSERT INTO `wp_itsec_log` VALUES("1098", "four_oh_four", "404 Error", "3", "2016-12-14 07:36:49", "2016-12-13 18:36:49", "122.139.5.237", "", "0", "/", "", "a:1:{s:12:\"query_string\";s:8:\"author=3\";}");
INSERT INTO `wp_itsec_log` VALUES("1099", "four_oh_four", "404 Error", "3", "2016-12-14 07:36:58", "2016-12-13 18:36:58", "119.1.227.1", "", "0", "/", "", "a:1:{s:12:\"query_string\";s:8:\"author=5\";}");
INSERT INTO `wp_itsec_log` VALUES("1100", "four_oh_four", "404 Error", "3", "2016-12-14 07:37:01", "2016-12-13 18:37:01", "119.1.227.1", "", "0", "/", "", "a:1:{s:12:\"query_string\";s:8:\"author=6\";}");
INSERT INTO `wp_itsec_log` VALUES("1101", "four_oh_four", "404 Error", "3", "2016-12-14 07:37:03", "2016-12-13 18:37:03", "119.1.227.1", "", "0", "/", "", "a:1:{s:12:\"query_string\";s:8:\"author=7\";}");
INSERT INTO `wp_itsec_log` VALUES("1102", "four_oh_four", "404 Error", "3", "2016-12-14 07:37:06", "2016-12-13 18:37:06", "119.1.227.1", "", "0", "/", "", "a:1:{s:12:\"query_string\";s:8:\"author=8\";}");
INSERT INTO `wp_itsec_log` VALUES("1103", "four_oh_four", "404 Error", "3", "2016-12-14 07:37:09", "2016-12-13 18:37:09", "119.1.227.1", "", "0", "/", "", "a:1:{s:12:\"query_string\";s:8:\"author=9\";}");
INSERT INTO `wp_itsec_log` VALUES("1104", "four_oh_four", "404 Error", "3", "2016-12-14 07:37:12", "2016-12-13 18:37:12", "119.1.227.1", "", "0", "/", "", "a:1:{s:12:\"query_string\";s:9:\"author=10\";}");
INSERT INTO `wp_itsec_log` VALUES("1105", "brute_force", "Invalid Login Attempt", "5", "2016-12-14 07:37:14", "2016-12-13 18:37:14", "119.1.227.1", "www", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1106", "lockout", "Host or User Lockout", "10", "2016-12-14 07:37:14", "2016-12-13 18:37:14", "119.1.227.1", "", "0", "", "", "a:3:{s:7:\"expires\";s:19:\"2016-12-14 07:52:14\";s:11:\"expires_gmt\";s:19:\"2016-12-13 18:52:14\";s:4:\"type\";s:11:\"brute_force\";}");
INSERT INTO `wp_itsec_log` VALUES("1107", "brute_force", "Invalid Login Attempt", "5", "2016-12-14 07:37:16", "2016-12-13 18:37:16", "125.227.89.130", "www", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1108", "brute_force", "Invalid Login Attempt", "5", "2016-12-14 07:37:18", "2016-12-13 18:37:18", "125.227.89.130", "www", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1109", "brute_force", "Invalid Login Attempt", "5", "2016-12-14 07:37:19", "2016-12-13 18:37:19", "125.227.89.130", "www", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1110", "brute_force", "Invalid Login Attempt", "5", "2016-12-14 07:37:20", "2016-12-13 18:37:20", "125.227.89.130", "www", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1111", "brute_force", "Invalid Login Attempt", "5", "2016-12-14 07:37:24", "2016-12-13 18:37:24", "117.253.232.48", "www", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1112", "brute_force", "Invalid Login Attempt", "5", "2016-12-14 07:37:27", "2016-12-13 18:37:27", "117.253.232.48", "www", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1113", "brute_force", "Invalid Login Attempt", "5", "2016-12-14 07:37:47", "2016-12-13 18:37:47", "138.118.6.219", "www", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1114", "brute_force", "Invalid Login Attempt", "5", "2016-12-14 07:37:48", "2016-12-13 18:37:48", "138.118.6.219", "www", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1115", "brute_force", "Invalid Login Attempt", "5", "2016-12-14 07:37:49", "2016-12-13 18:37:49", "138.118.6.219", "www", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1116", "lockout", "Host or User Lockout", "10", "2016-12-14 07:37:49", "2016-12-13 18:37:49", "", "", "0", "", "", "a:3:{s:7:\"expires\";s:19:\"2016-12-14 07:52:49\";s:11:\"expires_gmt\";s:19:\"2016-12-13 18:52:49\";s:4:\"type\";s:11:\"brute_force\";}");
INSERT INTO `wp_itsec_log` VALUES("1117", "four_oh_four", "404 Error", "3", "2016-12-14 08:58:37", "2016-12-13 19:58:37", "185.159.36.6", "", "0", "/wp-content/plugins/front-end-editor/lib/aloha-editor/plugins/extra/draganddropfiles/demo/upload.php", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1118", "four_oh_four", "404 Error", "3", "2016-12-14 08:59:07", "2016-12-13 19:59:07", "185.159.36.6", "", "0", "/wp-content/plugins/front-end-editor/lib/aloha-editor/plugins/extra/draganddropfiles/demo/wp-classes.php", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1119", "four_oh_four", "404 Error", "3", "2016-12-14 09:08:39", "2016-12-13 20:08:39", "185.159.36.6", "", "0", "/wp-content/plugins/peugeot-music-plugin/js/plupload/examples/upload.php", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1120", "brute_force", "Invalid Login Attempt", "5", "2016-12-14 09:26:45", "2016-12-13 20:26:45", "184.168.200.102", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1121", "brute_force", "Invalid Login Attempt", "5", "2016-12-14 09:26:45", "2016-12-13 20:26:45", "184.168.200.102", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1122", "brute_force", "Invalid Login Attempt", "5", "2016-12-14 09:26:45", "2016-12-13 20:26:45", "184.168.200.102", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1123", "brute_force", "Invalid Login Attempt", "5", "2016-12-14 09:26:45", "2016-12-13 20:26:45", "184.168.200.102", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1124", "brute_force", "Invalid Login Attempt", "5", "2016-12-14 09:26:45", "2016-12-13 20:26:45", "184.168.200.102", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1125", "lockout", "Host or User Lockout", "10", "2016-12-14 09:26:45", "2016-12-13 20:26:45", "184.168.200.102", "", "0", "", "", "a:3:{s:7:\"expires\";s:19:\"2016-12-14 09:41:45\";s:11:\"expires_gmt\";s:19:\"2016-12-13 20:41:45\";s:4:\"type\";s:11:\"brute_force\";}");
INSERT INTO `wp_itsec_log` VALUES("1126", "four_oh_four", "404 Error", "3", "2016-12-14 10:43:06", "2016-12-13 21:43:06", "185.159.36.6", "", "0", "/wp-content/themes/infocus/lib/scripts/dl-skin.php", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1127", "four_oh_four", "404 Error", "3", "2016-12-14 10:45:56", "2016-12-13 21:45:56", "222.153.85.38", "", "0", "/wp-content/uploads/2016/02/Infinity-Marketing_Logo_Lg.png", "http://www.infinitymarketing.co.nz/", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1128", "four_oh_four", "404 Error", "3", "2016-12-14 11:47:24", "2016-12-13 22:47:24", "149.202.247.172", "", "0", "/administrator/", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1129", "four_oh_four", "404 Error", "3", "2016-12-14 11:47:46", "2016-12-13 22:47:46", "149.202.247.172", "", "0", "/bitrix/admin/", "", "a:1:{s:12:\"query_string\";s:7:\"lang=en\";}");
INSERT INTO `wp_itsec_log` VALUES("1130", "four_oh_four", "404 Error", "3", "2016-12-14 11:48:10", "2016-12-13 22:48:10", "149.202.247.172", "", "0", "/user/", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1131", "four_oh_four", "404 Error", "3", "2016-12-14 12:26:46", "2016-12-13 23:26:46", "185.159.36.6", "", "0", "/wp-content/plugins/formcraft/file-upload/server/php/index.php", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1132", "brute_force", "Invalid Login Attempt", "5", "2016-12-14 12:41:03", "2016-12-13 23:41:03", "41.109.213.139", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1133", "four_oh_four", "404 Error", "3", "2016-12-14 13:02:33", "2016-12-14 00:02:33", "185.159.36.6", "", "0", "/wp-content/themes/elegance/lib/scripts/dl-skin.php", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1137", "brute_force", "Invalid Login Attempt", "5", "2016-12-14 17:58:54", "2016-12-14 04:58:54", "85.65.51.206", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1138", "brute_force", "Invalid Login Attempt", "5", "2016-12-14 18:00:06", "2016-12-14 05:00:06", "201.6.231.108", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1139", "four_oh_four", "404 Error", "3", "2016-12-14 18:01:02", "2016-12-14 05:01:02", "185.159.36.6", "", "0", "/wp-content/plugins/wp-post-frontend/js/plupload-2.1.2/examples/upload.php", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1140", "four_oh_four", "404 Error", "3", "2016-12-14 18:40:13", "2016-12-14 05:40:13", "118.92.54.197", "", "0", "/wp-content/uploads/2016/02/Infinity-Marketing_Logo_Lg.png", "http://www.infinitymarketing.co.nz/", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1141", "four_oh_four", "404 Error", "3", "2016-12-14 19:46:54", "2016-12-14 06:46:54", "185.159.36.6", "", "0", "/wp-content/plugins/use-your-drive/includes/jquery-file-upload/server/php/index.php", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1142", "brute_force", "Invalid Login Attempt", "5", "2016-12-14 20:03:42", "2016-12-14 07:03:42", "103.246.240.154", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1143", "four_oh_four", "404 Error", "3", "2016-12-14 20:48:08", "2016-12-14 07:48:08", "185.159.36.6", "", "0", "/wp-content/plugins/the-viddler-wordpress-plugin/js/plupload/examples/upload.php", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1144", "four_oh_four", "404 Error", "3", "2016-12-14 21:15:29", "2016-12-14 08:15:29", "185.159.36.6", "", "0", "/wp-content/plugins/levelfourstorefront/scripts/administration/dbuploaderscript.php", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1145", "four_oh_four", "404 Error", "3", "2016-12-14 21:16:31", "2016-12-14 08:16:31", "185.159.36.6", "", "0", "/wp-content/plugins/levelfourstorefront/products/wp-classes.php", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1146", "brute_force", "Invalid Login Attempt", "5", "2016-12-14 21:20:49", "2016-12-14 08:20:49", "182.50.151.63", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1147", "brute_force", "Invalid Login Attempt", "5", "2016-12-14 21:20:49", "2016-12-14 08:20:49", "182.50.151.63", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1148", "brute_force", "Invalid Login Attempt", "5", "2016-12-14 21:20:49", "2016-12-14 08:20:49", "182.50.151.63", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1149", "brute_force", "Invalid Login Attempt", "5", "2016-12-14 21:20:49", "2016-12-14 08:20:49", "182.50.151.63", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1150", "brute_force", "Invalid Login Attempt", "5", "2016-12-14 21:20:49", "2016-12-14 08:20:49", "182.50.151.63", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1151", "lockout", "Host or User Lockout", "10", "2016-12-14 21:20:49", "2016-12-14 08:20:49", "182.50.151.63", "", "0", "", "", "a:3:{s:7:\"expires\";s:19:\"2016-12-14 21:35:49\";s:11:\"expires_gmt\";s:19:\"2016-12-14 08:35:49\";s:4:\"type\";s:11:\"brute_force\";}");
INSERT INTO `wp_itsec_log` VALUES("1152", "four_oh_four", "404 Error", "3", "2016-12-14 21:47:06", "2016-12-14 08:47:06", "118.92.99.231", "", "0", "/wp-content/uploads/2016/02/Infinity-Marketing_Logo_Lg.png", "http://www.infinitymarketing.co.nz/", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1153", "four_oh_four", "404 Error", "3", "2016-12-14 22:31:57", "2016-12-14 09:31:57", "185.159.36.6", "", "0", "/wp-content/plugins/ultimate-product-catalogue/product-sheets/wp-classes.php", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1154", "four_oh_four", "404 Error", "3", "2016-12-14 23:14:25", "2016-12-14 10:14:25", "188.138.105.5", "", "0", "/license.php", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1155", "four_oh_four", "404 Error", "3", "2016-12-15 00:34:08", "2016-12-14 11:34:08", "198.204.244.162", "", "0", "/wp-content/plugins/wp-superb-slideshow/css/default.css", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1156", "brute_force", "Invalid Login Attempt", "5", "2016-12-15 00:59:00", "2016-12-14 11:59:00", "83.188.73.51", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1157", "brute_force", "Invalid Login Attempt", "5", "2016-12-15 01:18:09", "2016-12-14 12:18:09", "83.23.136.238", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1158", "four_oh_four", "404 Error", "3", "2016-12-15 03:13:19", "2016-12-14 14:13:19", "91.200.12.147", "", "0", "/wp-content/uploads/wp-cache.php", "http://www.googlebot.com/bot.html", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1159", "four_oh_four", "404 Error", "3", "2016-12-15 03:18:26", "2016-12-14 14:18:26", "91.200.12.147", "", "0", "/license.php", "http://www.infinitymarketing.co.nz/license.php", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1160", "four_oh_four", "404 Error", "3", "2016-12-15 03:18:27", "2016-12-14 14:18:27", "91.200.12.147", "", "0", "/wp-cache.php", "http://www.googlebot.com/bot.html", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1161", "four_oh_four", "404 Error", "3", "2016-12-15 03:18:31", "2016-12-14 14:18:31", "91.200.12.147", "", "0", "/wp-content/plugins/revslider/temp/update_extract/wp-cache.php", "http://www.googlebot.com/bot.html", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1162", "four_oh_four", "404 Error", "3", "2016-12-15 03:18:33", "2016-12-14 14:18:33", "91.200.12.147", "", "0", "/uploadify/uploadify.php", "http://www.infinitymarketing.co.nz/uploadify/uploadify.php?folder=/", "a:1:{s:12:\"query_string\";s:8:\"folder=/\";}");
INSERT INTO `wp_itsec_log` VALUES("1163", "four_oh_four", "404 Error", "3", "2016-12-15 03:18:34", "2016-12-14 14:18:34", "91.200.12.147", "", "0", "/wp-cache.php", "http://www.googlebot.com/bot.html", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1164", "four_oh_four", "404 Error", "3", "2016-12-15 03:19:38", "2016-12-14 14:19:38", "91.200.12.147", "", "0", "/tiny_mce/plugins/tinybrowser/upload.php", "", "a:1:{s:12:\"query_string\";s:9:\"type=file\";}");
INSERT INTO `wp_itsec_log` VALUES("1165", "four_oh_four", "404 Error", "3", "2016-12-15 03:20:43", "2016-12-14 14:20:43", "91.200.12.147", "", "0", "/tiny_mce/plugins/tinybrowser/upload_file.php", "http://www.infinitymarketing.co.nz/tiny_mce/plugins/tinybrowser/upload_file.php?folder=/&type=file&feid=&obfuscate=&sessidpass=", "a:1:{s:12:\"query_string\";s:47:\"folder=/&type=file&feid=&obfuscate=&sessidpass=\";}");
INSERT INTO `wp_itsec_log` VALUES("1166", "four_oh_four", "404 Error", "3", "2016-12-15 03:20:46", "2016-12-14 14:20:46", "91.200.12.147", "", "0", "/wp-cache.php.suspected_", "http://www.googlebot.com/bot.html", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1167", "four_oh_four", "404 Error", "3", "2016-12-15 03:20:47", "2016-12-14 14:20:47", "91.200.12.147", "", "0", "/wp-content/plugins/Login-wall-etgFB/login_wall.php", "www.infinitymarketing.co.nz", "a:1:{s:12:\"query_string\";s:63:\"login=cmd&z3=d3AtY2FjaGUucGhw&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8%3d\";}");
INSERT INTO `wp_itsec_log` VALUES("1168", "four_oh_four", "404 Error", "3", "2016-12-15 03:20:48", "2016-12-14 14:20:48", "91.200.12.147", "", "0", "/wp-content/plugins/wp-cache.php", "http://www.googlebot.com/bot.html", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1169", "four_oh_four", "404 Error", "3", "2016-12-15 03:20:50", "2016-12-14 14:20:50", "91.200.12.147", "", "0", "/sites/all/libraries/elfinder/php/connector.minimal.php", "http://www.infinitymarketing.co.nz/sites/all/libraries/elfinder/php/connector.minimal.php", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1170", "four_oh_four", "404 Error", "3", "2016-12-15 03:20:51", "2016-12-14 14:20:51", "91.200.12.147", "", "0", "/sites/all/libraries/elfinder/files/wp-cache.php", "http://www.googlebot.com/bot.html", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1171", "four_oh_four", "404 Error", "3", "2016-12-15 03:20:53", "2016-12-14 14:20:53", "91.200.12.147", "", "0", "//wp-content/plugins/jquery-html5-file-upload/jquery-html5-file-upload.php", "http://www.infinitymarketing.co.nz//wp-content/plugins/jquery-html5-file-upload/jquery-html5-file-upload.php", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1172", "four_oh_four", "404 Error", "3", "2016-12-15 03:20:56", "2016-12-14 14:20:56", "91.200.12.147", "", "0", "/wp-content/uploads/files/guest/wp-cache.php", "http://www.googlebot.com/bot.html", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1173", "four_oh_four", "404 Error", "3", "2016-12-15 03:20:57", "2016-12-14 14:20:57", "91.200.12.147", "", "0", "//wp-content/plugins/woocommerce-product-options/includes/image-upload.php", "http://www.infinitymarketing.co.nz//wp-content/plugins/woocommerce-product-options/includes/image-upload.php", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1174", "four_oh_four", "404 Error", "3", "2016-12-15 03:21:00", "2016-12-14 14:21:00", "91.200.12.147", "", "0", "/wp-content/uploads/2016/12/wp-cache.php", "http://www.googlebot.com/bot.html", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1175", "four_oh_four", "404 Error", "3", "2016-12-15 03:21:01", "2016-12-14 14:21:01", "91.200.12.147", "", "0", "//modules/mod_simplefileuploadv1.3/elements/udd.php", "http://www.infinitymarketing.co.nz//modules/mod_simplefileuploadv1.3/elements/udd.php", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1176", "four_oh_four", "404 Error", "3", "2016-12-15 03:21:05", "2016-12-14 14:21:05", "91.200.12.147", "", "0", "/modules/mod_simplefileuploadv1.3/elements/wp-cache.php", "http://www.googlebot.com/bot.html", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1177", "four_oh_four", "404 Error", "3", "2016-12-15 03:21:50", "2016-12-14 14:21:50", "77.88.47.11", "", "0", "/wp-content/uploads/2016/02/Infinity-Marketing_Logo_Lg.png", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1178", "four_oh_four", "404 Error", "3", "2016-12-15 03:32:46", "2016-12-14 14:32:46", "188.138.105.23", "", "0", "/wp-content/plugins/cherry-plugin/admin/css/cherry-admin-plugin.css", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1179", "four_oh_four", "404 Error", "3", "2016-12-15 04:34:40", "2016-12-14 15:34:40", "46.118.127.120", "", "0", "/uploadify/uploadify.swf", "http://www.infinitymarketing.co.nz/uploadify/uploadify.swf", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1180", "four_oh_four", "404 Error", "3", "2016-12-15 04:34:46", "2016-12-14 15:34:46", "46.118.127.120", "", "0", "/js/uploadify/uploadify.swf", "http://www.infinitymarketing.co.nz/js/uploadify/uploadify.swf", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1181", "four_oh_four", "404 Error", "3", "2016-12-15 04:34:46", "2016-12-14 15:34:46", "46.118.127.120", "", "0", "/admin/uploadify/uploadify.swf", "http://www.infinitymarketing.co.nz/admin/uploadify/uploadify.swf", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1182", "four_oh_four", "404 Error", "3", "2016-12-15 04:34:54", "2016-12-14 15:34:54", "107.180.1.37", "", "0", "/wp-cron.php", "http://www.infinitymarketing.co.nz/wp-cron.php?doing_wp_cron=1481729660.0952088832855224609375", "a:1:{s:12:\"query_string\";s:47:\"doing_wp_cron=1481729660.0952088832855224609375\";}");
INSERT INTO `wp_itsec_log` VALUES("1183", "four_oh_four", "404 Error", "3", "2016-12-15 04:35:06", "2016-12-14 15:35:06", "46.118.127.120", "", "0", "/plugins/uploadify/uploadify.swf", "http://www.infinitymarketing.co.nz/plugins/uploadify/uploadify.swf", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1184", "brute_force", "Invalid Login Attempt", "5", "2016-12-15 04:37:31", "2016-12-14 15:37:31", "92.44.125.195", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1185", "brute_force", "Invalid Login Attempt", "5", "2016-12-15 05:03:23", "2016-12-14 16:03:23", "197.251.168.176", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1186", "brute_force", "Invalid Login Attempt", "5", "2016-12-15 05:08:05", "2016-12-14 16:08:05", "78.192.207.114", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1187", "four_oh_four", "404 Error", "3", "2016-12-15 05:43:09", "2016-12-14 16:43:09", "66.249.64.182", "", "0", "/wp-content/uploads/2016/02/Infinity-Marketing_Logo_Lg.png", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1188", "four_oh_four", "404 Error", "3", "2016-12-15 07:01:02", "2016-12-14 18:01:02", "195.154.199.66", "", "0", "/license.php", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1189", "brute_force", "Invalid Login Attempt", "5", "2016-12-15 08:05:55", "2016-12-14 19:05:55", "109.175.100.13", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1190", "brute_force", "Invalid Login Attempt", "5", "2016-12-15 09:29:17", "2016-12-14 20:29:17", "73.65.216.53", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1191", "brute_force", "Invalid Login Attempt", "5", "2016-12-15 09:29:56", "2016-12-14 20:29:56", "184.168.27.197", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1192", "brute_force", "Invalid Login Attempt", "5", "2016-12-15 09:29:56", "2016-12-14 20:29:56", "184.168.27.197", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1193", "brute_force", "Invalid Login Attempt", "5", "2016-12-15 09:29:56", "2016-12-14 20:29:56", "184.168.27.197", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1194", "brute_force", "Invalid Login Attempt", "5", "2016-12-15 09:29:56", "2016-12-14 20:29:56", "184.168.27.197", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1195", "brute_force", "Invalid Login Attempt", "5", "2016-12-15 09:29:56", "2016-12-14 20:29:56", "184.168.27.197", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1196", "brute_force", "Invalid Login Attempt", "5", "2016-12-15 10:38:09", "2016-12-14 21:38:09", "123.2.118.56", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1197", "brute_force", "Invalid Login Attempt", "5", "2016-12-15 14:09:33", "2016-12-15 01:09:33", "187.142.104.76", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1198", "brute_force", "Invalid Login Attempt", "5", "2016-12-15 14:36:27", "2016-12-15 01:36:27", "112.197.35.193", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1229", "brute_force", "Invalid Login Attempt", "5", "2016-12-16 02:57:04", "2016-12-15 13:57:04", "182.93.73.54", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1230", "brute_force", "Invalid Login Attempt", "5", "2016-12-16 05:40:52", "2016-12-15 16:40:52", "210.195.73.188", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1231", "brute_force", "Invalid Login Attempt", "5", "2016-12-16 06:32:43", "2016-12-15 17:32:43", "77.120.144.92", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1232", "four_oh_four", "404 Error", "3", "2016-12-16 06:57:16", "2016-12-15 17:57:16", "77.88.47.11", "", "0", "/wp-content/uploads/2016/02/Infinity-Marketing_Logo_Lg.png", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1233", "brute_force", "Invalid Login Attempt", "5", "2016-12-16 07:39:15", "2016-12-15 18:39:15", "192.84.134.41", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1234", "four_oh_four", "404 Error", "3", "2016-12-16 07:40:59", "2016-12-15 18:40:59", "62.210.162.219", "", "0", "/blog/wp-admin/setup-config.php", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1235", "four_oh_four", "404 Error", "3", "2016-12-16 07:41:01", "2016-12-15 18:41:01", "62.210.162.219", "", "0", "/blog/wordpress/wp-admin/setup-config.php", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1236", "four_oh_four", "404 Error", "3", "2016-12-16 07:41:01", "2016-12-15 18:41:01", "62.210.162.219", "", "0", "/wordpress/wp-admin/setup-config.php", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1237", "four_oh_four", "404 Error", "3", "2016-12-16 07:41:01", "2016-12-15 18:41:01", "62.210.162.219", "", "0", "/wordpress/wp-admin/setup-config.php", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1238", "four_oh_four", "404 Error", "3", "2016-12-16 07:41:00", "2016-12-15 18:41:00", "62.210.162.219", "", "0", "/wp/wp-admin/setup-config.php", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1239", "four_oh_four", "404 Error", "3", "2016-12-16 07:41:00", "2016-12-15 18:41:00", "62.210.162.219", "", "0", "/blog/wp-admin/setup-config.php", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1240", "brute_force", "Invalid Login Attempt", "5", "2016-12-16 08:10:17", "2016-12-15 19:10:17", "24.16.101.132", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1241", "brute_force", "Invalid Login Attempt", "5", "2016-12-16 08:48:03", "2016-12-15 19:48:03", "88.178.74.27", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1242", "brute_force", "Invalid Login Attempt", "5", "2016-12-16 10:28:12", "2016-12-15 21:28:12", "88.2.165.132", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1243", "brute_force", "Invalid Login Attempt", "5", "2016-12-16 11:07:38", "2016-12-15 22:07:38", "62.121.118.190", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1244", "brute_force", "Invalid Login Attempt", "5", "2016-12-16 13:38:49", "2016-12-16 00:38:49", "184.168.200.102", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1245", "brute_force", "Invalid Login Attempt", "5", "2016-12-16 13:38:49", "2016-12-16 00:38:49", "184.168.200.102", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1246", "brute_force", "Invalid Login Attempt", "5", "2016-12-16 13:38:49", "2016-12-16 00:38:49", "184.168.200.102", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1247", "brute_force", "Invalid Login Attempt", "5", "2016-12-16 13:38:49", "2016-12-16 00:38:49", "184.168.200.102", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1248", "brute_force", "Invalid Login Attempt", "5", "2016-12-16 13:38:49", "2016-12-16 00:38:49", "184.168.200.102", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1249", "lockout", "Host or User Lockout", "10", "2016-12-16 13:38:49", "2016-12-16 00:38:49", "184.168.200.102", "", "0", "", "", "a:3:{s:7:\"expires\";s:19:\"2016-12-16 13:53:49\";s:11:\"expires_gmt\";s:19:\"2016-12-16 00:53:49\";s:4:\"type\";s:11:\"brute_force\";}");
INSERT INTO `wp_itsec_log` VALUES("1250", "brute_force", "Invalid Login Attempt", "5", "2016-12-16 13:52:45", "2016-12-16 00:52:45", "51.235.208.216", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1261", "brute_force", "Invalid Login Attempt", "5", "2016-12-16 19:55:30", "2016-12-16 06:55:30", "173.201.196.146", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1262", "brute_force", "Invalid Login Attempt", "5", "2016-12-16 22:14:45", "2016-12-16 09:14:45", "2.29.173.7", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1263", "brute_force", "Invalid Login Attempt", "5", "2016-12-17 00:31:56", "2016-12-16 11:31:56", "122.59.78.27", "ouatbb", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1264", "brute_force", "Invalid Login Attempt", "5", "2016-12-17 00:32:08", "2016-12-16 11:32:08", "122.59.78.27", "ouatbb", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1265", "brute_force", "Invalid Login Attempt", "5", "2016-12-17 02:46:08", "2016-12-16 13:46:08", "93.185.21.2", "test123", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1266", "brute_force", "Invalid Login Attempt", "5", "2016-12-17 03:35:29", "2016-12-16 14:35:29", "94.136.140.178", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1267", "brute_force", "Invalid Login Attempt", "5", "2016-12-17 03:54:43", "2016-12-16 14:54:43", "177.21.246.198", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1268", "four_oh_four", "404 Error", "3", "2016-12-17 04:32:25", "2016-12-16 15:32:25", "195.154.241.120", "", "0", "/wp-content/plugins/Login-wall-etgFB/login_wall.php", "", "a:1:{s:12:\"query_string\";s:63:\"login=cmd&z3=c2ZuLnBocA%3D%3D&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8%3d\";}");
INSERT INTO `wp_itsec_log` VALUES("1269", "four_oh_four", "404 Error", "3", "2016-12-17 04:32:27", "2016-12-16 15:32:27", "195.154.241.120", "", "0", "/wp-content/uploads/sfn.php", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1270", "four_oh_four", "404 Error", "3", "2016-12-17 04:32:31", "2016-12-16 15:32:31", "195.154.241.120", "", "0", "/wp-content/plugins/revslider/temp/update_extract/sfn.php", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1271", "four_oh_four", "404 Error", "3", "2016-12-17 04:32:32", "2016-12-16 15:32:32", "195.154.241.120", "", "0", "/wp-content/plugins/revslider/sfn.php", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1272", "four_oh_four", "404 Error", "3", "2016-12-17 04:32:33", "2016-12-16 15:32:33", "195.154.241.120", "", "0", "/license.php", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1273", "four_oh_four", "404 Error", "3", "2016-12-17 04:32:34", "2016-12-16 15:32:34", "195.154.241.120", "", "0", "/uploadify/uploadify.php", "", "a:1:{s:12:\"query_string\";s:8:\"folder=/\";}");
INSERT INTO `wp_itsec_log` VALUES("1274", "four_oh_four", "404 Error", "3", "2016-12-17 04:32:35", "2016-12-16 15:32:35", "195.154.241.120", "", "0", "/tiny_mce/plugins/tinybrowser/upload_file.php", "", "a:1:{s:12:\"query_string\";s:47:\"folder=/&type=file&feid=&obfuscate=&sessidpass=\";}");
INSERT INTO `wp_itsec_log` VALUES("1275", "four_oh_four", "404 Error", "3", "2016-12-17 04:32:36", "2016-12-16 15:32:36", "195.154.241.120", "", "0", "/sfn.php", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1276", "four_oh_four", "404 Error", "3", "2016-12-17 04:32:37", "2016-12-16 15:32:37", "195.154.241.120", "", "0", "/sites/all/libraries/elfinder/php/connector.minimal.php", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1277", "four_oh_four", "404 Error", "3", "2016-12-17 04:32:38", "2016-12-16 15:32:38", "195.154.241.120", "", "0", "/wp-content/plugins/jquery-html5-file-upload/jquery-html5-file-upload.php", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1278", "four_oh_four", "404 Error", "3", "2016-12-17 04:32:39", "2016-12-16 15:32:39", "195.154.241.120", "", "0", "/wp-content/plugins/woocommerce-product-options/includes/image-upload.php", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1279", "four_oh_four", "404 Error", "3", "2016-12-17 04:32:40", "2016-12-16 15:32:40", "195.154.241.120", "", "0", "/modules/mod_simplefileuploadv1.3/elements/udd.php", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1280", "brute_force", "Invalid Login Attempt", "5", "2016-12-17 05:06:14", "2016-12-16 16:06:14", "85.74.64.47", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1281", "four_oh_four", "404 Error", "3", "2016-12-17 05:07:12", "2016-12-16 16:07:12", "195.154.199.66", "", "0", "/up.php", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1282", "four_oh_four", "404 Error", "3", "2016-12-17 05:07:15", "2016-12-16 16:07:15", "195.154.199.66", "", "0", "/up.php", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1283", "brute_force", "Invalid Login Attempt", "5", "2016-12-17 05:57:36", "2016-12-16 16:57:36", "184.168.200.102", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1284", "brute_force", "Invalid Login Attempt", "5", "2016-12-17 05:57:36", "2016-12-16 16:57:36", "184.168.200.102", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1285", "brute_force", "Invalid Login Attempt", "5", "2016-12-17 05:57:36", "2016-12-16 16:57:36", "184.168.200.102", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1286", "brute_force", "Invalid Login Attempt", "5", "2016-12-17 05:57:36", "2016-12-16 16:57:36", "184.168.200.102", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1287", "brute_force", "Invalid Login Attempt", "5", "2016-12-17 05:57:36", "2016-12-16 16:57:36", "184.168.200.102", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1288", "brute_force", "Invalid Login Attempt", "5", "2016-12-17 06:32:44", "2016-12-16 17:32:44", "46.99.9.179", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1289", "brute_force", "Invalid Login Attempt", "5", "2016-12-17 11:42:27", "2016-12-16 22:42:27", "82.0.136.175", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1290", "backup", "Database Backup Executed", "3", "2016-12-17 11:42:31", "2016-12-16 22:42:31", "", "", "0", "", "", "a:1:{i:0;a:2:{s:6:\"status\";s:7:\"Success\";s:7:\"details\";s:28:\"emailed to backup recipients\";}}");
INSERT INTO `wp_itsec_log` VALUES("1291", "brute_force", "Invalid Login Attempt", "5", "2016-12-17 12:54:37", "2016-12-16 23:54:37", "180.245.227.33", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1292", "brute_force", "Invalid Login Attempt", "5", "2016-12-17 12:54:41", "2016-12-16 23:54:41", "180.245.227.33", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1324", "brute_force", "Invalid Login Attempt", "5", "2016-12-19 11:43:48", "2016-12-18 22:43:48", "197.27.88.100", "infinitymarketing", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1396", "brute_force", "Invalid Login Attempt", "5", "2016-12-20 21:26:57", "2016-12-20 08:26:57", "185.57.29.107", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1397", "brute_force", "Invalid Login Attempt", "5", "2016-12-20 21:26:59", "2016-12-20 08:26:59", "185.57.29.107", "test", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1398", "brute_force", "Invalid Login Attempt", "5", "2016-12-20 21:27:02", "2016-12-20 08:27:02", "185.57.29.107", "ftp", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1399", "lockout", "Host or User Lockout", "10", "2016-12-20 21:27:02", "2016-12-20 08:27:02", "185.57.29.107", "", "0", "", "", "a:3:{s:7:\"expires\";s:19:\"2016-12-20 21:42:02\";s:11:\"expires_gmt\";s:19:\"2016-12-20 08:42:02\";s:4:\"type\";s:11:\"brute_force\";}");
INSERT INTO `wp_itsec_log` VALUES("1400", "brute_force", "Invalid Login Attempt", "5", "2016-12-20 21:41:18", "2016-12-20 08:41:18", "84.47.38.80", "infinitymarketing", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1401", "four_oh_four", "404 Error", "3", "2016-12-20 22:05:24", "2016-12-20 09:05:24", "203.173.215.137", "", "0", "/wp-admin/admin-ajax.php", "http://www.infinitymarketing.co.nz/wp-admin/admin.php?page=duplicator&tab=new3", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1402", "four_oh_four", "404 Error", "3", "2016-12-20 22:08:18", "2016-12-20 09:08:18", "203.173.215.137", "", "0", "/wp-admin/admin-ajax.php", "http://www.infinitymarketing.co.nz/wp-admin/admin.php?page=duplicator&tab=new3", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1403", "brute_force", "Invalid Login Attempt", "5", "2016-12-20 22:39:55", "2016-12-20 09:39:55", "82.181.35.68", "infinitymarketing", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1404", "brute_force", "Invalid Login Attempt", "5", "2016-12-20 22:52:31", "2016-12-20 09:52:31", "41.211.165.166", "infinitymarketing", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1405", "brute_force", "Invalid Login Attempt", "5", "2016-12-20 23:01:45", "2016-12-20 10:01:45", "188.25.71.31", "infinitymarketing", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1406", "brute_force", "Invalid Login Attempt", "5", "2016-12-20 23:51:09", "2016-12-20 10:51:09", "184.168.27.192", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1407", "brute_force", "Invalid Login Attempt", "5", "2016-12-20 23:51:09", "2016-12-20 10:51:09", "184.168.27.192", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1408", "brute_force", "Invalid Login Attempt", "5", "2016-12-20 23:51:09", "2016-12-20 10:51:09", "184.168.27.192", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1409", "brute_force", "Invalid Login Attempt", "5", "2016-12-20 23:51:09", "2016-12-20 10:51:09", "184.168.27.192", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1410", "brute_force", "Invalid Login Attempt", "5", "2016-12-20 23:51:09", "2016-12-20 10:51:09", "184.168.27.192", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1411", "lockout", "Host or User Lockout", "10", "2016-12-20 23:51:09", "2016-12-20 10:51:09", "184.168.27.192", "", "0", "", "", "a:3:{s:7:\"expires\";s:19:\"2016-12-21 00:06:09\";s:11:\"expires_gmt\";s:19:\"2016-12-20 11:06:09\";s:4:\"type\";s:11:\"brute_force\";}");
INSERT INTO `wp_itsec_log` VALUES("1412", "brute_force", "Invalid Login Attempt", "5", "2016-12-20 23:53:04", "2016-12-20 10:53:04", "176.92.191.21", "infinitymarketing", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1413", "four_oh_four", "404 Error", "3", "2016-12-21 01:32:15", "2016-12-20 12:32:15", "202.47.1.190", "", "0", "/270841.BIN_AUTOSSL_CHECK_PL__.NhZg7GTU.cpaneldcv", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1414", "four_oh_four", "404 Error", "3", "2016-12-21 01:32:18", "2016-12-20 12:32:18", "202.47.1.190", "", "0", "/270841.BIN_AUTOSSL_CHECK_PL__.zUlVlGkk.cpaneldcv", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1415", "four_oh_four", "404 Error", "3", "2016-12-21 01:32:20", "2016-12-20 12:32:20", "202.47.1.190", "", "0", "/270841.BIN_AUTOSSL_CHECK_PL__.keCv1EWM.cpaneldcv", "", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1416", "brute_force", "Invalid Login Attempt", "5", "2016-12-21 01:35:15", "2016-12-20 12:35:15", "49.185.236.49", "infinitymarketing", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1417", "brute_force", "Invalid Login Attempt", "5", "2016-12-21 01:42:30", "2016-12-20 12:42:30", "173.201.196.222", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1418", "brute_force", "Invalid Login Attempt", "5", "2016-12-21 01:42:30", "2016-12-20 12:42:30", "173.201.196.222", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1419", "brute_force", "Invalid Login Attempt", "5", "2016-12-21 01:42:30", "2016-12-20 12:42:30", "173.201.196.222", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1420", "brute_force", "Invalid Login Attempt", "5", "2016-12-21 01:42:30", "2016-12-20 12:42:30", "173.201.196.222", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1421", "brute_force", "Invalid Login Attempt", "5", "2016-12-21 01:42:30", "2016-12-20 12:42:30", "173.201.196.222", "admin", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1422", "lockout", "Host or User Lockout", "10", "2016-12-21 01:42:30", "2016-12-20 12:42:30", "173.201.196.222", "", "0", "", "", "a:3:{s:7:\"expires\";s:19:\"2016-12-21 01:57:30\";s:11:\"expires_gmt\";s:19:\"2016-12-20 12:57:30\";s:4:\"type\";s:11:\"brute_force\";}");
INSERT INTO `wp_itsec_log` VALUES("1423", "brute_force", "Invalid Login Attempt", "5", "2016-12-21 03:02:28", "2016-12-20 14:02:28", "185.28.251.74", "infinitymarketing", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1424", "brute_force", "Invalid Login Attempt", "5", "2016-12-21 04:52:46", "2016-12-20 15:52:46", "123.24.242.58", "infinitymarketing", "0", "", "", "a:0:{}");
INSERT INTO `wp_itsec_log` VALUES("1425", "four_oh_four", "404 Error", "3", "2016-12-21 07:11:42", "2016-12-20 18:11:42", "49.224.211.151", "", "0", "/wp-content/uploads/2016/02/Infinity-Marketing_Logo_Lg.png", "http://www.infinitymarketing.co.nz/", "a:1:{s:12:\"query_string\";s:0:\"\";}");
INSERT INTO `wp_itsec_log` VALUES("1426", "four_oh_four", "404 Error", "3", "2016-12-21 07:15:16", "2016-12-20 18:15:16", "49.224.211.151", "", "0", "/wp-admin/admin-ajax.php", "http://www.infinitymarketing.co.nz/wp-admin/admin.php?page=duplicator&tab=new3", "a:1:{s:12:\"query_string\";s:0:\"\";}");

/* INSERT TABLE DATA: wp_itsec_temp */
INSERT INTO `wp_itsec_temp` VALUES("1916", "brute_force", "2016-12-21 01:42:30", "2016-12-20 12:42:30", NULL, NULL, "admin");
INSERT INTO `wp_itsec_temp` VALUES("1917", "brute_force", "2016-12-21 01:42:30", "2016-12-20 12:42:30", "173.201.196.222", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1918", "brute_force", "2016-12-21 01:42:30", "2016-12-20 12:42:30", NULL, NULL, "admin");
INSERT INTO `wp_itsec_temp` VALUES("1919", "brute_force", "2016-12-21 03:02:28", "2016-12-20 14:02:28", "185.28.251.74", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1920", "brute_force", "2016-12-21 03:02:28", "2016-12-20 14:02:28", NULL, NULL, "infinitymarketing");
INSERT INTO `wp_itsec_temp` VALUES("1921", "brute_force", "2016-12-21 04:52:46", "2016-12-20 15:52:46", "123.24.242.58", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1922", "brute_force", "2016-12-21 04:52:46", "2016-12-20 15:52:46", NULL, NULL, "infinitymarketing");
INSERT INTO `wp_itsec_temp` VALUES("1923", "four_oh_four", "2016-12-21 07:15:16", "2016-12-20 18:15:16", "49.224.211.151", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1915", "brute_force", "2016-12-21 01:42:30", "2016-12-20 12:42:30", "173.201.196.222", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1914", "brute_force", "2016-12-21 01:42:30", "2016-12-20 12:42:30", NULL, NULL, "admin");
INSERT INTO `wp_itsec_temp` VALUES("1913", "brute_force", "2016-12-21 01:42:30", "2016-12-20 12:42:30", "173.201.196.222", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1912", "brute_force", "2016-12-21 01:42:30", "2016-12-20 12:42:30", NULL, NULL, "admin");
INSERT INTO `wp_itsec_temp` VALUES("1911", "brute_force", "2016-12-21 01:42:30", "2016-12-20 12:42:30", "173.201.196.222", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1908", "brute_force", "2016-12-21 01:35:15", "2016-12-20 12:35:15", NULL, NULL, "infinitymarketing");
INSERT INTO `wp_itsec_temp` VALUES("1909", "brute_force", "2016-12-21 01:42:30", "2016-12-20 12:42:30", "173.201.196.222", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1910", "brute_force", "2016-12-21 01:42:30", "2016-12-20 12:42:30", NULL, NULL, "admin");
INSERT INTO `wp_itsec_temp` VALUES("1907", "brute_force", "2016-12-21 01:35:15", "2016-12-20 12:35:15", "49.185.236.49", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1906", "four_oh_four", "2016-12-21 01:32:20", "2016-12-20 12:32:20", "202.47.1.190", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1905", "four_oh_four", "2016-12-21 01:32:18", "2016-12-20 12:32:18", "202.47.1.190", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1904", "four_oh_four", "2016-12-21 01:32:15", "2016-12-20 12:32:15", "202.47.1.190", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1903", "brute_force", "2016-12-20 23:53:04", "2016-12-20 10:53:04", NULL, NULL, "infinitymarketing");
INSERT INTO `wp_itsec_temp` VALUES("1902", "brute_force", "2016-12-20 23:53:04", "2016-12-20 10:53:04", "176.92.191.21", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1901", "brute_force", "2016-12-20 23:51:09", "2016-12-20 10:51:09", NULL, NULL, "admin");
INSERT INTO `wp_itsec_temp` VALUES("1900", "brute_force", "2016-12-20 23:51:09", "2016-12-20 10:51:09", "184.168.27.192", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1899", "brute_force", "2016-12-20 23:51:09", "2016-12-20 10:51:09", NULL, NULL, "admin");
INSERT INTO `wp_itsec_temp` VALUES("1898", "brute_force", "2016-12-20 23:51:09", "2016-12-20 10:51:09", "184.168.27.192", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1897", "brute_force", "2016-12-20 23:51:09", "2016-12-20 10:51:09", NULL, NULL, "admin");
INSERT INTO `wp_itsec_temp` VALUES("1896", "brute_force", "2016-12-20 23:51:09", "2016-12-20 10:51:09", "184.168.27.192", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1895", "brute_force", "2016-12-20 23:51:09", "2016-12-20 10:51:09", NULL, NULL, "admin");
INSERT INTO `wp_itsec_temp` VALUES("1894", "brute_force", "2016-12-20 23:51:09", "2016-12-20 10:51:09", "184.168.27.192", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1893", "brute_force", "2016-12-20 23:51:09", "2016-12-20 10:51:09", NULL, NULL, "admin");
INSERT INTO `wp_itsec_temp` VALUES("1892", "brute_force", "2016-12-20 23:51:09", "2016-12-20 10:51:09", "184.168.27.192", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1891", "brute_force", "2016-12-20 23:01:45", "2016-12-20 10:01:45", NULL, NULL, "infinitymarketing");
INSERT INTO `wp_itsec_temp` VALUES("1890", "brute_force", "2016-12-20 23:01:45", "2016-12-20 10:01:45", "188.25.71.31", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1889", "brute_force", "2016-12-20 22:52:31", "2016-12-20 09:52:31", NULL, NULL, "infinitymarketing");
INSERT INTO `wp_itsec_temp` VALUES("1888", "brute_force", "2016-12-20 22:52:31", "2016-12-20 09:52:31", "41.211.165.166", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1887", "brute_force", "2016-12-20 22:39:55", "2016-12-20 09:39:55", NULL, NULL, "infinitymarketing");
INSERT INTO `wp_itsec_temp` VALUES("1886", "brute_force", "2016-12-20 22:39:55", "2016-12-20 09:39:55", "82.181.35.68", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1885", "four_oh_four", "2016-12-20 22:08:18", "2016-12-20 09:08:18", "203.173.215.137", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1884", "four_oh_four", "2016-12-20 22:05:24", "2016-12-20 09:05:24", "203.173.215.137", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1883", "brute_force", "2016-12-20 21:41:18", "2016-12-20 08:41:18", NULL, NULL, "infinitymarketing");
INSERT INTO `wp_itsec_temp` VALUES("1882", "brute_force", "2016-12-20 21:41:18", "2016-12-20 08:41:18", "84.47.38.80", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1881", "brute_force", "2016-12-20 21:27:02", "2016-12-20 08:27:02", NULL, NULL, "ftp");
INSERT INTO `wp_itsec_temp` VALUES("1880", "brute_force", "2016-12-20 21:27:02", "2016-12-20 08:27:02", "185.57.29.107", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1879", "brute_force", "2016-12-20 21:26:59", "2016-12-20 08:26:59", NULL, NULL, "test");
INSERT INTO `wp_itsec_temp` VALUES("1878", "brute_force", "2016-12-20 21:26:59", "2016-12-20 08:26:59", "185.57.29.107", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1877", "brute_force", "2016-12-20 21:26:57", "2016-12-20 08:26:57", NULL, NULL, "admin");
INSERT INTO `wp_itsec_temp` VALUES("1876", "brute_force", "2016-12-20 21:26:57", "2016-12-20 08:26:57", "185.57.29.107", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1875", "brute_force", "2016-12-20 21:26:54", "2016-12-20 08:26:54", NULL, NULL, "infinitymarketing.co.nz");
INSERT INTO `wp_itsec_temp` VALUES("1874", "brute_force", "2016-12-20 21:26:54", "2016-12-20 08:26:54", "185.57.29.107", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1873", "brute_force", "2016-12-20 21:26:50", "2016-12-20 08:26:50", NULL, NULL, "test123");
INSERT INTO `wp_itsec_temp` VALUES("1870", "brute_force", "2016-12-20 20:22:52", "2016-12-20 07:22:52", "49.206.110.144", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1871", "brute_force", "2016-12-20 20:22:52", "2016-12-20 07:22:52", NULL, NULL, "infinitymarketing");
INSERT INTO `wp_itsec_temp` VALUES("1872", "brute_force", "2016-12-20 21:26:50", "2016-12-20 08:26:50", "185.57.29.107", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1869", "brute_force", "2016-12-20 19:53:16", "2016-12-20 06:53:16", NULL, NULL, "admin");
INSERT INTO `wp_itsec_temp` VALUES("1868", "brute_force", "2016-12-20 19:53:16", "2016-12-20 06:53:16", "50.62.177.143", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1866", "brute_force", "2016-12-20 19:53:16", "2016-12-20 06:53:16", "50.62.177.143", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1867", "brute_force", "2016-12-20 19:53:16", "2016-12-20 06:53:16", NULL, NULL, "admin");
INSERT INTO `wp_itsec_temp` VALUES("1864", "brute_force", "2016-12-20 19:53:16", "2016-12-20 06:53:16", "50.62.177.143", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1865", "brute_force", "2016-12-20 19:53:16", "2016-12-20 06:53:16", NULL, NULL, "admin");
INSERT INTO `wp_itsec_temp` VALUES("1862", "brute_force", "2016-12-20 19:53:16", "2016-12-20 06:53:16", "50.62.177.143", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1863", "brute_force", "2016-12-20 19:53:16", "2016-12-20 06:53:16", NULL, NULL, "admin");
INSERT INTO `wp_itsec_temp` VALUES("1859", "brute_force", "2016-12-20 19:44:40", "2016-12-20 06:44:40", NULL, NULL, "www");
INSERT INTO `wp_itsec_temp` VALUES("1860", "brute_force", "2016-12-20 19:53:16", "2016-12-20 06:53:16", "50.62.177.143", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1861", "brute_force", "2016-12-20 19:53:16", "2016-12-20 06:53:16", NULL, NULL, "admin");
INSERT INTO `wp_itsec_temp` VALUES("1858", "brute_force", "2016-12-20 19:44:40", "2016-12-20 06:44:40", "117.244.103.245", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1857", "brute_force", "2016-12-20 19:44:27", "2016-12-20 06:44:27", NULL, NULL, "www");
INSERT INTO `wp_itsec_temp` VALUES("1856", "brute_force", "2016-12-20 19:44:27", "2016-12-20 06:44:27", "112.65.168.126", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1817", "brute_force", "2016-12-20 13:06:31", "2016-12-20 00:06:31", "185.27.217.17", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1818", "brute_force", "2016-12-20 13:06:31", "2016-12-20 00:06:31", NULL, NULL, "infinitymarketing");
INSERT INTO `wp_itsec_temp` VALUES("1855", "brute_force", "2016-12-20 19:43:29", "2016-12-20 06:43:29", NULL, NULL, "www");
INSERT INTO `wp_itsec_temp` VALUES("1816", "four_oh_four", "2016-12-20 12:32:04", "2016-12-19 23:32:04", "185.65.134.79", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1815", "four_oh_four", "2016-12-20 12:31:59", "2016-12-19 23:31:59", "185.65.134.79", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1814", "four_oh_four", "2016-12-20 12:31:57", "2016-12-19 23:31:57", "185.65.134.79", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1813", "four_oh_four", "2016-12-20 12:31:54", "2016-12-19 23:31:54", "185.65.134.79", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1812", "four_oh_four", "2016-12-20 12:31:50", "2016-12-19 23:31:50", "185.65.134.79", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1811", "brute_force", "2016-12-20 11:35:34", "2016-12-19 22:35:34", NULL, NULL, "infinitymarketing");
INSERT INTO `wp_itsec_temp` VALUES("1810", "brute_force", "2016-12-20 11:35:34", "2016-12-19 22:35:34", "103.47.133.7", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1809", "brute_force", "2016-12-20 11:05:10", "2016-12-19 22:05:10", NULL, NULL, "infinitymarketing");
INSERT INTO `wp_itsec_temp` VALUES("1807", "brute_force", "2016-12-20 09:18:13", "2016-12-19 20:18:13", NULL, NULL, "infinitymarketing");
INSERT INTO `wp_itsec_temp` VALUES("1808", "brute_force", "2016-12-20 11:05:10", "2016-12-19 22:05:10", "109.67.209.214", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1806", "brute_force", "2016-12-20 09:18:13", "2016-12-19 20:18:13", "89.80.26.166", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1805", "brute_force", "2016-12-20 09:17:21", "2016-12-19 20:17:21", NULL, NULL, "infinitymarketing");
INSERT INTO `wp_itsec_temp` VALUES("1802", "brute_force", "2016-12-20 09:17:13", "2016-12-19 20:17:13", "188.135.53.53", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1803", "brute_force", "2016-12-20 09:17:13", "2016-12-19 20:17:13", NULL, NULL, "infinitymarketing");
INSERT INTO `wp_itsec_temp` VALUES("1804", "brute_force", "2016-12-20 09:17:21", "2016-12-19 20:17:21", "188.135.53.53", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1801", "brute_force", "2016-12-20 07:34:13", "2016-12-19 18:34:13", NULL, NULL, "infinitymarketing");
INSERT INTO `wp_itsec_temp` VALUES("1799", "brute_force", "2016-12-20 07:22:58", "2016-12-19 18:22:58", NULL, NULL, "infinitymarketing");
INSERT INTO `wp_itsec_temp` VALUES("1800", "brute_force", "2016-12-20 07:34:13", "2016-12-19 18:34:13", "178.91.39.95", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1798", "brute_force", "2016-12-20 07:22:58", "2016-12-19 18:22:58", "78.58.168.152", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1796", "brute_force", "2016-12-20 07:21:47", "2016-12-19 18:21:47", "124.120.207.156", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1797", "brute_force", "2016-12-20 07:21:47", "2016-12-19 18:21:47", NULL, NULL, "infinitymarketing");
INSERT INTO `wp_itsec_temp` VALUES("1795", "brute_force", "2016-12-20 07:21:44", "2016-12-19 18:21:44", NULL, NULL, "infinitymarketing");
INSERT INTO `wp_itsec_temp` VALUES("1854", "brute_force", "2016-12-20 19:43:29", "2016-12-20 06:43:29", "122.3.127.124", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1853", "brute_force", "2016-12-20 19:43:27", "2016-12-20 06:43:27", NULL, NULL, "www");
INSERT INTO `wp_itsec_temp` VALUES("1852", "brute_force", "2016-12-20 19:43:27", "2016-12-20 06:43:27", "122.3.127.124", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1851", "brute_force", "2016-12-20 19:43:26", "2016-12-20 06:43:26", NULL, NULL, "www");
INSERT INTO `wp_itsec_temp` VALUES("1850", "brute_force", "2016-12-20 19:43:26", "2016-12-20 06:43:26", "122.3.127.124", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1849", "brute_force", "2016-12-20 19:43:24", "2016-12-20 06:43:24", NULL, NULL, "www");
INSERT INTO `wp_itsec_temp` VALUES("1848", "brute_force", "2016-12-20 19:43:24", "2016-12-20 06:43:24", "122.3.127.124", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1847", "brute_force", "2016-12-20 19:43:20", "2016-12-20 06:43:20", NULL, NULL, "www");
INSERT INTO `wp_itsec_temp` VALUES("1846", "brute_force", "2016-12-20 19:43:20", "2016-12-20 06:43:20", "195.189.17.216", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1845", "four_oh_four", "2016-12-20 19:43:18", "2016-12-20 06:43:18", "195.189.17.216", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1844", "four_oh_four", "2016-12-20 19:43:15", "2016-12-20 06:43:15", "195.189.17.216", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1843", "four_oh_four", "2016-12-20 19:43:13", "2016-12-20 06:43:13", "195.189.17.216", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1842", "four_oh_four", "2016-12-20 19:43:11", "2016-12-20 06:43:11", "195.189.17.216", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1841", "four_oh_four", "2016-12-20 19:43:09", "2016-12-20 06:43:09", "195.189.17.216", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1840", "four_oh_four", "2016-12-20 19:43:06", "2016-12-20 06:43:06", "195.189.17.216", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1839", "four_oh_four", "2016-12-20 19:43:04", "2016-12-20 06:43:04", "195.189.17.216", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1838", "four_oh_four", "2016-12-20 19:42:57", "2016-12-20 06:42:57", "110.36.45.106", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1837", "four_oh_four", "2016-12-20 19:42:53", "2016-12-20 06:42:53", "110.36.45.106", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1836", "brute_force", "2016-12-20 19:17:22", "2016-12-20 06:17:22", NULL, NULL, "infinitymarketing");
INSERT INTO `wp_itsec_temp` VALUES("1835", "brute_force", "2016-12-20 19:17:22", "2016-12-20 06:17:22", "94.26.26.35", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1834", "four_oh_four", "2016-12-20 18:24:40", "2016-12-20 05:24:40", "49.224.231.13", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1833", "four_oh_four", "2016-12-20 16:44:05", "2016-12-20 03:44:05", "122.59.80.126", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1832", "brute_force", "2016-12-20 15:30:25", "2016-12-20 02:30:25", NULL, NULL, "admin");
INSERT INTO `wp_itsec_temp` VALUES("1831", "brute_force", "2016-12-20 15:30:25", "2016-12-20 02:30:25", "50.62.177.143", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1830", "brute_force", "2016-12-20 15:30:25", "2016-12-20 02:30:25", NULL, NULL, "admin");
INSERT INTO `wp_itsec_temp` VALUES("1829", "brute_force", "2016-12-20 15:30:25", "2016-12-20 02:30:25", "50.62.177.143", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1828", "brute_force", "2016-12-20 15:30:25", "2016-12-20 02:30:25", NULL, NULL, "admin");
INSERT INTO `wp_itsec_temp` VALUES("1827", "brute_force", "2016-12-20 15:30:25", "2016-12-20 02:30:25", "50.62.177.143", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1826", "brute_force", "2016-12-20 15:30:25", "2016-12-20 02:30:25", NULL, NULL, "admin");
INSERT INTO `wp_itsec_temp` VALUES("1825", "brute_force", "2016-12-20 15:30:25", "2016-12-20 02:30:25", "50.62.177.143", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1824", "brute_force", "2016-12-20 15:30:25", "2016-12-20 02:30:25", NULL, NULL, "admin");
INSERT INTO `wp_itsec_temp` VALUES("1823", "brute_force", "2016-12-20 15:30:25", "2016-12-20 02:30:25", "50.62.177.143", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1822", "brute_force", "2016-12-20 15:21:02", "2016-12-20 02:21:02", NULL, NULL, "infinitymarketing");
INSERT INTO `wp_itsec_temp` VALUES("1821", "brute_force", "2016-12-20 15:21:02", "2016-12-20 02:21:02", "81.193.38.31", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1820", "brute_force", "2016-12-20 14:28:36", "2016-12-20 01:28:36", NULL, NULL, "infinitymarketing");
INSERT INTO `wp_itsec_temp` VALUES("1819", "brute_force", "2016-12-20 14:28:36", "2016-12-20 01:28:36", "187.190.157.133", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1789", "brute_force", "2016-12-20 05:56:02", "2016-12-19 16:56:02", NULL, NULL, "infinitymarketing");
INSERT INTO `wp_itsec_temp` VALUES("1790", "brute_force", "2016-12-20 06:57:14", "2016-12-19 17:57:14", "188.171.252.163", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1791", "brute_force", "2016-12-20 06:57:14", "2016-12-19 17:57:14", NULL, NULL, "infinitymarketing");
INSERT INTO `wp_itsec_temp` VALUES("1792", "brute_force", "2016-12-20 07:03:46", "2016-12-19 18:03:46", "91.21.57.68", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1793", "brute_force", "2016-12-20 07:03:46", "2016-12-19 18:03:46", NULL, NULL, "infinitymarketing");
INSERT INTO `wp_itsec_temp` VALUES("1794", "brute_force", "2016-12-20 07:21:44", "2016-12-19 18:21:44", "124.120.207.156", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1787", "brute_force", "2016-12-20 03:47:06", "2016-12-19 14:47:06", NULL, NULL, "admin");
INSERT INTO `wp_itsec_temp` VALUES("1788", "brute_force", "2016-12-20 05:56:02", "2016-12-19 16:56:02", "94.254.226.133", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1785", "brute_force", "2016-12-20 03:47:06", "2016-12-19 14:47:06", NULL, NULL, "admin");
INSERT INTO `wp_itsec_temp` VALUES("1786", "brute_force", "2016-12-20 03:47:06", "2016-12-19 14:47:06", "178.33.228.61", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1783", "brute_force", "2016-12-20 03:47:06", "2016-12-19 14:47:06", NULL, NULL, "admin");
INSERT INTO `wp_itsec_temp` VALUES("1784", "brute_force", "2016-12-20 03:47:06", "2016-12-19 14:47:06", "178.33.228.61", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1782", "brute_force", "2016-12-20 03:47:06", "2016-12-19 14:47:06", "178.33.228.61", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1781", "brute_force", "2016-12-20 03:47:06", "2016-12-19 14:47:06", NULL, NULL, "admin");
INSERT INTO `wp_itsec_temp` VALUES("1780", "brute_force", "2016-12-20 03:47:06", "2016-12-19 14:47:06", "178.33.228.61", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1779", "brute_force", "2016-12-20 03:47:06", "2016-12-19 14:47:06", NULL, NULL, "admin");
INSERT INTO `wp_itsec_temp` VALUES("1777", "brute_force", "2016-12-20 03:18:05", "2016-12-19 14:18:05", NULL, NULL, "infinitymarketing");
INSERT INTO `wp_itsec_temp` VALUES("1778", "brute_force", "2016-12-20 03:47:06", "2016-12-19 14:47:06", "178.33.228.61", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1776", "brute_force", "2016-12-20 03:18:05", "2016-12-19 14:18:05", "153.133.166.186", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1774", "brute_force", "2016-12-20 03:05:18", "2016-12-19 14:05:18", "2.114.231.106", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1775", "brute_force", "2016-12-20 03:05:18", "2016-12-19 14:05:18", NULL, NULL, "infinitymarketing");
INSERT INTO `wp_itsec_temp` VALUES("1772", "brute_force", "2016-12-19 17:08:56", "2016-12-19 04:08:56", "187.255.71.38", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1773", "brute_force", "2016-12-19 17:08:56", "2016-12-19 04:08:56", NULL, NULL, "infinitymarketing");
INSERT INTO `wp_itsec_temp` VALUES("1770", "brute_force", "2016-12-19 15:21:59", "2016-12-19 02:21:59", "99.240.49.14", NULL, NULL);
INSERT INTO `wp_itsec_temp` VALUES("1771", "brute_force", "2016-12-19 15:21:59", "2016-12-19 02:21:59", NULL, NULL, "infinitymarketing");

/* INSERT TABLE DATA: wp_links */
INSERT INTO `wp_links` VALUES("1", "http://codex.wordpress.org/", "Documentation", "", "", "", "Y", "1", "0", "0000-00-00 00:00:00", "", "", "");
INSERT INTO `wp_links` VALUES("2", "http://wordpress.org/development/", "WordPress Blog", "", "", "", "Y", "1", "0", "0000-00-00 00:00:00", "", "", "http://wordpress.org/development/feed/");
INSERT INTO `wp_links` VALUES("3", "http://wordpress.org/extend/ideas/", "Suggest Ideas", "", "", "", "Y", "1", "0", "0000-00-00 00:00:00", "", "", "");
INSERT INTO `wp_links` VALUES("4", "http://wordpress.org/support/", "Support Forum", "", "", "", "Y", "1", "0", "0000-00-00 00:00:00", "", "", "");
INSERT INTO `wp_links` VALUES("5", "http://wordpress.org/extend/plugins/", "Plugins", "", "", "", "Y", "1", "0", "0000-00-00 00:00:00", "", "", "");
INSERT INTO `wp_links` VALUES("6", "http://wordpress.org/extend/themes/", "Themes", "", "", "", "Y", "1", "0", "0000-00-00 00:00:00", "", "", "");
INSERT INTO `wp_links` VALUES("7", "http://planet.wordpress.org/", "WordPress Planet", "", "", "", "Y", "1", "0", "0000-00-00 00:00:00", "", "", "");

/* INSERT TABLE DATA: wp_options */
INSERT INTO `wp_options` VALUES("1", "siteurl", "http://www.infinitymarketing.co.nz", "yes");
INSERT INTO `wp_options` VALUES("2", "blogname", "Infinity Marketing", "yes");
INSERT INTO `wp_options` VALUES("3", "blogdescription", "Small business marketing consultant", "yes");
INSERT INTO `wp_options` VALUES("4", "users_can_register", "0", "yes");
INSERT INTO `wp_options` VALUES("5", "admin_email", "candiclebaker@gmail.com", "yes");
INSERT INTO `wp_options` VALUES("6", "start_of_week", "1", "yes");
INSERT INTO `wp_options` VALUES("7", "use_balanceTags", "0", "yes");
INSERT INTO `wp_options` VALUES("8", "use_smilies", "1", "yes");
INSERT INTO `wp_options` VALUES("9", "require_name_email", "1", "yes");
INSERT INTO `wp_options` VALUES("10", "comments_notify", "1", "yes");
INSERT INTO `wp_options` VALUES("11", "posts_per_rss", "10", "yes");
INSERT INTO `wp_options` VALUES("12", "rss_use_excerpt", "0", "yes");
INSERT INTO `wp_options` VALUES("13", "mailserver_url", "mail.example.com", "yes");
INSERT INTO `wp_options` VALUES("14", "mailserver_login", "login@example.com", "yes");
INSERT INTO `wp_options` VALUES("15", "mailserver_pass", "password", "yes");
INSERT INTO `wp_options` VALUES("16", "mailserver_port", "110", "yes");
INSERT INTO `wp_options` VALUES("17", "default_category", "1", "yes");
INSERT INTO `wp_options` VALUES("18", "default_comment_status", "open", "yes");
INSERT INTO `wp_options` VALUES("19", "default_ping_status", "open", "yes");
INSERT INTO `wp_options` VALUES("20", "default_pingback_flag", "0", "yes");
INSERT INTO `wp_options` VALUES("22", "posts_per_page", "10", "yes");
INSERT INTO `wp_options` VALUES("23", "date_format", "j F, Y", "yes");
INSERT INTO `wp_options` VALUES("24", "time_format", "g:i a", "yes");
INSERT INTO `wp_options` VALUES("25", "links_updated_date_format", "F j, Y g:i a", "yes");
INSERT INTO `wp_options` VALUES("29", "comment_moderation", "0", "yes");
INSERT INTO `wp_options` VALUES("30", "moderation_notify", "1", "yes");
INSERT INTO `wp_options` VALUES("31", "permalink_structure", "/%postname%/", "yes");
INSERT INTO `wp_options` VALUES("33", "hack_file", "0", "yes");
INSERT INTO `wp_options` VALUES("34", "blog_charset", "UTF-8", "yes");
INSERT INTO `wp_options` VALUES("35", "moderation_keys", "", "no");
INSERT INTO `wp_options` VALUES("36", "active_plugins", "a:10:{i:0;s:41:\"better-wp-security/better-wp-security.php\";i:1;s:15:\"bloom/bloom.php\";i:2;s:25:\"duplicator/duplicator.php\";i:3;s:29:\"easy-wp-smtp/easy-wp-smtp.php\";i:4;s:45:\"limit-login-attempts/limit-login-attempts.php\";i:5;s:19:\"monarch/monarch.php\";i:6;s:41:\"page-or-post-clone/page-or-post-clone.php\";i:7;s:48:\"ultimate-landing-page/Ultimate_Landing_Pages.php\";i:8;s:24:\"wordpress-seo/wp-seo.php\";i:9;s:39:\"wp-facebook-pixel/wp-facebook-pixel.php\";}", "yes");
INSERT INTO `wp_options` VALUES("37", "home", "http://www.infinitymarketing.co.nz", "yes");
INSERT INTO `wp_options` VALUES("38", "category_base", "", "yes");
INSERT INTO `wp_options` VALUES("39", "ping_sites", "http://rpc.pingomatic.com/", "yes");
INSERT INTO `wp_options` VALUES("41", "comment_max_links", "2", "yes");
INSERT INTO `wp_options` VALUES("42", "gmt_offset", "", "yes");
INSERT INTO `wp_options` VALUES("43", "default_email_category", "1", "yes");
INSERT INTO `wp_options` VALUES("44", "recently_edited", "a:3:{i:0;s:65:\"/home/candiclebaker/public_html/wp-content/themes/Divi/footer.php\";i:1;s:64:\"/home/candiclebaker/public_html/wp-content/themes/Divi/style.css\";i:3;s:0:\"\";}", "no");
INSERT INTO `wp_options` VALUES("45", "template", "Divi", "yes");
INSERT INTO `wp_options` VALUES("46", "stylesheet", "infinity-marketing", "yes");
INSERT INTO `wp_options` VALUES("47", "comment_whitelist", "1", "yes");
INSERT INTO `wp_options` VALUES("48", "blacklist_keys", "", "no");
INSERT INTO `wp_options` VALUES("49", "comment_registration", "0", "yes");
INSERT INTO `wp_options` VALUES("51", "html_type", "text/html", "yes");
INSERT INTO `wp_options` VALUES("52", "use_trackback", "0", "yes");
INSERT INTO `wp_options` VALUES("53", "default_role", "subscriber", "yes");
INSERT INTO `wp_options` VALUES("54", "db_version", "37965", "yes");
INSERT INTO `wp_options` VALUES("55", "uploads_use_yearmonth_folders", "1", "yes");
INSERT INTO `wp_options` VALUES("56", "upload_path", "/home/candiclebaker/public_html/wp-content/uploads", "yes");
INSERT INTO `wp_options` VALUES("57", "blog_public", "1", "yes");
INSERT INTO `wp_options` VALUES("58", "default_link_category", "2", "yes");
INSERT INTO `wp_options` VALUES("59", "show_on_front", "page", "yes");
INSERT INTO `wp_options` VALUES("60", "tag_base", "", "yes");
INSERT INTO `wp_options` VALUES("61", "show_avatars", "1", "yes");
INSERT INTO `wp_options` VALUES("62", "avatar_rating", "G", "yes");
INSERT INTO `wp_options` VALUES("63", "upload_url_path", "", "yes");
INSERT INTO `wp_options` VALUES("64", "thumbnail_size_w", "150", "yes");
INSERT INTO `wp_options` VALUES("65", "thumbnail_size_h", "150", "yes");
INSERT INTO `wp_options` VALUES("66", "thumbnail_crop", "1", "yes");
INSERT INTO `wp_options` VALUES("67", "medium_size_w", "300", "yes");
INSERT INTO `wp_options` VALUES("68", "medium_size_h", "300", "yes");
INSERT INTO `wp_options` VALUES("69", "avatar_default", "mystery", "yes");
INSERT INTO `wp_options` VALUES("72", "large_size_w", "1024", "yes");
INSERT INTO `wp_options` VALUES("73", "large_size_h", "1024", "yes");
INSERT INTO `wp_options` VALUES("74", "image_default_link_type", "", "yes");
INSERT INTO `wp_options` VALUES("75", "image_default_size", "", "yes");
INSERT INTO `wp_options` VALUES("76", "image_default_align", "", "yes");
INSERT INTO `wp_options` VALUES("77", "close_comments_for_old_posts", "0", "yes");
INSERT INTO `wp_options` VALUES("78", "close_comments_days_old", "14", "yes");
INSERT INTO `wp_options` VALUES("79", "thread_comments", "1", "yes");
INSERT INTO `wp_options` VALUES("80", "thread_comments_depth", "5", "yes");
INSERT INTO `wp_options` VALUES("81", "page_comments", "0", "yes");
INSERT INTO `wp_options` VALUES("82", "comments_per_page", "50", "yes");
INSERT INTO `wp_options` VALUES("83", "default_comments_page", "newest", "yes");
INSERT INTO `wp_options` VALUES("84", "comment_order", "asc", "yes");
INSERT INTO `wp_options` VALUES("85", "sticky_posts", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("86", "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");
INSERT INTO `wp_options` VALUES("87", "widget_text", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("88", "widget_rss", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("89", "timezone_string", "Pacific/Auckland", "yes");
INSERT INTO `wp_options` VALUES("91", "embed_size_w", "", "yes");
INSERT INTO `wp_options` VALUES("92", "embed_size_h", "600", "yes");
INSERT INTO `wp_options` VALUES("93", "page_for_posts", "41", "yes");
INSERT INTO `wp_options` VALUES("94", "page_on_front", "37", "yes");
INSERT INTO `wp_options` VALUES("95", "wp_user_roles", "a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:68:{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:14:\"frm_view_forms\";b:1;s:14:\"frm_edit_forms\";b:1;s:16:\"frm_delete_forms\";b:1;s:19:\"frm_change_settings\";b:1;s:16:\"frm_view_entries\";b:1;s:18:\"frm_delete_entries\";b:1;s:15:\"wpseo_bulk_edit\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:35:{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:15:\"wpseo_bulk_edit\";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;}}}", "yes");
INSERT INTO `wp_options` VALUES("96", "widget_search", "a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("97", "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");
INSERT INTO `wp_options` VALUES("98", "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");
INSERT INTO `wp_options` VALUES("99", "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");
INSERT INTO `wp_options` VALUES("100", "widget_meta", "a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("101", "sidebars_widgets", "a:7:{s:19:\"wp_inactive_widgets\";a:2:{i:0;s:7:\"pages-3\";i:1;s:17:\"recent-comments-2\";}s:9:\"sidebar-1\";a:5:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:10:\"archives-2\";i:3;s:12:\"categories-2\";i:4;s:6:\"meta-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}s:9:\"sidebar-4\";a:0:{}s:9:\"sidebar-5\";a:0:{}s:13:\"array_version\";i:3;}", "yes");
INSERT INTO `wp_options` VALUES("206", "et_divi", "a:138:{s:23:\"2_5_flush_rewrite_rules\";s:4:\"done\";s:30:\"divi_2_4_documentation_message\";s:9:\"triggered\";s:15:\"divi_1_3_images\";s:7:\"checked\";s:12:\"header_style\";s:4:\"left\";s:12:\"vertical_nav\";b:0;s:9:\"divi_logo\";s:74:\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/03/Infinity.png\";s:12:\"divi_favicon\";s:92:\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity-Marketing_Logo_Lg.png\";s:14:\"divi_fixed_nav\";s:2:\"on\";s:26:\"divi_gallery_layout_enable\";s:5:\"false\";s:15:\"divi_grab_image\";s:5:\"false\";s:15:\"divi_blog_style\";s:5:\"false\";s:22:\"divi_shop_page_sidebar\";s:16:\"et_right_sidebar\";s:22:\"divi_mailchimp_api_key\";s:36:\"f3a50738d76b1ad725249daca8f297c6-us2\";s:31:\"divi_regenerate_mailchimp_lists\";s:2:\"on\";s:28:\"divi_regenerate_aweber_lists\";s:5:\"false\";s:23:\"divi_show_facebook_icon\";s:2:\"on\";s:22:\"divi_show_twitter_icon\";s:5:\"false\";s:21:\"divi_show_google_icon\";s:5:\"false\";s:18:\"divi_show_rss_icon\";s:2:\"on\";s:17:\"divi_facebook_url\";s:47:\"http://www.facebook.com/infinitymarketing.co.nz\";s:16:\"divi_twitter_url\";s:1:\"#\";s:15:\"divi_google_url\";s:1:\"#\";s:12:\"divi_rss_url\";s:0:\"\";s:34:\"divi_woocommerce_archive_num_posts\";i:9;s:17:\"divi_catnum_posts\";i:6;s:21:\"divi_archivenum_posts\";i:5;s:20:\"divi_searchnum_posts\";i:5;s:17:\"divi_tagnum_posts\";i:5;s:16:\"divi_date_format\";s:6:\"M j, Y\";s:16:\"divi_use_excerpt\";s:5:\"false\";s:26:\"divi_responsive_shortcodes\";s:2:\"on\";s:33:\"divi_gf_enable_all_character_sets\";s:5:\"false\";s:16:\"divi_back_to_top\";s:2:\"on\";s:18:\"divi_smooth_scroll\";s:5:\"false\";s:25:\"divi_disable_translations\";s:5:\"false\";s:15:\"divi_custom_css\";s:0:\"\";s:21:\"divi_enable_dropdowns\";s:2:\"on\";s:14:\"divi_home_link\";s:2:\"on\";s:15:\"divi_sort_pages\";s:10:\"post_title\";s:15:\"divi_order_page\";s:3:\"asc\";s:22:\"divi_tiers_shown_pages\";i:3;s:32:\"divi_enable_dropdowns_categories\";s:2:\"on\";s:21:\"divi_categories_empty\";s:2:\"on\";s:27:\"divi_tiers_shown_categories\";i:3;s:13:\"divi_sort_cat\";s:4:\"name\";s:14:\"divi_order_cat\";s:3:\"asc\";s:20:\"divi_disable_toptier\";s:5:\"false\";s:14:\"divi_postinfo2\";a:4:{i:0;s:6:\"author\";i:1;s:4:\"date\";i:2;s:10:\"categories\";i:3;s:8:\"comments\";}s:22:\"divi_show_postcomments\";s:2:\"on\";s:15:\"divi_thumbnails\";s:2:\"on\";s:20:\"divi_page_thumbnails\";s:5:\"false\";s:23:\"divi_show_pagescomments\";s:5:\"false\";s:14:\"divi_postinfo1\";a:3:{i:0;s:6:\"author\";i:1;s:4:\"date\";i:2;s:10:\"categories\";}s:21:\"divi_thumbnails_index\";s:2:\"on\";s:19:\"divi_seo_home_title\";s:5:\"false\";s:25:\"divi_seo_home_description\";s:5:\"false\";s:22:\"divi_seo_home_keywords\";s:5:\"false\";s:23:\"divi_seo_home_canonical\";s:5:\"false\";s:23:\"divi_seo_home_titletext\";s:0:\"\";s:29:\"divi_seo_home_descriptiontext\";s:0:\"\";s:26:\"divi_seo_home_keywordstext\";s:0:\"\";s:18:\"divi_seo_home_type\";s:27:\"BlogName | Blog description\";s:22:\"divi_seo_home_separate\";s:3:\" | \";s:21:\"divi_seo_single_title\";s:5:\"false\";s:27:\"divi_seo_single_description\";s:5:\"false\";s:24:\"divi_seo_single_keywords\";s:5:\"false\";s:25:\"divi_seo_single_canonical\";s:5:\"false\";s:27:\"divi_seo_single_field_title\";s:9:\"seo_title\";s:33:\"divi_seo_single_field_description\";s:15:\"seo_description\";s:30:\"divi_seo_single_field_keywords\";s:12:\"seo_keywords\";s:20:\"divi_seo_single_type\";s:21:\"Post title | BlogName\";s:24:\"divi_seo_single_separate\";s:3:\" | \";s:24:\"divi_seo_index_canonical\";s:5:\"false\";s:26:\"divi_seo_index_description\";s:5:\"false\";s:19:\"divi_seo_index_type\";s:24:\"Category name | BlogName\";s:23:\"divi_seo_index_separate\";s:3:\" | \";s:28:\"divi_integrate_header_enable\";s:2:\"on\";s:26:\"divi_integrate_body_enable\";s:2:\"on\";s:31:\"divi_integrate_singletop_enable\";s:2:\"on\";s:34:\"divi_integrate_singlebottom_enable\";s:2:\"on\";s:21:\"divi_integration_head\";s:763:\"<meta name=\"google-site-verification\" content=\"HDiBxbD_lqGQ-JcryGEha-hiApdbT2MtapJ6-gFAAcs\" />\n<!-- Facebook Pixel Code -->\n<script>\n!function(f,b,e,v,n,t,s){if(f.fbq)return;n=f.fbq=function(){n.callMethod?\nn.callMethod.apply(n,arguments):n.queue.push(arguments)};if(!f._fbq)f._fbq=n;\nn.push=n;n.loaded=!0;n.version=\'2.0\';n.queue=[];t=b.createElement(e);t.async=!0;\nt.src=v;s=b.getElementsByTagName(e)[0];s.parentNode.insertBefore(t,s)}(window,\ndocument,\'script\',\'https://connect.facebook.net/en_US/fbevents.js\');\n\nfbq(\'init\', \'1738172466400382\');\nfbq(\'track\', \"PageView\");</script>\n<noscript><img height=\"1\" width=\"1\" style=\"display:none\"\nsrc=\"https://www.facebook.com/tr?id=1738172466400382&ev=PageView&noscript=1\"\n/></noscript>\n<!-- End Facebook Pixel Code -->\";s:21:\"divi_integration_body\";s:408:\"<script>\n  (function(i,s,o,g,r,a,m){i[\'GoogleAnalyticsObject\']=r;i[r]=i[r]||function(){\n  (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),\n  m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)\n  })(window,document,\'script\',\'//www.google-analytics.com/analytics.js\',\'ga\');\n\n  ga(\'create\', \'UA-74466326-1\', \'auto\');\n  ga(\'send\', \'pageview\');\n\n</script>\";s:27:\"divi_integration_single_top\";s:0:\"\";s:30:\"divi_integration_single_bottom\";s:0:\"\";s:15:\"divi_468_enable\";s:5:\"false\";s:14:\"divi_468_image\";s:0:\"\";s:12:\"divi_468_url\";s:0:\"\";s:16:\"divi_468_adsense\";s:0:\"\";s:14:\"divi_menupages\";a:2:{i:0;i:49;i:1;i:45;}s:15:\"section_padding\";i:2;s:11:\"row_padding\";i:2;s:12:\"accent_color\";s:7:\"#009edb\";s:14:\"body_font_size\";i:15;s:16:\"body_font_height\";d:2;s:16:\"body_header_size\";i:32;s:19:\"body_header_spacing\";i:0;s:18:\"body_header_height\";d:1.1999999999999999555910790149937383830547332763671875;s:17:\"body_header_style\";s:4:\"bold\";s:12:\"heading_font\";s:9:\"Open Sans\";s:9:\"body_font\";s:9:\"Open Sans\";s:10:\"link_color\";s:7:\"#009edb\";s:10:\"font_color\";s:7:\"#666666\";s:12:\"header_color\";s:7:\"#666666\";s:8:\"hide_nav\";b:0;s:13:\"nav_fullwidth\";b:0;s:17:\"hide_primary_logo\";b:0;s:11:\"menu_height\";i:90;s:11:\"logo_height\";i:100;s:21:\"primary_nav_font_size\";i:14;s:24:\"primary_nav_font_spacing\";i:0;s:16:\"primary_nav_font\";s:9:\"Open Sans\";s:22:\"primary_nav_font_style\";s:0:\"\";s:16:\"menu_link_active\";s:7:\"#009edb\";s:31:\"primary_nav_dropdown_line_color\";s:7:\"#009edb\";s:18:\"secondary_nav_font\";s:9:\"Open Sans\";s:16:\"secondary_nav_bg\";s:7:\"#009edb\";s:25:\"secondary_nav_dropdown_bg\";s:7:\"#009edb\";s:21:\"minimized_menu_height\";i:60;s:22:\"fixed_secondary_nav_bg\";s:7:\"#009edb\";s:22:\"fixed_menu_link_active\";s:7:\"#009edb\";s:24:\"show_header_social_icons\";b:0;s:15:\"hide_fixed_logo\";b:0;s:12:\"phone_number\";s:0:\"\";s:12:\"header_email\";s:0:\"\";s:26:\"footer_widget_header_color\";s:7:\"#009edb\";s:26:\"footer_widget_bullet_color\";s:7:\"#009edb\";s:24:\"show_footer_social_icons\";b:1;s:29:\"footer_menu_active_link_color\";s:7:\"#ffffff\";s:9:\"footer_bg\";s:7:\"#888e8f\";s:22:\"footer_menu_text_color\";s:7:\"#ffffff\";s:21:\"bottom_bar_text_color\";s:7:\"#ffffff\";s:28:\"bottom_bar_social_icon_color\";s:7:\"#ffffff\";s:16:\"all_buttons_font\";s:9:\"Open Sans\";s:31:\"all_buttons_border_radius_hover\";i:3;s:25:\"3_0_flush_rewrite_rules_2\";s:4:\"done\";s:21:\"custom_footer_credits\";s:72:\"Designed by Infinity Marketing | © Copyright 2016 | All Rights Reserved\";s:18:\"divi_color_palette\";s:63:\"#000000|#ffffff|#e02b20|#e09900|#edf000|#7cda24|#0c71c3|#8300e9\";s:25:\"divi_scroll_to_anchor_fix\";s:5:\"false\";}", "yes");
INSERT INTO `wp_options` VALUES("102", "ftp_credentials", "a:3:{s:8:\"hostname\";s:9:\"localhost\";s:8:\"username\";N;s:15:\"connection_type\";s:3:\"ftp\";}", "yes");
INSERT INTO `wp_options` VALUES("103", "widget_pages", "a:2:{s:12:\"_multiwidget\";i:1;i:3;a:3:{s:5:\"title\";s:0:\"\";s:6:\"sortby\";s:10:\"menu_order\";s:7:\"exclude\";s:0:\"\";}}", "yes");
INSERT INTO `wp_options` VALUES("104", "widget_calendar", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("105", "widget_links", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("106", "widget_tag_cloud", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("107", "widget_nav_menu", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("108", "uninstall_plugins", "a:5:{s:41:\"better-wp-security/better-wp-security.php\";a:2:{i:0;s:10:\"ITSEC_Core\";i:1;s:12:\"on_uninstall\";}s:23:\"antivirus/antivirus.php\";a:2:{i:0;s:9:\"AntiVirus\";i:1;s:9:\"uninstall\";}s:50:\"quttera-web-malware-scanner/quttera_wm_scanner.php\";s:24:\"on_qtr_scanner_uninstall\";s:17:\"wpclef/wpclef.php\";a:2:{i:0;s:9:\"ClefSetup\";i:1;s:16:\"uninstall_plugin\";}s:29:\"easy-wp-smtp/easy-wp-smtp.php\";s:22:\"swpsmtp_send_uninstall\";}", "no");
INSERT INTO `wp_options` VALUES("109", "default_post_format", "0", "yes");
INSERT INTO `wp_options` VALUES("110", "link_manager_enabled", "1", "yes");
INSERT INTO `wp_options` VALUES("111", "finished_splitting_shared_terms", "1", "yes");
INSERT INTO `wp_options` VALUES("112", "site_icon", "161", "yes");
INSERT INTO `wp_options` VALUES("113", "medium_large_size_w", "768", "yes");
INSERT INTO `wp_options` VALUES("114", "medium_large_size_h", "0", "yes");
INSERT INTO `wp_options` VALUES("115", "initial_db_version", "15260", "yes");
INSERT INTO `wp_options` VALUES("119", "WPLANG", "en_NZ", "yes");
INSERT INTO `wp_options` VALUES("117", "cron", "a:9:{i:1482261157;a:1:{s:34:\"clef_wp_session_garbage_collection\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1482261932;a:1:{s:29:\"wp_session_garbage_collection\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1482275207;a:1:{s:24:\"bloom_lists_auto_refresh\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1482277625;a:3:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1482278840;a:2:{s:16:\"itsec_purge_logs\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:20:\"itsec_purge_lockouts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1482283440;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:1482284363;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1482343721;a:1:{s:24:\"akismet_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}s:7:\"version\";i:2;}", "yes");
INSERT INTO `wp_options` VALUES("118", "db_upgraded", "", "yes");
INSERT INTO `wp_options` VALUES("120", "_transient_update_plugins", "O:8:\"stdClass\":1:{s:12:\"last_checked\";i:0;}", "yes");
INSERT INTO `wp_options` VALUES("122", "_transient_update_themes", "O:8:\"stdClass\":1:{s:12:\"last_checked\";i:0;}", "yes");
INSERT INTO `wp_options` VALUES("10070", "_site_transient_timeout_theme_roots", "1482237130", "no");
INSERT INTO `wp_options` VALUES("10071", "_site_transient_theme_roots", "a:2:{s:4:\"Divi\";s:7:\"/themes\";s:18:\"infinity-marketing\";s:7:\"/themes\";}", "no");
INSERT INTO `wp_options` VALUES("147", "seed_csp4_settings_design", "a:12:{s:8:\"bg_color\";s:7:\"#fafafa\";s:8:\"bg_image\";s:0:\"\";s:8:\"bg_cover\";a:1:{i:0;s:1:\"1\";}s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:8:\"left top\";s:13:\"bg_attahcment\";s:5:\"fixed\";s:9:\"max_width\";s:0:\"\";s:10:\"text_color\";s:7:\"#666666\";s:10:\"link_color\";s:7:\"#27AE60\";s:14:\"headline_color\";s:7:\"#444444\";s:9:\"text_font\";s:6:\"_arial\";s:10:\"custom_css\";s:0:\"\";}", "yes");
INSERT INTO `wp_options` VALUES("148", "seed_csp4_settings_advanced", "a:2:{s:14:\"header_scripts\";s:0:\"\";s:14:\"footer_scripts\";s:0:\"\";}", "yes");
INSERT INTO `wp_options` VALUES("10018", "_transient_timeout_plugin_slugs", "1482345252", "no");
INSERT INTO `wp_options` VALUES("10019", "_transient_plugin_slugs", "a:14:{i:0;s:19:\"akismet/akismet.php\";i:1;s:23:\"antivirus/antivirus.php\";i:2;s:15:\"bloom/bloom.php\";i:3;s:41:\"page-or-post-clone/page-or-post-clone.php\";i:4;s:25:\"duplicator/duplicator.php\";i:5;s:29:\"easy-wp-smtp/easy-wp-smtp.php\";i:6;s:25:\"formidable/formidable.php\";i:7;s:41:\"better-wp-security/better-wp-security.php\";i:8;s:45:\"limit-login-attempts/limit-login-attempts.php\";i:9;s:19:\"monarch/monarch.php\";i:10;s:50:\"quttera-web-malware-scanner/quttera_wm_scanner.php\";i:11;s:48:\"ultimate-landing-page/Ultimate_Landing_Pages.php\";i:12;s:39:\"wp-facebook-pixel/wp-facebook-pixel.php\";i:13;s:24:\"wordpress-seo/wp-seo.php\";}", "no");
INSERT INTO `wp_options` VALUES("139", "recently_activated", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("10033", "_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a", "1482213494", "no");
INSERT INTO `wp_options` VALUES("10034", "_site_transient_poptags_40cd750bba9870f18aada2478b24840a", "a:100:{s:6:\"widget\";a:3:{s:4:\"name\";s:6:\"widget\";s:4:\"slug\";s:6:\"widget\";s:5:\"count\";s:4:\"6110\";}s:4:\"post\";a:3:{s:4:\"name\";s:4:\"Post\";s:4:\"slug\";s:4:\"post\";s:5:\"count\";s:4:\"3747\";}s:6:\"plugin\";a:3:{s:4:\"name\";s:6:\"plugin\";s:4:\"slug\";s:6:\"plugin\";s:5:\"count\";s:4:\"3738\";}s:5:\"admin\";a:3:{s:4:\"name\";s:5:\"admin\";s:4:\"slug\";s:5:\"admin\";s:5:\"count\";s:4:\"3244\";}s:5:\"posts\";a:3:{s:4:\"name\";s:5:\"posts\";s:4:\"slug\";s:5:\"posts\";s:5:\"count\";s:4:\"2869\";}s:9:\"shortcode\";a:3:{s:4:\"name\";s:9:\"shortcode\";s:4:\"slug\";s:9:\"shortcode\";s:5:\"count\";s:4:\"2546\";}s:7:\"sidebar\";a:3:{s:4:\"name\";s:7:\"sidebar\";s:4:\"slug\";s:7:\"sidebar\";s:5:\"count\";s:4:\"2229\";}s:6:\"google\";a:3:{s:4:\"name\";s:6:\"google\";s:4:\"slug\";s:6:\"google\";s:5:\"count\";s:4:\"2155\";}s:4:\"page\";a:3:{s:4:\"name\";s:4:\"page\";s:4:\"slug\";s:4:\"page\";s:5:\"count\";s:4:\"2104\";}s:7:\"twitter\";a:3:{s:4:\"name\";s:7:\"twitter\";s:4:\"slug\";s:7:\"twitter\";s:5:\"count\";s:4:\"2089\";}s:6:\"images\";a:3:{s:4:\"name\";s:6:\"images\";s:4:\"slug\";s:6:\"images\";s:5:\"count\";s:4:\"2044\";}s:11:\"woocommerce\";a:3:{s:4:\"name\";s:11:\"woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:5:\"count\";s:4:\"2025\";}s:8:\"comments\";a:3:{s:4:\"name\";s:8:\"comments\";s:4:\"slug\";s:8:\"comments\";s:5:\"count\";s:4:\"1965\";}s:5:\"image\";a:3:{s:4:\"name\";s:5:\"image\";s:4:\"slug\";s:5:\"image\";s:5:\"count\";s:4:\"1937\";}s:8:\"facebook\";a:3:{s:4:\"name\";s:8:\"Facebook\";s:4:\"slug\";s:8:\"facebook\";s:5:\"count\";s:4:\"1756\";}s:3:\"seo\";a:3:{s:4:\"name\";s:3:\"seo\";s:4:\"slug\";s:3:\"seo\";s:5:\"count\";s:4:\"1653\";}s:9:\"wordpress\";a:3:{s:4:\"name\";s:9:\"wordpress\";s:4:\"slug\";s:9:\"wordpress\";s:5:\"count\";s:4:\"1625\";}s:6:\"social\";a:3:{s:4:\"name\";s:6:\"social\";s:4:\"slug\";s:6:\"social\";s:5:\"count\";s:4:\"1469\";}s:7:\"gallery\";a:3:{s:4:\"name\";s:7:\"gallery\";s:4:\"slug\";s:7:\"gallery\";s:5:\"count\";s:4:\"1380\";}s:5:\"links\";a:3:{s:4:\"name\";s:5:\"links\";s:4:\"slug\";s:5:\"links\";s:5:\"count\";s:4:\"1299\";}s:5:\"email\";a:3:{s:4:\"name\";s:5:\"email\";s:4:\"slug\";s:5:\"email\";s:5:\"count\";s:4:\"1296\";}s:7:\"widgets\";a:3:{s:4:\"name\";s:7:\"widgets\";s:4:\"slug\";s:7:\"widgets\";s:5:\"count\";s:4:\"1152\";}s:5:\"pages\";a:3:{s:4:\"name\";s:5:\"pages\";s:4:\"slug\";s:5:\"pages\";s:5:\"count\";s:4:\"1136\";}s:9:\"ecommerce\";a:3:{s:4:\"name\";s:9:\"ecommerce\";s:4:\"slug\";s:9:\"ecommerce\";s:5:\"count\";s:4:\"1065\";}s:5:\"media\";a:3:{s:4:\"name\";s:5:\"media\";s:4:\"slug\";s:5:\"media\";s:5:\"count\";s:4:\"1027\";}s:6:\"jquery\";a:3:{s:4:\"name\";s:6:\"jquery\";s:4:\"slug\";s:6:\"jquery\";s:5:\"count\";s:4:\"1017\";}s:5:\"video\";a:3:{s:4:\"name\";s:5:\"video\";s:4:\"slug\";s:5:\"video\";s:5:\"count\";s:3:\"969\";}s:7:\"content\";a:3:{s:4:\"name\";s:7:\"content\";s:4:\"slug\";s:7:\"content\";s:5:\"count\";s:3:\"964\";}s:5:\"login\";a:3:{s:4:\"name\";s:5:\"login\";s:4:\"slug\";s:5:\"login\";s:5:\"count\";s:3:\"963\";}s:4:\"ajax\";a:3:{s:4:\"name\";s:4:\"AJAX\";s:4:\"slug\";s:4:\"ajax\";s:5:\"count\";s:3:\"932\";}s:10:\"responsive\";a:3:{s:4:\"name\";s:10:\"responsive\";s:4:\"slug\";s:10:\"responsive\";s:5:\"count\";s:3:\"929\";}s:3:\"rss\";a:3:{s:4:\"name\";s:3:\"rss\";s:4:\"slug\";s:3:\"rss\";s:5:\"count\";s:3:\"916\";}s:10:\"javascript\";a:3:{s:4:\"name\";s:10:\"javascript\";s:4:\"slug\";s:10:\"javascript\";s:5:\"count\";s:3:\"861\";}s:10:\"e-commerce\";a:3:{s:4:\"name\";s:10:\"e-commerce\";s:4:\"slug\";s:10:\"e-commerce\";s:5:\"count\";s:3:\"851\";}s:8:\"security\";a:3:{s:4:\"name\";s:8:\"security\";s:4:\"slug\";s:8:\"security\";s:5:\"count\";s:3:\"841\";}s:10:\"buddypress\";a:3:{s:4:\"name\";s:10:\"buddypress\";s:4:\"slug\";s:10:\"buddypress\";s:5:\"count\";s:3:\"821\";}s:5:\"photo\";a:3:{s:4:\"name\";s:5:\"photo\";s:4:\"slug\";s:5:\"photo\";s:5:\"count\";s:3:\"788\";}s:5:\"share\";a:3:{s:4:\"name\";s:5:\"Share\";s:4:\"slug\";s:5:\"share\";s:5:\"count\";s:3:\"783\";}s:7:\"youtube\";a:3:{s:4:\"name\";s:7:\"youtube\";s:4:\"slug\";s:7:\"youtube\";s:5:\"count\";s:3:\"783\";}s:4:\"spam\";a:3:{s:4:\"name\";s:4:\"spam\";s:4:\"slug\";s:4:\"spam\";s:5:\"count\";s:3:\"770\";}s:4:\"link\";a:3:{s:4:\"name\";s:4:\"link\";s:4:\"slug\";s:4:\"link\";s:5:\"count\";s:3:\"759\";}s:4:\"feed\";a:3:{s:4:\"name\";s:4:\"feed\";s:4:\"slug\";s:4:\"feed\";s:5:\"count\";s:3:\"751\";}s:9:\"analytics\";a:3:{s:4:\"name\";s:9:\"analytics\";s:4:\"slug\";s:9:\"analytics\";s:5:\"count\";s:3:\"749\";}s:6:\"slider\";a:3:{s:4:\"name\";s:6:\"slider\";s:4:\"slug\";s:6:\"slider\";s:5:\"count\";s:3:\"743\";}s:3:\"css\";a:3:{s:4:\"name\";s:3:\"CSS\";s:4:\"slug\";s:3:\"css\";s:5:\"count\";s:3:\"736\";}s:8:\"category\";a:3:{s:4:\"name\";s:8:\"category\";s:4:\"slug\";s:8:\"category\";s:5:\"count\";s:3:\"731\";}s:4:\"form\";a:3:{s:4:\"name\";s:4:\"form\";s:4:\"slug\";s:4:\"form\";s:5:\"count\";s:3:\"725\";}s:5:\"embed\";a:3:{s:4:\"name\";s:5:\"embed\";s:4:\"slug\";s:5:\"embed\";s:5:\"count\";s:3:\"718\";}s:6:\"search\";a:3:{s:4:\"name\";s:6:\"search\";s:4:\"slug\";s:6:\"search\";s:5:\"count\";s:3:\"718\";}s:6:\"photos\";a:3:{s:4:\"name\";s:6:\"photos\";s:4:\"slug\";s:6:\"photos\";s:5:\"count\";s:3:\"710\";}s:6:\"custom\";a:3:{s:4:\"name\";s:6:\"custom\";s:4:\"slug\";s:6:\"custom\";s:5:\"count\";s:3:\"701\";}s:9:\"slideshow\";a:3:{s:4:\"name\";s:9:\"slideshow\";s:4:\"slug\";s:9:\"slideshow\";s:5:\"count\";s:3:\"656\";}s:4:\"menu\";a:3:{s:4:\"name\";s:4:\"menu\";s:4:\"slug\";s:4:\"menu\";s:5:\"count\";s:3:\"652\";}s:6:\"button\";a:3:{s:4:\"name\";s:6:\"button\";s:4:\"slug\";s:6:\"button\";s:5:\"count\";s:3:\"640\";}s:5:\"stats\";a:3:{s:4:\"name\";s:5:\"stats\";s:4:\"slug\";s:5:\"stats\";s:5:\"count\";s:3:\"635\";}s:5:\"theme\";a:3:{s:4:\"name\";s:5:\"theme\";s:4:\"slug\";s:5:\"theme\";s:5:\"count\";s:3:\"629\";}s:7:\"comment\";a:3:{s:4:\"name\";s:7:\"comment\";s:4:\"slug\";s:7:\"comment\";s:5:\"count\";s:3:\"616\";}s:9:\"dashboard\";a:3:{s:4:\"name\";s:9:\"dashboard\";s:4:\"slug\";s:9:\"dashboard\";s:5:\"count\";s:3:\"615\";}s:4:\"tags\";a:3:{s:4:\"name\";s:4:\"tags\";s:4:\"slug\";s:4:\"tags\";s:5:\"count\";s:3:\"614\";}s:6:\"mobile\";a:3:{s:4:\"name\";s:6:\"mobile\";s:4:\"slug\";s:6:\"mobile\";s:5:\"count\";s:3:\"612\";}s:10:\"categories\";a:3:{s:4:\"name\";s:10:\"categories\";s:4:\"slug\";s:10:\"categories\";s:5:\"count\";s:3:\"601\";}s:6:\"editor\";a:3:{s:4:\"name\";s:6:\"editor\";s:4:\"slug\";s:6:\"editor\";s:5:\"count\";s:3:\"585\";}s:10:\"statistics\";a:3:{s:4:\"name\";s:10:\"statistics\";s:4:\"slug\";s:10:\"statistics\";s:5:\"count\";s:3:\"585\";}s:3:\"ads\";a:3:{s:4:\"name\";s:3:\"ads\";s:4:\"slug\";s:3:\"ads\";s:5:\"count\";s:3:\"584\";}s:4:\"user\";a:3:{s:4:\"name\";s:4:\"user\";s:4:\"slug\";s:4:\"user\";s:5:\"count\";s:3:\"580\";}s:12:\"social-media\";a:3:{s:4:\"name\";s:12:\"social media\";s:4:\"slug\";s:12:\"social-media\";s:5:\"count\";s:3:\"563\";}s:5:\"users\";a:3:{s:4:\"name\";s:5:\"users\";s:4:\"slug\";s:5:\"users\";s:5:\"count\";s:3:\"553\";}s:4:\"list\";a:3:{s:4:\"name\";s:4:\"list\";s:4:\"slug\";s:4:\"list\";s:5:\"count\";s:3:\"549\";}s:12:\"contact-form\";a:3:{s:4:\"name\";s:12:\"contact form\";s:4:\"slug\";s:12:\"contact-form\";s:5:\"count\";s:3:\"546\";}s:6:\"simple\";a:3:{s:4:\"name\";s:6:\"simple\";s:4:\"slug\";s:6:\"simple\";s:5:\"count\";s:3:\"540\";}s:9:\"affiliate\";a:3:{s:4:\"name\";s:9:\"affiliate\";s:4:\"slug\";s:9:\"affiliate\";s:5:\"count\";s:3:\"540\";}s:7:\"plugins\";a:3:{s:4:\"name\";s:7:\"plugins\";s:4:\"slug\";s:7:\"plugins\";s:5:\"count\";s:3:\"538\";}s:9:\"multisite\";a:3:{s:4:\"name\";s:9:\"multisite\";s:4:\"slug\";s:9:\"multisite\";s:5:\"count\";s:3:\"534\";}s:4:\"shop\";a:3:{s:4:\"name\";s:4:\"shop\";s:4:\"slug\";s:4:\"shop\";s:5:\"count\";s:3:\"522\";}s:7:\"picture\";a:3:{s:4:\"name\";s:7:\"picture\";s:4:\"slug\";s:7:\"picture\";s:5:\"count\";s:3:\"519\";}s:9:\"marketing\";a:3:{s:4:\"name\";s:9:\"marketing\";s:4:\"slug\";s:9:\"marketing\";s:5:\"count\";s:3:\"509\";}s:3:\"api\";a:3:{s:4:\"name\";s:3:\"api\";s:4:\"slug\";s:3:\"api\";s:5:\"count\";s:3:\"507\";}s:7:\"contact\";a:3:{s:4:\"name\";s:7:\"contact\";s:4:\"slug\";s:7:\"contact\";s:5:\"count\";s:3:\"496\";}s:3:\"url\";a:3:{s:4:\"name\";s:3:\"url\";s:4:\"slug\";s:3:\"url\";s:5:\"count\";s:3:\"484\";}s:10:\"navigation\";a:3:{s:4:\"name\";s:10:\"navigation\";s:4:\"slug\";s:10:\"navigation\";s:5:\"count\";s:3:\"471\";}s:10:\"newsletter\";a:3:{s:4:\"name\";s:10:\"newsletter\";s:4:\"slug\";s:10:\"newsletter\";s:5:\"count\";s:3:\"469\";}s:8:\"pictures\";a:3:{s:4:\"name\";s:8:\"pictures\";s:4:\"slug\";s:8:\"pictures\";s:5:\"count\";s:3:\"467\";}s:4:\"html\";a:3:{s:4:\"name\";s:4:\"html\";s:4:\"slug\";s:4:\"html\";s:5:\"count\";s:3:\"462\";}s:6:\"events\";a:3:{s:4:\"name\";s:6:\"events\";s:4:\"slug\";s:6:\"events\";s:5:\"count\";s:3:\"459\";}s:8:\"tracking\";a:3:{s:4:\"name\";s:8:\"tracking\";s:4:\"slug\";s:8:\"tracking\";s:5:\"count\";s:3:\"448\";}s:10:\"shortcodes\";a:3:{s:4:\"name\";s:10:\"shortcodes\";s:4:\"slug\";s:10:\"shortcodes\";s:5:\"count\";s:3:\"447\";}s:8:\"calendar\";a:3:{s:4:\"name\";s:8:\"calendar\";s:4:\"slug\";s:8:\"calendar\";s:5:\"count\";s:3:\"443\";}s:4:\"meta\";a:3:{s:4:\"name\";s:4:\"meta\";s:4:\"slug\";s:4:\"meta\";s:5:\"count\";s:3:\"438\";}s:8:\"lightbox\";a:3:{s:4:\"name\";s:8:\"lightbox\";s:4:\"slug\";s:8:\"lightbox\";s:5:\"count\";s:3:\"436\";}s:3:\"tag\";a:3:{s:4:\"name\";s:3:\"tag\";s:4:\"slug\";s:3:\"tag\";s:5:\"count\";s:3:\"430\";}s:6:\"paypal\";a:3:{s:4:\"name\";s:6:\"paypal\";s:4:\"slug\";s:6:\"paypal\";s:5:\"count\";s:3:\"427\";}s:11:\"advertising\";a:3:{s:4:\"name\";s:11:\"advertising\";s:4:\"slug\";s:11:\"advertising\";s:5:\"count\";s:3:\"426\";}s:6:\"upload\";a:3:{s:4:\"name\";s:6:\"upload\";s:4:\"slug\";s:6:\"upload\";s:5:\"count\";s:3:\"425\";}s:12:\"notification\";a:3:{s:4:\"name\";s:12:\"notification\";s:4:\"slug\";s:12:\"notification\";s:5:\"count\";s:3:\"424\";}s:4:\"news\";a:3:{s:4:\"name\";s:4:\"News\";s:4:\"slug\";s:4:\"news\";s:5:\"count\";s:3:\"422\";}s:7:\"sharing\";a:3:{s:4:\"name\";s:7:\"sharing\";s:4:\"slug\";s:7:\"sharing\";s:5:\"count\";s:3:\"422\";}s:5:\"flash\";a:3:{s:4:\"name\";s:5:\"flash\";s:4:\"slug\";s:5:\"flash\";s:5:\"count\";s:3:\"421\";}s:9:\"thumbnail\";a:3:{s:4:\"name\";s:9:\"thumbnail\";s:4:\"slug\";s:9:\"thumbnail\";s:5:\"count\";s:3:\"417\";}s:16:\"custom-post-type\";a:3:{s:4:\"name\";s:16:\"custom post type\";s:4:\"slug\";s:16:\"custom-post-type\";s:5:\"count\";s:3:\"414\";}s:8:\"linkedin\";a:3:{s:4:\"name\";s:8:\"linkedin\";s:4:\"slug\";s:8:\"linkedin\";s:5:\"count\";s:3:\"413\";}}", "no");
INSERT INTO `wp_options` VALUES("146", "seed_csp4_settings_content", "a:9:{s:6:\"status\";s:1:\"0\";s:4:\"logo\";s:0:\"\";s:8:\"headline\";s:18:\"Infinity Marketing\";s:11:\"description\";s:33:\"Infinity Marketing is coming soon\";s:13:\"footer_credit\";s:1:\"0\";s:7:\"favicon\";s:0:\"\";s:9:\"seo_title\";s:0:\"\";s:15:\"seo_description\";s:0:\"\";s:12:\"ga_analytics\";s:0:\"\";}", "yes");
INSERT INTO `wp_options` VALUES("193", "theme_mods_twentysixteen", "a:1:{s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1456450738;s:4:\"data\";a:7:{s:19:\"wp_inactive_widgets\";a:0:{}s:19:\"primary-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:21:\"secondary-widget-area\";a:0:{}s:24:\"first-footer-widget-area\";a:0:{}s:25:\"second-footer-widget-area\";a:0:{}s:24:\"third-footer-widget-area\";a:0:{}s:25:\"fourth-footer-widget-area\";a:0:{}}}}", "yes");
INSERT INTO `wp_options` VALUES("194", "current_theme", "Infinity Marketing", "yes");
INSERT INTO `wp_options` VALUES("195", "theme_mods_Divi", "a:7:{i:0;b:0;s:21:\"et_pb_layouts_updated\";s:3:\"yes\";s:39:\"et_updated_layouts_built_for_post_types\";s:3:\"yes\";s:30:\"et_pb_predefined_layouts_added\";s:2:\"on\";s:34:\"et_pb_predefined_layouts_version_2\";s:2:\"on\";s:18:\"nav_menu_locations\";a:1:{s:12:\"primary-menu\";i:3;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1476931722;s:4:\"data\";a:6:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:5:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:10:\"archives-2\";i:3;s:12:\"categories-2\";i:4;s:6:\"meta-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}s:9:\"sidebar-4\";a:0:{}s:9:\"sidebar-5\";a:0:{}}}}", "yes");
INSERT INTO `wp_options` VALUES("196", "theme_switched", "", "yes");
INSERT INTO `wp_options` VALUES("197", "et_pb_cache_notice", "a:1:{s:7:\"2.6.4.4\";s:6:\"ignore\";}", "yes");
INSERT INTO `wp_options` VALUES("198", "widget_aboutmewidget", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("199", "widget_adsensewidget", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("200", "widget_advwidget", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("201", "shop_catalog_image_size", "a:3:{s:5:\"width\";s:3:\"400\";s:6:\"height\";s:3:\"400\";s:4:\"crop\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("202", "shop_single_image_size", "a:3:{s:5:\"width\";s:3:\"510\";s:6:\"height\";s:4:\"9999\";s:4:\"crop\";i:0;}", "yes");
INSERT INTO `wp_options` VALUES("10045", "duplicator_version_plugin", "1.1.26", "yes");
INSERT INTO `wp_options` VALUES("10046", "duplicator_ui_view_state", "a:3:{s:22:\"dup-pack-storage-panel\";s:1:\"0\";s:22:\"dup-pack-archive-panel\";s:1:\"0\";s:24:\"dup-pack-installer-panel\";s:1:\"0\";}", "yes");
INSERT INTO `wp_options` VALUES("10047", "duplicator_package_active", "O:11:\"DUP_Package\":23:{s:7:\"Created\";s:19:\"2016-12-20 18:34:47\";s:7:\"Version\";s:6:\"1.1.26\";s:9:\"VersionWP\";s:5:\"4.6.1\";s:9:\"VersionDB\";s:6:\"5.5.52\";s:10:\"VersionPHP\";s:6:\"5.4.45\";s:9:\"VersionOS\";s:5:\"Linux\";s:2:\"ID\";N;s:4:\"Name\";s:26:\"20161220_infinitymarketing\";s:4:\"Hash\";s:29:\"585979c77893d1841161220183447\";s:8:\"NameHash\";s:56:\"20161220_infinitymarketing_585979c77893d1841161220183447\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:48:\"/home/candiclebaker/public_html/wp-snapshots/tmp\";s:8:\"StoreURL\";s:48:\"http://www.infinitymarketing.co.nz/wp-snapshots/\";s:8:\"ScanFile\";s:66:\"20161220_infinitymarketing_585979c77893d1841161220183447_scan.json\";s:7:\"Runtime\";N;s:7:\"ExeSize\";N;s:7:\"ZipSize\";N;s:6:\"Status\";N;s:6:\"WPUser\";N;s:7:\"Archive\";O:11:\"DUP_Archive\":13:{s:10:\"FilterDirs\";s:0:\"\";s:10:\"FilterExts\";s:0:\"\";s:13:\"FilterDirsAll\";a:0:{}s:13:\"FilterExtsAll\";a:0:{}s:8:\"FilterOn\";i:0;s:4:\"File\";N;s:6:\"Format\";s:3:\"ZIP\";s:7:\"PackDir\";s:31:\"/home/candiclebaker/public_html\";s:4:\"Size\";i:0;s:4:\"Dirs\";a:0:{}s:5:\"Files\";a:0:{}s:10:\"FilterInfo\";O:23:\"DUP_Archive_Filter_Info\":6:{s:4:\"Dirs\";O:34:\"DUP_Archive_Filter_Scope_Directory\":4:{s:7:\"Warning\";a:0:{}s:10:\"Unreadable\";a:0:{}s:4:\"Core\";a:0:{}s:8:\"Instance\";a:0:{}}s:5:\"Files\";O:29:\"DUP_Archive_Filter_Scope_File\":5:{s:4:\"Size\";a:0:{}s:7:\"Warning\";a:0:{}s:10:\"Unreadable\";a:0:{}s:4:\"Core\";a:0:{}s:8:\"Instance\";a:0:{}}s:4:\"Exts\";O:29:\"DUP_Archive_Filter_Scope_Base\":2:{s:4:\"Core\";a:0:{}s:8:\"Instance\";a:0:{}}s:9:\"UDirCount\";i:0;s:10:\"UFileCount\";i:0;s:9:\"UExtCount\";i:0;}s:10:\"\0*\0Package\";O:11:\"DUP_Package\":23:{s:7:\"Created\";s:19:\"2016-12-20 18:34:47\";s:7:\"Version\";s:6:\"1.1.26\";s:9:\"VersionWP\";s:5:\"4.6.1\";s:9:\"VersionDB\";s:6:\"5.5.52\";s:10:\"VersionPHP\";s:6:\"5.4.45\";s:9:\"VersionOS\";s:5:\"Linux\";s:2:\"ID\";N;s:4:\"Name\";s:26:\"20161220_infinitymarketing\";s:4:\"Hash\";s:29:\"585979c77893d1841161220183447\";s:8:\"NameHash\";s:56:\"20161220_infinitymarketing_585979c77893d1841161220183447\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:48:\"/home/candiclebaker/public_html/wp-snapshots/tmp\";s:8:\"StoreURL\";s:48:\"http://www.infinitymarketing.co.nz/wp-snapshots/\";s:8:\"ScanFile\";N;s:7:\"Runtime\";N;s:7:\"ExeSize\";N;s:7:\"ZipSize\";N;s:6:\"Status\";N;s:6:\"WPUser\";N;s:7:\"Archive\";r:22;s:9:\"Installer\";O:13:\"DUP_Installer\":12:{s:4:\"File\";N;s:4:\"Size\";i:0;s:10:\"OptsDBHost\";s:0:\"\";s:10:\"OptsDBPort\";s:0:\"\";s:10:\"OptsDBName\";s:0:\"\";s:10:\"OptsDBUser\";s:0:\"\";s:12:\"OptsSSLAdmin\";i:0;s:12:\"OptsSSLLogin\";i:0;s:11:\"OptsCacheWP\";i:0;s:13:\"OptsCachePath\";i:0;s:10:\"OptsURLNew\";s:0:\"\";s:10:\"\0*\0Package\";r:52;}s:8:\"Database\";O:12:\"DUP_Database\":12:{s:4:\"Type\";s:5:\"MySQL\";s:4:\"Size\";N;s:4:\"File\";N;s:4:\"Path\";N;s:12:\"FilterTables\";s:0:\"\";s:8:\"FilterOn\";i:0;s:4:\"Name\";N;s:10:\"Compatible\";s:0:\"\";s:10:\"\0*\0Package\";r:52;s:25:\"\0DUP_Database\0dbStorePath\";N;s:23:\"\0DUP_Database\0EOFMarker\";s:0:\"\";s:26:\"\0DUP_Database\0networkFlush\";b:0;}}}s:9:\"Installer\";r:74;s:8:\"Database\";r:87;}", "yes");
INSERT INTO `wp_options` VALUES("7961", "et_account_status", "active", "yes");
INSERT INTO `wp_options` VALUES("7962", "_site_transient_et_update_all_plugins", "O:8:\"stdClass\":1:{s:12:\"last_checked\";i:1482257481;}", "no");
INSERT INTO `wp_options` VALUES("7984", "theme_mods_infinity-marketing", "a:6:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:12:\"primary-menu\";i:3;}s:21:\"et_pb_layouts_updated\";s:3:\"yes\";s:39:\"et_updated_layouts_built_for_post_types\";s:3:\"yes\";s:30:\"et_pb_predefined_layouts_added\";s:2:\"on\";s:34:\"et_pb_predefined_layouts_version_2\";s:2:\"on\";}", "yes");
INSERT INTO `wp_options` VALUES("7985", "wpseo_sitemap_et_pb_layout_cache_validator", "JCox", "no");
INSERT INTO `wp_options` VALUES("7986", "_transient_timeout_yoast_i18n_wordpress-seo_en_NZ", "1477018209", "no");
INSERT INTO `wp_options` VALUES("7987", "_transient_yoast_i18n_wordpress-seo_en_NZ", "O:8:\"stdClass\":12:{s:2:\"id\";s:3:\"963\";s:4:\"name\";s:21:\"English (New Zealand)\";s:4:\"slug\";s:7:\"default\";s:10:\"project_id\";s:1:\"1\";s:6:\"locale\";s:5:\"en-nz\";s:13:\"current_count\";i:0;s:18:\"untranslated_count\";i:1028;s:13:\"waiting_count\";i:153;s:11:\"fuzzy_count\";i:0;s:18:\"percent_translated\";i:0;s:9:\"wp_locale\";s:5:\"en_NZ\";s:13:\"last_modified\";b:0;}", "no");
INSERT INTO `wp_options` VALUES("3109", "nsa_wpfbp_settings", "a:2:{s:35:\"nsa_wpfbp_general_facebook_pixel_id\";s:16:\"1738172466400382\";s:36:\"nsa_wpfbp_general_user_type_tracking\";a:5:{i:0;s:13:\"administrator\";i:1;s:6:\"editor\";i:2;s:6:\"author\";i:3;s:11:\"contributor\";i:4;s:10:\"subscriber\";}}", "yes");
INSERT INTO `wp_options` VALUES("3834", "_wp_session_expires_6d0cdf51c899a9d45bae2fbfe0130d2f", "2960907902", "no");
INSERT INTO `wp_options` VALUES("2851", "_transient_timeout_post_meta_keys", "1482345299", "no");
INSERT INTO `wp_options` VALUES("2852", "_transient_post_meta_keys", "a:0:{}", "no");
INSERT INTO `wp_options` VALUES("2853", "_transient_timeout_page_meta_keys", "1482345299", "no");
INSERT INTO `wp_options` VALUES("2854", "_transient_page_meta_keys", "a:5:{i:0;s:17:\"my_meta_box_check\";i:1;s:27:\"lpp_enable_email_newsletter\";i:2;s:17:\"lpp_is_front_page\";i:3;s:15:\"lpp_load_wphead\";i:4;s:17:\"lpp_load_wpfooter\";}", "no");
INSERT INTO `wp_options` VALUES("2855", "_transient_timeout_attachment_meta_keys", "1482345299", "no");
INSERT INTO `wp_options` VALUES("2856", "_transient_attachment_meta_keys", "a:0:{}", "no");
INSERT INTO `wp_options` VALUES("2857", "_transient_timeout_project_meta_keys", "1482345299", "no");
INSERT INTO `wp_options` VALUES("2858", "_transient_project_meta_keys", "a:0:{}", "no");
INSERT INTO `wp_options` VALUES("2863", "_transient_timeout_landingpage_f_meta_keys", "1482345299", "no");
INSERT INTO `wp_options` VALUES("2864", "_transient_landingpage_f_meta_keys", "a:0:{}", "no");
INSERT INTO `wp_options` VALUES("2848", "nsa_wpfbp_first_activate_date", "1461807839", "yes");
INSERT INTO `wp_options` VALUES("7930", "can_compress_scripts", "0", "no");
INSERT INTO `wp_options` VALUES("8006", "wpseo_sitemap_category_cache_validator", "3GIoO", "no");
INSERT INTO `wp_options` VALUES("2938", "_wp_session_expires_18014a24d76fca7f0cd54304b703580d", "2955391086", "no");
INSERT INTO `wp_options` VALUES("2934", "wpseo_sitemap_nav_menu_cache_validator", "DPMv", "no");
INSERT INTO `wp_options` VALUES("10078", "_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca", "1482300597", "no");
INSERT INTO `wp_options` VALUES("10079", "_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, 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:\"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-alpha-39619\";s: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: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:44700:\"<p>Version 4.7 of WordPress, named “Vaughan” in honor of legendary jazz vocalist Sarah &#8220;Sassy&#8221; 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=&quot;avc1.64001E, mp4a.40.2&quot;\" /><source src=\"https://videos.files.wordpress.com/AHz0Ca46/wp4-7-vaughan-r8-mastered_fmt1.ogv\" type=\"video/ogg; codecs=&quot;theora, vorbis&quot;\" /><div><img alt=\"Introducing WordPress 4.7\" src=\"https://i1.wp.com/videos.files.wordpress.com/AHz0Ca46/wp4-7-vaughan-r8-mastered_scruberthumbnail_0.jpg?resize=632%2C354&#038;ssl=1\" 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&#038;ssl=1\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-Twenty-Seventeen-1.jpg?resize=1024%2C576&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-Twenty-Seventeen-1.jpg?resize=300%2C169&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-Twenty-Seventeen-1.jpg?resize=768%2C432&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-Twenty-Seventeen-1.jpg?w=1600&amp;ssl=1 1600w, https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-Twenty-Seventeen-1.jpg?w=1264&amp;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 &#8211; 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&#038;ssl=1\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2016/12/4.7-—-Nav.jpg?resize=300%2C158&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2016/12/4.7-—-Nav.jpg?w=760&amp;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&#038;ssl=1\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2016/12/4.7-—-CSS.jpg?resize=300%2C158&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2016/12/4.7-—-CSS.jpg?w=760&amp;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&#038;ssl=1\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2016/12/4.7-—-PDF.jpg?resize=300%2C158&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2016/12/4.7-—-PDF.jpg?w=760&amp;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&#038;ssl=1\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-Language.jpg?resize=300%2C158&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-Language.jpg?w=760&amp;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&#038;ssl=1\" alt=\"\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-API.jpg?resize=1024%2C332&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-API.jpg?resize=300%2C97&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-API.jpg?resize=768%2C249&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-API.jpg?w=1264&amp;ssl=1 1264w, https://i2.wp.com/wordpress.org/news/files/2016/12/4.7-—-API.jpg?w=1896&amp;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.1/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/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&#246;rklund</a>, <a href=\"https://profiles.wordpress.org/akshayvinchurkar\">AkshayVinchurkar</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/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/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/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/frank-klein\">Frank Klein</a>, <a href=\"https://profiles.wordpress.org/fjarrett\">Frankie Jarrett</a>, <a href=\"https://profiles.wordpress.org/frankiet\">frankiet</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/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 &#352;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/hugobaeta\">Hugo Baeta</a>, <a href=\"https://profiles.wordpress.org/polevaultweb\">Iain Poulson</a>, <a href=\"https://profiles.wordpress.org/iamjolly\">iamjolly</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/imnok\">Imnok</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/krstarica\">Ivan</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/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/wraithkenny\">Ken Newman</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\">lukepettway</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. (Clorith)</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/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/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/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&#228;l&#228;inen</a>, <a href=\"https://profiles.wordpress.org/ovann86\">ovann86</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/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&#250;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/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/pollyplummer\">Sarah Gooding</a>, <a href=\"https://profiles.wordpress.org/sayedwp\">Sayed Taqui</a>, <a href=\"https://profiles.wordpress.org/schlessera\">schlessera</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/shayanys\">shayanys</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/soean\">Soeren Wrede</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/stubgo\">stubgo</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/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/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\">Truong Giang</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/voldemortensen\">voldemortensen</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 &#124; 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>&nbsp;<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 &#8211; 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: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: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 [&#8230;]\";s: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&#8217;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>&nbsp;</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: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: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, [&#8230;]\";s: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&amp;mode=stop_on_copy&amp;rev=39353&amp;stop_rev=39263&amp;limit=200&amp;verbose=on&amp;sfp_email=&amp;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&#8217;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&#8217;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:\"\";}}}}}i:3;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.7 Beta 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:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2016/11/wordpress-4-7-beta-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:\"Wed, 16 Nov 2016 01:51:52 +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=4576\";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:329:\"WordPress 4.7 Beta 4 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.7, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can [&#8230;]\";s: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:2019:\"<p>WordPress 4.7 Beta 4 is now available!</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.7, try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"https://wordpress.org/wordpress-4.7-beta4.zip\">download the beta here</a> (zip).</p>\n<p>For more information on what’s new in 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>, and <a href=\"https://wordpress.org/news/2016/11/wordpress-4-7-beta-3/\">Beta 3</a> blog posts, along with <a href=\"https://make.wordpress.org/core/tag/4-7+dev-notes/\">in-depth developer guides on make/core</a>. We’ve made <a href=\"https://core.trac.wordpress.org/log/trunk/src?action=stop_on_copy&amp;mode=stop_on_copy&amp;rev=39262&amp;stop_rev=39201&amp;limit=200&amp;verbose=on&amp;sfp_email=&amp;sfph_mail=\">about 60 changes</a> in the last few days for beta 4, including tweaks to Twenty Seventeen, custom CSS, and the REST API content endpoints.</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></p>\n<p><strong>If you think you’ve found a bug</strong>, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://make.wordpress.org/core/reports/\">file one on WordPress Trac</a>, where you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</p>\n<p><em>We are almost there<br />\nPlease test your plugins and themes<br />\nRC coming soon<br />\n</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:\"4576\";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:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"WordCamp US 2017-2018 in Nashville\";s: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:70:\"https://wordpress.org/news/2016/11/wordcamp-us-2017-2018-in-nashville/\";s: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, 15 Nov 2016 23:24:17 +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:\"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:34:\"https://wordpress.org/news/?p=4571\";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:330:\"The title says it all. We had some great applications for cities to host WordCamp US after we finish up in Philadelphia this year, and the city chosen for 2017-2018 is Nashville, Tennessee. Based on the other great applications we got I&#8217;m also excited about the pipeline of communities that could host it in future [&#8230;]\";s: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:1022:\"<p><img class=\"aligncenter\" src=\"https://i0.wp.com/wpdotorg.files.wordpress.com/2008/07/27492741871_c6fcebcad3_k-e1479248587522.jpg?resize=632%2C253&#038;ssl=1\" data-recalc-dims=\"1\" /></p>\n<p>The title says it all. We had some great applications for cities to host <a href=\"http://us.wordcamp.org/\">WordCamp US</a> after we finish up in Philadelphia this year, and the city chosen for 2017-2018 is <strong>Nashville, Tennessee</strong>.</p>\n<p>Based on the other great applications we got I&#8217;m also excited about the pipeline of communities that could host it in future years as WordCamp US travels across the United States and gives us an opportunity to learn and love a new city, as we have with Philadelphia.</p>\n<p>By the way, if you haven&#8217;t yet, now is a great time to <a href=\"https://wordpressdotorg.polldaddy.com/s/wordpress-2016-survey\">take the Annual WordPress Survey</a> and ask your friends to as well.</p>\n<p><a href=\"https://www.flickr.com/photos/143951935@N07/27492741871\">Photo Credit</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:\"4571\";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:20:\"WordPress 4.7 Beta 3\";s: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/2016/11/wordpress-4-7-beta-3/\";s: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, 11 Nov 2016 03:30:52 +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: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:\"\";}i:1;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: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=4566\";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:329:\"WordPress 4.7 Beta 3 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.7, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can [&#8230;]\";s: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:3120:\"<p>WordPress 4.7 Beta 3 is now available!</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.7, try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"https://wordpress.org/wordpress-4.7-beta3.zip\">download the beta here</a> (zip).</p>\n<p>For more information on what’s new in 4.7, check out the <a href=\"https://wordpress.org/news/2016/10/wordpress-4-7-beta-1/\">Beta 1</a> and <a href=\"https://wordpress.org/news/2016/11/wordpress-4-7-beta-2/\">Beta 2</a> blog posts, along with <a href=\"https://make.wordpress.org/core/tag/4-7+dev-notes/\">in-depth field guides on make/core</a>. Some of the changes in Beta 3 include:</p>\n<ul>\n<li><strong>REST API:</strong> The <code>unfiltered_html</code> capability is now respected and <code>rest_base</code> has been added to response objects of <code>wp/v2/taxonomies</code> and <code>wp/v2/types</code>, while <code>get_allowed_query_vars()</code> and the <code>rest_get_post</code> filter have been removed.</li>\n<li><strong>Roles/Capabilities:</strong> Added meta-caps for comment, term, and user meta, which are currently only used in the REST API.</li>\n<li><strong>I18N:</strong> Added the ability to change user&#8217;s locale back to site&#8217;s locale. (<a href=\"https://core.trac.wordpress.org/ticket/38632\">#38632</a>)</li>\n<li><strong>Custom CSS:</strong> Renamed the <code>unfiltered_css</code> meta capability to <code>edit_css</code> and added revisions support to the <code>custom_css</code> post type.</li>\n<li><strong>Edit shortcuts:</strong> Theme authors should take a look at <a href=\"https://make.wordpress.org/core/2016/11/10/visible-edit-shortcuts-in-the-customizer-preview/\">the developer guide to the customizer preview&#8217;s visible edit shortcuts</a> and update their themes to take advantage of them if not already implementing selective refresh.</li>\n<li><strong>Various bug fixes:</strong> We’ve made <a href=\"https://core.trac.wordpress.org/log/trunk/src?action=stop_on_copy&amp;mode=stop_on_copy&amp;rev=39200&amp;stop_rev=39143&amp;limit=200&amp;verbose=on&amp;sfp_email=&amp;sfph_mail=\">over 50 changes</a> in the last week.</li>\n</ul>\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></p>\n<p><strong>If you think you’ve found a bug</strong>, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://make.wordpress.org/core/reports/\">file one on WordPress Trac</a>, where you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</p>\n<p><em>Building the future</em><br />\n<em>A global community</em><br />\n<em>Stronger together</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:\"4566\";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:20:\"WordPress 4.7 Beta 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:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2016/11/wordpress-4-7-beta-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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 04 Nov 2016 17:39: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:8:\"category\";a:3:{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:\"\";}i:1;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: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=4552\";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:329:\"WordPress 4.7 Beta 2 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.7, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can [&#8230;]\";s: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:4240:\"<p>WordPress 4.7 Beta 2 is now available!</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.7, try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"https://wordpress.org/wordpress-4.7-beta2.zip\">download the beta here</a> (zip).</p>\n<p>Notable changes since WordPress 4.7 Beta 1:</p>\n<ul>\n<li><strong>Twenty Seventeen:</strong> The theme wasn&#8217;t being installed on upgrades &#8211; sorry about that! Now you should see it if you&#8217;re upgrading an existing site. There are also plenty of fixes, especially for the header and small screen views.</li>\n<li><strong>Edit shortcuts:</strong> These are always visible while editing (hide them on bigger screens by collapsing the controls) and should now work properly in Firefox. (<a href=\"https://core.trac.wordpress.org/ticket/27403\">#27403</a> and <a href=\"https://core.trac.wordpress.org/ticket/38532\">#38532</a>)</li>\n<li><strong>REST API endpoints:</strong> There have been a number of changes over the past week; your attention is requested on the following:\n<ul>\n<li>The <code>DELETE</code> response format has changed and may need to be accounted for. (<a href=\"https://core.trac.wordpress.org/ticket/38494\">#38494</a>)</li>\n<li>Enabled querying by multiple post statuses. (<a href=\"https://core.trac.wordpress.org/ticket/38420\">#38420</a>)</li>\n<li>Return an error when JSON decoding fails. (<a href=\"https://core.trac.wordpress.org/ticket/38547\">#38547</a>)</li>\n</ul>\n</li>\n<li><strong>More developer notes</strong>\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2016/10/28/fine-grained-capabilities-for-taxonomy-terms-in-4-7/\">Fine grained capabilities for taxonomy terms</a></li>\n<li><a href=\"https://make.wordpress.org/core/2016/10/29/wp_taxonomy-in-4-7/\"><code>WP_Taxonomy</code></a></li>\n<li><a href=\"https://make.wordpress.org/core/2016/11/02/wp_list_sort-and-wp_list_util-in-4-7/\"><code>wp_list_sort()</code> and <code>WP_List_Util</code></a></li>\n<li><a href=\"https://make.wordpress.org/core/2016/11/03/post-type-templates-in-4-7/\">Post type templates</a></li>\n<li><a href=\"https://make.wordpress.org/core/2016/11/03/new-post-type-labels-in-4-7/\">New post type labels</a></li>\n<li><a href=\"https://make.wordpress.org/core/2016/11/03/attributes-for-resource-hints-in-4-7/\">Attributes for resource hints</a></li>\n</ul>\n</li>\n<li><strong>Various bug fixes:</strong> We’ve made <a href=\"https://core.trac.wordpress.org/log/trunk/src?action=stop_on_copy&amp;mode=stop_on_copy&amp;rev=39142&amp;stop_rev=38995&amp;limit=200&amp;verbose=on&amp;sfp_email=&amp;sfph_mail=\">almost 150 changes</a> in the last week.</li>\n</ul>\n<p>For more of what’s new in version 4.7, <a href=\"https://wordpress.org/news/2016/10/wordpress-4-7-beta-1/\">check out the Beta 1 blog post</a>.</p>\n<p>If you want a more in-depth view of what major changes have made it into 4.7, <a href=\"https://make.wordpress.org/core/tag/4-7/\">check out posts tagged with 4.7 on the main development blog</a>, or look at a <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;resolution=fixed&amp;milestone=4.7&amp;group=component&amp;order=priority\">list of everything</a> that’s changed. There will be more developer notes to come, so keep an eye out for those as well.</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></p>\n<p><strong>If you think you’ve found a bug</strong>, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://make.wordpress.org/core/reports/\">file one on WordPress Trac</a>, where you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</p>\n<p>Happy testing!</p>\n<p><em>Ya es la hora</em><br />\n<em> Time for another beta</em><br />\n请您帮下忙!</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:\"4552\";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:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 4.7 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/2016/10/wordpress-4-7-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:\"Fri, 28 Oct 2016 04:30: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:8:\"category\";a:3:{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:\"\";}i:1;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: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=4535\";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:329:\"WordPress 4.7 Beta 1 is now available! This software is still in development, so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.7, try the WordPress Beta Tester plugin (you’ll want “bleeding edge nightlies”). Or you can [&#8230;]\";s: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:6895:\"<p>WordPress 4.7 Beta 1 is now available!</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.7, try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"https://wordpress.org/wordpress-4.7-beta1.zip\">download the beta here</a> (zip).</p>\n<p>WordPress 4.7 is slated for release on <a href=\"https://make.wordpress.org/core/4-7/\">December 6</a>, but we need your help to get there. We&#8217;ve been working on a lot of things, many of them to make getting your site set up the way you want it much easier. Here are some of the bigger items to test and help us find as many bugs as possible in the coming weeks:</p>\n<ul>\n<li><a href=\"http://2017.wordpress.net/\"><strong>Twenty Seventeen</strong></a> &#8211; A brand new default theme brings your site to life with immersive featured images, video headers, and subtle animations. With a focus on business sites, it features multiple sections on the front page as well as widgets, navigation and social menus, a logo, and more. Personalize its asymmetrical grid with a custom color scheme and showcase your multimedia content with post formats. Our default theme for 2017 works great in many languages, for any abilities, and on any device.</li>\n<li><strong>Video Headers</strong> &#8211; 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.</li>\n<li><strong>Set up your site in one flow</strong> &#8211; From finding and installing themes right inside the customizer, to automatically staged theme-specific starter content, to clickable shortcuts that jump directly to editing an item from the preview pane, to adding pages while you&#8217;re building a nav menu or setting a static front page: getting a new site spun up and ready to share with a friend or a coworker is faster and easier than it&#8217;s ever been. Note: starter content appears when live previewing brand new sites and is currently only available in Twenty Seventeen. We&#8217;ll be expanding this to other bundled themes very soon, and perhaps to sites with existing content in future releases of WordPress.</li>\n<li><strong>Custom CSS with live previews</strong> &#8211; Ever needed to hide or tweak the look of something in your theme or from a plugin? Now you can do it with CSS and live preview the results while customizing your site. CSS can be a powerful tool; you may find that you won&#8217;t need the theme editor or child themes anymore.</li>\n<li><strong>User admin languages</strong> &#8211; Just because your site is in one language doesn&#8217;t mean that everybody helping manage it prefers that language for their admin. To try this out, you&#8217;ll need to have more than one language installed, which will make a user language option available in your profile.</li>\n<li><strong>PDF thumbnail previews</strong> &#8211; Uploading PDFs will now generate thumbnail images so you can more easily distinguish between all your documents.</li>\n</ul>\n<p>As always, there have been exciting changes for developers to explore as well, such as:</p>\n<ul>\n<li><strong>REST API content endpoints</strong> &#8211; If you only test one thing as a developer, please test these. This phase is particularly helpful for people building plugins, themes, and in-admin interfaces. Can you build the things you need? Are these ready for release, and is the world ready for them? (<a href=\"https://core.trac.wordpress.org/ticket/38373\">#38373</a>)</li>\n<li><strong><code>WP_Hook</code></strong> &#8211; The code that lies beneath actions and filters has been overhauled. You likely aren&#8217;t affected, but if you&#8217;ve done things to the <code>$wp_filter</code> global or experienced funky recursion bugs in the past, <a href=\"https://make.wordpress.org/core/2016/09/08/wp_hook-next-generation-actions-and-filters/\">please take a moment to read the dev note</a> and test your code.</li>\n<li><a href=\"https://make.wordpress.org/core/2016/10/04/custom-bulk-actions/\"><strong>Custom bulk actions</strong></a> &#8211; List tables, now with more than bulk edit and delete.</li>\n<li>Expanded <a href=\"https://make.wordpress.org/core/2016/10/26/registering-your-settings-in-wordpress-4-7/\"><strong>Settings Registration API</strong></a> via <code>register_setting()</code>.</li>\n<li>For theme developers: <strong>Post type templates</strong> (<a href=\"https://core.trac.wordpress.org/ticket/18375\">#18375</a>)</li>\n<li><strong><a href=\"https://make.wordpress.org/core/2016/09/09/new-functions-hooks-and-behaviour-for-theme-developers-in-wordpress-4-7/\">More goodies for theme developers!</a></strong></li>\n<li><strong>Locale switching</strong> (<a href=\"https://core.trac.wordpress.org/ticket/26511\">#26511</a>)</li>\n<li><a href=\"https://make.wordpress.org/core/2016/10/11/comment-allowed-checks-in-wordpress-4-7/\"><strong>Comment allowed checks</strong></a> have the potential for a back-compat break.</li>\n</ul>\n<p>If you want a more in-depth view of what major changes have made it into 4.7, <a href=\"https://make.wordpress.org/core/tag/4-7/\">check out posts tagged with 4.7 on the main development blog</a>, or look at a <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;resolution=fixed&amp;milestone=4.7&amp;group=component&amp;order=priority\">list of everything</a> that’s changed. There will be more developer notes to come, so keep an eye out for those as well.</p>\n<p><strong>If you think you’ve found a bug</strong>, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://make.wordpress.org/core/reports/\">file one on WordPress Trac</a>, where you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</p>\n<p>Happy testing, and please enjoy this extended haiku break, courtesy of <a href=\"https://profiles.wordpress.org/ramiabraham\">Rami Abraham</a><em>.</em></p>\n<p><em>Exquisite endpoints</em><br />\n<em>Extol epic exabytes</em><br />\n<em>Enabling earthlings</em></p>\n<p><em>Careful interfaces</em><br />\n<em>Considerately conjured</em><br />\n<em>Customizer chic</em></p>\n<p><em>Ring in the new year</em><br />\n<em>With elegance and balance</em><br />\n<em>Twenty Seventeen</em></p>\n<p><em>Hooks hook healthily</em><br />\n<em>17817</em><br />\n<em>Sane iterations</em></p>\n<p><em>Admin in your tongue<br />\nOne site, many languages<br />\nWe all speak WordPress</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:\"4535\";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:45:\"\n		\n		\n		\n		\n				\n		\n		\n		\n		\n\n		\n		\n				\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"Join Us Again for Global WordPress Translation Day\";s: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:86:\"https://wordpress.org/news/2016/10/join-us-again-for-global-wordpress-translation-day/\";s: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, 14 Oct 2016 13:33: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:5:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:19:\"contributor weekend\";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:32:\"global wordpress translation day\";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:5:{s:4:\"data\";s:9:\"polyglots\";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:5:{s:4:\"data\";s:12:\"translations\";s: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=4516\";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:\"The WordPress Polyglots team is organizing the second Global WordPress Translation Day on November 12th. Everyone is invited to join – from anywhere in the world! Translating is one of the easiest ways to get involved with WordPress and contribute to the project. Global WordPress Translation Day is your chance to learn more about translating WordPress, meet [&#8230;]\";s: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:\"Petya Raykovska\";s: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:4273:\"<p>The WordPress Polyglots team is organizing the second <a href=\"https://wptranslationday.org/\">Global WordPress Translation Day</a> on November 12th. Everyone is invited to join – from anywhere in the world!</p>\n<p>Translating is one of the easiest ways to get involved with WordPress and contribute to the project. Global WordPress Translation Day is your chance to learn more about translating WordPress, meet people from all over the world, and <a href=\"https://make.wordpress.org/polyglots/teams\">translate WordPress into one of more than 160 languages</a>.</p>\n<h3>Join us on November 12th from anywhere in the world</h3>\n<p>The translation day starts on Saturday, November 12th, 2016, at 0:00 UTC and ends 24 hours later. <a href=\"http://arewemeetingyet.com/UTC/2016-11-12/00:00/Global%20WordPress%20Translation%20Day%202\">See what time that is for you!</a> You can join right from the start, or any time it&#8217;s convenient for you throughout the day.</p>\n<h3>What are we doing?</h3>\n<p>Local contributor days are happening all over the world, and are a great way to get involved. <a href=\"https://www.google.com/maps/d/viewer?mid=12Gni4JMfShyWHPqGNwh5-PMneMM&amp;usp=sharing\">Check out this map</a> to see if there&#8217;s already a local event happening near you. Can&#8217;t find one? <a href=\"https://make.wordpress.org/polyglots/2016/09/22/global-wordpress-translation-day-2-on-november-12th-2016/\">Organize a local event!</a></p>\n<p>At the same time, <a href=\"https://www.crowdcast.io/e/gwtd2/register\">join the community for 24 hours of live-streamed, remote sessions</a> in numerous languages. Sessions will cover localization, internationalization, and contributing in your language.</p>\n<h3>Who&#8217;s it for?</h3>\n<p>Whether you&#8217;re new to translating and want to learn how to translate, or an experienced translation editor building a strong team, the translation day is for <i>you</i>. Developers will also enjoy topics from experienced contributors, whether you&#8217;re learning about internationalization and or want to find more translators for your themes and plugins. There&#8217;s a session for everyone!</p>\n<h3>Get Involved</h3>\n<p>Joining is easy! On November 12th, in your own timezone, <a href=\"https://translate.wordpress.org\">translate WordPress</a> or your favorite plugins and themes into your language, while watching live sessions over the course of the day.</p>\n<p>Want to get more involved? <a href=\"https://make.wordpress.org/polyglots/2016/09/22/global-wordpress-translation-day-2-on-november-12th-2016/\">Sign up to organize a local event</a> and invite your local community to translate together on November 12th. Events can be formal or completely informal – grab your laptop and a couple of friends, and head to a local coffee shop to translate for an hour or two.</p>\n<h3>Can you get involved if you only speak English?</h3>\n<p>Absolutely! Even if you only speak English, there are great sessions about internationalization that can benefit every developer. There&#8217;s also lots of English variants that need your help! For example, English is spoken and written differently in Australia, Canada, New Zealand, South Africa, and the United Kingdom. You can learn about these differences and why these variants are important during the sessions.</p>\n<p>And if you’re feeling fun, try translating WordPress into emoji! Yep, we have a translation of WordPress in emoji! <img src=\"https://s.w.org/images/core/emoji/2.2.1/72x72/1f30e.png\" alt=\"🌎\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /><img src=\"https://s.w.org/images/core/emoji/2.2.1/72x72/1f30d.png\" alt=\"🌍\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /><img src=\"https://s.w.org/images/core/emoji/2.2.1/72x72/1f30f.png\" alt=\"🌏\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></p>\n<h3>Questions?</h3>\n<p>If you have any questions, the polyglots team and the event organizers hang out in <a href=\"http://wordpress.slack.com/messages/polyglots/\">#polyglots in Slack</a> and are happy to help! (Get an invite to Slack at <a href=\"https://chat.wordpress.org\">chat.wordpress.org</a>.)</p>\n<p>Sign up to take part in the event on the <a href=\"https://wptranslationday.org/\">official website</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:\"4516\";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:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WordPress 4.6.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/2016/09/wordpress-4-6-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, 07 Sep 2016 15:52:09 +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.6\";s: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=4507\";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:377:\"WordPress 4.6.1 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.6 and earlier are affected by two security issues: a cross-site scripting vulnerability via image filename, reported by SumOfPwn researcher Cengiz Han Sahin; and a path traversal vulnerability in [&#8230;]\";s: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:\"Jeremy Felt\";s: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:2757:\"<p>WordPress 4.6.1 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.6 and earlier are affected by two security issues: a cross-site scripting vulnerability via image filename, reported by SumOfPwn researcher <a href=\"https://twitter.com/cengizhansahin\">Cengiz Han Sahin</a>; and a path traversal vulnerability in the upgrade package uploader, reported by <a href=\"https://dominikschilling.de/\">Dominik Schilling</a> from the WordPress security team.</p>\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.6.1 fixes 15 bugs from 4.6. For more information, see the <a href=\"https://codex.wordpress.org/Version_4.6.1\">release notes</a> or consult the <a href=\"https://core.trac.wordpress.org/query?milestone=4.6.1\">list of changes</a>.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.6.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.6.1.</p>\n<p>Thanks to everyone who contributed to 4.6.1:</p>\n<p><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/chaos-engine\">Chaos Engine</a>, <a href=\"https://profiles.wordpress.org/danielkanchev\">Daniel Kanchev</a>, <a href=\"https://profiles.wordpress.org/dd32\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/drewapicture\">Drew Jaynes</a>, <a href=\"https://profiles.wordpress.org/flixos90\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/frozzare\">Fredrik Forsmo</a>, <a href=\"https://profiles.wordpress.org/pento\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/geminorum\">geminorum</a>, <a href=\"https://profiles.wordpress.org/iandunn\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/ionutst\">Ionut Stanciu</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/joemcgill\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/clorith\">Marius L. J. (Clorith)</a>, <a href=\"https://profiles.wordpress.org/swissspidy\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/rpayne7264\">Robert D Payne</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov\">Sergey Biryukov</a>, and <a href=\"https://profiles.wordpress.org/nmt90\">Triet Minh</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:\"4507\";s: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:\"Tue, 20 Dec 2016 18:09:57 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, 06 Dec 2016 19:27:41 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");
INSERT INTO `wp_options` VALUES("10084", "_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9", "1482300598", "no");
INSERT INTO `wp_options` VALUES("10085", "_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9", "1482257398", "no");
INSERT INTO `wp_options` VALUES("10037", "swpsmtp_options", "a:3:{s:16:\"from_email_field\";s:31:\"candice@infinitymarketing.co.nz\";s:15:\"from_name_field\";s:18:\"Infinity Marketing\";s:13:\"smtp_settings\";a:6:{s:4:\"host\";s:14:\"smtp.gmail.com\";s:15:\"type_encryption\";s:3:\"tls\";s:4:\"port\";s:3:\"587\";s:13:\"autentication\";s:3:\"yes\";s:8:\"username\";s:31:\"candice@infinitymarketing.co.nz\";s:8:\"password\";s:12:\"TGVpZ2gxOTg2\";}}", "yes");
INSERT INTO `wp_options` VALUES("10044", "duplicator_settings", "a:10:{s:7:\"version\";s:6:\"1.1.26\";s:18:\"uninstall_settings\";b:1;s:15:\"uninstall_files\";b:1;s:16:\"uninstall_tables\";b:1;s:13:\"package_debug\";b:0;s:17:\"package_mysqldump\";b:0;s:22:\"package_mysqldump_path\";s:0:\"\";s:24:\"package_phpdump_qrylimit\";s:3:\"100\";s:17:\"package_zip_flush\";b:0;s:20:\"storage_htaccess_off\";b:0;}", "yes");
INSERT INTO `wp_options` VALUES("10002", "_site_transient_timeout_browser_f90f9d5b5a1bb1d6e2289490ecf74ebb", "1482806849", "no");
INSERT INTO `wp_options` VALUES("10003", "_site_transient_browser_f90f9d5b5a1bb1d6e2289490ecf74ebb", "a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:4:\"50.0\";s:10:\"update_url\";s:23:\"http://www.firefox.com/\";s:7:\"img_src\";s:50:\"http://s.wordpress.org/images/browsers/firefox.png\";s:11:\"img_src_ssl\";s:49:\"https://wordpress.org/images/browsers/firefox.png\";s:15:\"current_version\";s:2:\"16\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}", "no");
INSERT INTO `wp_options` VALUES("10029", "_site_transient_update_themes", "O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1482235330;s:7:\"checked\";a:2:{s:4:\"Divi\";s:6:\"3.0.24\";s:18:\"infinity-marketing\";s:0:\"\";}s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}}", "no");
INSERT INTO `wp_options` VALUES("10056", "wpseo_sitemap_author_cache_validator", "2I2Q2", "no");
INSERT INTO `wp_options` VALUES("10061", "_site_transient_timeout_browser_3724cf524ce46cd3376f6aebb4c04837", "1482829234", "no");
INSERT INTO `wp_options` VALUES("10062", "_site_transient_browser_3724cf524ce46cd3376f6aebb4c04837", "a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"55.0.2883.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");
INSERT INTO `wp_options` VALUES("10043", "_site_transient_update_plugins", "O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1482257481;s:7:\"checked\";a:14:{s:19:\"akismet/akismet.php\";s:3:\"3.2\";s:23:\"antivirus/antivirus.php\";s:5:\"1.3.9\";s:15:\"bloom/bloom.php\";s:5:\"1.1.8\";s:41:\"page-or-post-clone/page-or-post-clone.php\";s:3:\"0.1\";s:25:\"duplicator/duplicator.php\";s:6:\"1.1.26\";s:29:\"easy-wp-smtp/easy-wp-smtp.php\";s:5:\"1.2.3\";s:25:\"formidable/formidable.php\";s:7:\"2.02.12\";s:41:\"better-wp-security/better-wp-security.php\";s:5:\"5.9.0\";s:45:\"limit-login-attempts/limit-login-attempts.php\";s:5:\"1.7.1\";s:19:\"monarch/monarch.php\";s:5:\"1.3.2\";s:50:\"quttera-web-malware-scanner/quttera_wm_scanner.php\";s:8:\"3.0.6.36\";s:48:\"ultimate-landing-page/Ultimate_Landing_Pages.php\";s:5:\"3.1.2\";s:39:\"wp-facebook-pixel/wp-facebook-pixel.php\";s:3:\"4.3\";s:24:\"wordpress-seo/wp-seo.php\";s:3:\"4.0\";}s:8:\"response\";a:1:{s:24:\"wordpress-seo/wp-seo.php\";O:8:\"stdClass\":8:{s:2:\"id\";s:4:\"5899\";s:4:\"slug\";s:13:\"wordpress-seo\";s:6:\"plugin\";s:24:\"wordpress-seo/wp-seo.php\";s:11:\"new_version\";s:5:\"4.0.2\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/wordpress-seo/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/wordpress-seo.4.0.2.zip\";s:6:\"tested\";s:3:\"4.7\";s:13:\"compatibility\";O:8:\"stdClass\":1:{s:6:\"scalar\";O:8:\"stdClass\":1:{s:6:\"scalar\";b:0;}}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:11:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:2:\"15\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:3:\"3.2\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/plugin/akismet.3.2.zip\";}s:23:\"antivirus/antivirus.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:4:\"6786\";s:4:\"slug\";s:9:\"antivirus\";s:6:\"plugin\";s:23:\"antivirus/antivirus.php\";s:11:\"new_version\";s:5:\"1.3.9\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/antivirus/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/antivirus.1.3.9.zip\";}s:41:\"page-or-post-clone/page-or-post-clone.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"71330\";s:4:\"slug\";s:18:\"page-or-post-clone\";s:6:\"plugin\";s:41:\"page-or-post-clone/page-or-post-clone.php\";s:11:\"new_version\";s:3:\"0.1\";s:3:\"url\";s:49:\"https://wordpress.org/plugins/page-or-post-clone/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/page-or-post-clone.zip\";}s:25:\"duplicator/duplicator.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"22600\";s:4:\"slug\";s:10:\"duplicator\";s:6:\"plugin\";s:25:\"duplicator/duplicator.php\";s:11:\"new_version\";s:6:\"1.1.26\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/duplicator/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/duplicator.1.1.26.zip\";}s:29:\"easy-wp-smtp/easy-wp-smtp.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"40147\";s:4:\"slug\";s:12:\"easy-wp-smtp\";s:6:\"plugin\";s:29:\"easy-wp-smtp/easy-wp-smtp.php\";s:11:\"new_version\";s:5:\"1.2.3\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/easy-wp-smtp/\";s:7:\"package\";s:55:\"https://downloads.wordpress.org/plugin/easy-wp-smtp.zip\";}s:25:\"formidable/formidable.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"11762\";s:4:\"slug\";s:10:\"formidable\";s:6:\"plugin\";s:25:\"formidable/formidable.php\";s:11:\"new_version\";s:7:\"2.02.12\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/formidable/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/formidable.2.02.12.zip\";}s:41:\"better-wp-security/better-wp-security.php\";O:8:\"stdClass\":7:{s:2:\"id\";s:5:\"18308\";s:4:\"slug\";s:18:\"better-wp-security\";s:6:\"plugin\";s:41:\"better-wp-security/better-wp-security.php\";s:11:\"new_version\";s:5:\"5.9.0\";s:3:\"url\";s:49:\"https://wordpress.org/plugins/better-wp-security/\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/plugin/better-wp-security.5.9.0.zip\";s:14:\"upgrade_notice\";s:93:\"Version 5.9.0 adds a new feature to block REST API requests. It is recommended for all users.\";}s:45:\"limit-login-attempts/limit-login-attempts.php\";O:8:\"stdClass\":7:{s:2:\"id\";s:4:\"6158\";s:4:\"slug\";s:20:\"limit-login-attempts\";s:6:\"plugin\";s:45:\"limit-login-attempts/limit-login-attempts.php\";s:11:\"new_version\";s:5:\"1.7.1\";s:3:\"url\";s:51:\"https://wordpress.org/plugins/limit-login-attempts/\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/plugin/limit-login-attempts.1.7.1.zip\";s:14:\"upgrade_notice\";s:249:\"Users of version 1.6.2 and 1.7.0 should upgrade immediately. There was a problem with &quot;auth cookie&quot; lockout enforcement. Lockout of normal password login attempts still worked as it should. Please see plugin Changelog for more information.\";}s:50:\"quttera-web-malware-scanner/quttera_wm_scanner.php\";O:8:\"stdClass\":7:{s:2:\"id\";s:5:\"31875\";s:4:\"slug\";s:27:\"quttera-web-malware-scanner\";s:6:\"plugin\";s:50:\"quttera-web-malware-scanner/quttera_wm_scanner.php\";s:11:\"new_version\";s:8:\"3.0.6.36\";s:3:\"url\";s:58:\"https://wordpress.org/plugins/quttera-web-malware-scanner/\";s:7:\"package\";s:79:\"https://downloads.wordpress.org/plugin/quttera-web-malware-scanner.3.0.6.36.zip\";s:14:\"upgrade_notice\";s:16:\"Added new shells\";}s:48:\"ultimate-landing-page/Ultimate_Landing_Pages.php\";O:8:\"stdClass\":7:{s:2:\"id\";s:5:\"52787\";s:4:\"slug\";s:21:\"ultimate-landing-page\";s:6:\"plugin\";s:48:\"ultimate-landing-page/Ultimate_Landing_Pages.php\";s:11:\"new_version\";s:5:\"3.1.2\";s:3:\"url\";s:52:\"https://wordpress.org/plugins/ultimate-landing-page/\";s:7:\"package\";s:70:\"https://downloads.wordpress.org/plugin/ultimate-landing-page.3.1.2.zip\";s:14:\"upgrade_notice\";s:24:\"Font Selector Bug Fixed.\";}s:39:\"wp-facebook-pixel/wp-facebook-pixel.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"67160\";s:4:\"slug\";s:17:\"wp-facebook-pixel\";s:6:\"plugin\";s:39:\"wp-facebook-pixel/wp-facebook-pixel.php\";s:11:\"new_version\";s:3:\"4.3\";s:3:\"url\";s:48:\"https://wordpress.org/plugins/wp-facebook-pixel/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/wp-facebook-pixel.zip\";}}}", "no");
INSERT INTO `wp_options` VALUES("10054", "_transient_timeout_wpseo-dashboard-totals", "1482301910", "no");
INSERT INTO `wp_options` VALUES("10055", "_transient_wpseo-dashboard-totals", "a:1:{i:1;a:1:{i:2;a:5:{s:8:\"seo_rank\";s:4:\"good\";s:5:\"title\";s:25:\"Posts with good SEO score\";s:5:\"class\";s:17:\"wpseo-glance-good\";s:10:\"icon_class\";s:4:\"good\";s:5:\"count\";s:1:\"1\";}}}", "no");
INSERT INTO `wp_options` VALUES("7880", "_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;}", "yes");
INSERT INTO `wp_options` VALUES("2384", "category_children", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("2230", "limit_login_lockouts", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("2231", "limit_login_logged", "a:46:{s:11:\"52.36.84.92\";a:2:{s:17:\"infinitymarketing\";i:1;s:5:\"admin\";i:3;}s:14:\"137.116.205.42\";a:1:{s:5:\"admin\";i:4;}s:13:\"37.187.159.92\";a:1:{s:5:\"admin\";i:1;}s:15:\"195.154.226.186\";a:1:{s:2:\"co\";i:1;}s:14:\"46.166.190.200\";a:1:{s:5:\"admin\";i:1;}s:13:\"208.109.52.46\";a:1:{s:5:\"admin\";i:1;}s:13:\"213.111.196.4\";a:1:{s:5:\"admin\";i:1;}s:14:\"213.111.196.25\";a:1:{s:5:\"admin\";i:1;}s:15:\"178.162.211.200\";a:1:{s:5:\"admin\";i:1;}s:13:\"91.200.12.113\";a:1:{s:5:\"admin\";i:2;}s:11:\"46.17.97.79\";a:1:{s:5:\"admin\";i:1;}s:14:\"178.162.205.24\";a:1:{s:5:\"admin\";i:1;}s:14:\"193.201.225.21\";a:1:{s:5:\"admin\";i:3;}s:14:\"178.162.205.26\";a:1:{s:5:\"admin\";i:1;}s:15:\"178.162.211.213\";a:1:{s:5:\"admin\";i:1;}s:15:\"195.154.232.138\";a:1:{s:2:\"co\";i:1;}s:13:\"61.216.40.225\";a:1:{s:5:\"admin\";i:1;}s:15:\"195.154.241.119\";a:1:{s:2:\"co\";i:1;}s:14:\"95.110.194.252\";a:1:{s:5:\"admin\";i:1;}s:12:\"36.75.189.55\";a:1:{s:5:\"admin\";i:1;}s:14:\"119.76.121.153\";a:1:{s:5:\"admin\";i:1;}s:12:\"14.98.30.248\";a:1:{s:17:\"infinitymarketing\";i:1;}s:12:\"92.62.188.98\";a:1:{s:17:\"infinitymarketing\";i:1;}s:14:\"85.104.173.108\";a:1:{s:5:\"admin\";i:1;}s:15:\"195.154.236.110\";a:1:{s:2:\"co\";i:1;}s:15:\"195.154.240.170\";a:1:{s:2:\"co\";i:1;}s:14:\"61.148.124.108\";a:1:{s:5:\"admin\";i:1;}s:11:\"80.67.6.243\";a:1:{s:5:\"admin\";i:1;}s:14:\"117.253.53.242\";a:1:{s:5:\"admin\";i:1;}s:14:\"200.19.203.102\";a:1:{s:5:\"admin\";i:1;}s:15:\"195.154.241.120\";a:1:{s:2:\"co\";i:1;}s:15:\"194.169.217.173\";a:1:{s:5:\"admin\";i:2;}s:14:\"109.11.214.106\";a:1:{s:5:\"admin\";i:3;}s:15:\"213.251.182.111\";a:1:{s:17:\"infinitymarketing\";i:1;}s:13:\"89.46.104.189\";a:1:{s:17:\"infinitymarketing\";i:1;}s:13:\"177.102.236.6\";a:1:{s:4:\"your\";i:1;}s:14:\"194.126.224.33\";a:1:{s:5:\"small\";i:1;}s:11:\"5.142.69.33\";a:1:{s:5:\"admin\";i:1;}s:11:\"109.94.10.6\";a:1:{s:5:\"admin\";i:1;}s:14:\"185.110.46.162\";a:1:{s:20:\"infinitymarketing.co\";i:1;}s:14:\"94.231.190.238\";a:1:{s:20:\"infinitymarketing.co\";i:1;}s:13:\"178.88.15.202\";a:1:{s:4:\"test\";i:1;}s:14:\"125.227.89.130\";a:1:{s:3:\"www\";i:1;}s:13:\"31.173.164.97\";a:1:{s:4:\"test\";i:1;}s:13:\"122.3.127.124\";a:1:{s:3:\"www\";i:1;}s:13:\"185.57.29.107\";a:1:{s:4:\"test\";i:1;}}", "no");
INSERT INTO `wp_options` VALUES("2232", "limit_login_lockouts_total", "58", "no");
INSERT INTO `wp_options` VALUES("2220", "limit_login_retries", "a:17:{s:13:\"50.62.177.143\";i:2;s:11:\"94.26.26.35\";i:1;s:13:\"122.3.127.124\";i:4;s:14:\"112.65.168.126\";i:1;s:15:\"117.244.103.245\";i:1;s:14:\"49.206.110.144\";i:1;s:13:\"185.57.29.107\";i:4;s:11:\"84.47.38.80\";i:1;s:12:\"82.181.35.68\";i:1;s:14:\"41.211.165.166\";i:1;s:12:\"188.25.71.31\";i:1;s:14:\"184.168.27.192\";i:1;s:13:\"176.92.191.21\";i:1;s:13:\"49.185.236.49\";i:1;s:15:\"173.201.196.222\";i:1;s:13:\"185.28.251.74\";i:1;s:13:\"123.24.242.58\";i:1;}", "no");
INSERT INTO `wp_options` VALUES("2221", "limit_login_retries_valid", "a:17:{s:13:\"50.62.177.143\";i:1482259996;s:11:\"94.26.26.35\";i:1482257844;s:13:\"122.3.127.124\";i:1482259409;s:14:\"112.65.168.126\";i:1482259467;s:15:\"117.244.103.245\";i:1482259480;s:14:\"49.206.110.144\";i:1482261772;s:13:\"185.57.29.107\";i:1482265619;s:11:\"84.47.38.80\";i:1482266479;s:12:\"82.181.35.68\";i:1482269996;s:14:\"41.211.165.166\";i:1482270751;s:12:\"188.25.71.31\";i:1482271306;s:14:\"184.168.27.192\";i:1482274275;s:13:\"176.92.191.21\";i:1482274384;s:13:\"49.185.236.49\";i:1482280516;s:15:\"173.201.196.222\";i:1482280951;s:13:\"185.28.251.74\";i:1482285755;s:13:\"123.24.242.58\";i:1482292371;}", "no");
INSERT INTO `wp_options` VALUES("1059", "widget_akismet_widget", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("8417", "_wp_session_expires_9e2ed085b2eaf76c2125958d6c67ee1c", "2987890778", "no");
INSERT INTO `wp_options` VALUES("8419", "_site_transient_timeout_available_translations", "1478165697", "no");
INSERT INTO `wp_options` VALUES("8420", "_site_transient_available_translations", "a:86:{s:2:\"ar\";a:8:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-16 18:36:09\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/ar.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:2;s:3:\"ara\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:3:\"ary\";a:8:{s:8:\"language\";s:3:\"ary\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-09-21 10:19:10\";s:12:\"english_name\";s:15:\"Moroccan Arabic\";s:11:\"native_name\";s:31:\"العربية المغربية\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.6.1/ary.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:3;s:3:\"ary\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:2:\"az\";a:8:{s:8:\"language\";s:2:\"az\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-09-29 08:38:56\";s:12:\"english_name\";s:11:\"Azerbaijani\";s:11:\"native_name\";s:16:\"Azərbaycan dili\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/az.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:2;s:3:\"aze\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Davam\";}}s:3:\"azb\";a:8:{s:8:\"language\";s:3:\"azb\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2015-12-11 22:42:10\";s:12:\"english_name\";s:17:\"South Azerbaijani\";s:11:\"native_name\";s:29:\"گؤنئی آذربایجان\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.4.2/azb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:3;s:3:\"azb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"bg_BG\";a:8:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-10-24 13:13:07\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/bg_BG.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bg\";i:2;s:3:\"bul\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Напред\";}}s:5:\"bn_BD\";a:8:{s:8:\"language\";s:5:\"bn_BD\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-10-20 16:53:20\";s:12:\"english_name\";s:7:\"Bengali\";s:11:\"native_name\";s:15:\"বাংলা\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/bn_BD.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"bn\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:23:\"এগিয়ে চল.\";}}s:2:\"bo\";a:8:{s:8:\"language\";s:2:\"bo\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-09-05 09:44:12\";s:12:\"english_name\";s:7:\"Tibetan\";s:11:\"native_name\";s:21:\"བོད་ཡིག\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/bo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bo\";i:2;s:3:\"tib\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"མུ་མཐུད།\";}}s:5:\"bs_BA\";a:8:{s:8:\"language\";s:5:\"bs_BA\";s:7:\"version\";s:5:\"4.5.4\";s:7:\"updated\";s:19:\"2016-04-19 23:16:37\";s:12:\"english_name\";s:7:\"Bosnian\";s:11:\"native_name\";s:8:\"Bosanski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.5.4/bs_BA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bs\";i:2;s:3:\"bos\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:2:\"ca\";a:8:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-10-20 10:29:54\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/ca.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ca\";i:2;s:3:\"cat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:3:\"ceb\";a:8:{s:8:\"language\";s:3:\"ceb\";s:7:\"version\";s:5:\"4.4.3\";s:7:\"updated\";s:19:\"2016-02-16 15:34:57\";s:12:\"english_name\";s:7:\"Cebuano\";s:11:\"native_name\";s:7:\"Cebuano\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.4.3/ceb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"ceb\";i:3;s:3:\"ceb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Padayun\";}}s:5:\"cs_CZ\";a:8:{s:8:\"language\";s:5:\"cs_CZ\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2016-02-11 18:32:36\";s:12:\"english_name\";s:5:\"Czech\";s:11:\"native_name\";s:12:\"Čeština‎\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.4.2/cs_CZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cs\";i:2;s:3:\"ces\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Pokračovat\";}}s:2:\"cy\";a:8:{s:8:\"language\";s:2:\"cy\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-10-01 16:18:09\";s:12:\"english_name\";s:5:\"Welsh\";s:11:\"native_name\";s:7:\"Cymraeg\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/cy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cy\";i:2;s:3:\"cym\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Parhau\";}}s:5:\"da_DK\";a:8:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-09-29 14:03:59\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/da_DK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"da\";i:2;s:3:\"dan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Forts&#230;t\";}}s:14:\"de_CH_informal\";a:8:{s:8:\"language\";s:14:\"de_CH_informal\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-15 12:59:43\";s:12:\"english_name\";s:30:\"German (Switzerland, Informal)\";s:11:\"native_name\";s:21:\"Deutsch (Schweiz, Du)\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/translation/core/4.6.1/de_CH_informal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:12:\"de_DE_formal\";a:8:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-10-27 22:24:39\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/4.6.1/de_DE_formal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_DE\";a:8:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-10-27 22:24:20\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/de_DE.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_CH\";a:8:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-15 12:56:13\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/de_CH.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:2:\"el\";a:8:{s:8:\"language\";s:2:\"el\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-10-12 04:42:01\";s:12:\"english_name\";s:5:\"Greek\";s:11:\"native_name\";s:16:\"Ελληνικά\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/el.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"el\";i:2;s:3:\"ell\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Συνέχεια\";}}s:5:\"en_GB\";a:8:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-11 22:36:25\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/en_GB.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_CA\";a:8:{s:8:\"language\";s:5:\"en_CA\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-11 23:19:29\";s:12:\"english_name\";s:16:\"English (Canada)\";s:11:\"native_name\";s:16:\"English (Canada)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/en_CA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_AU\";a:8:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-12 02:18:44\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/en_AU.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_ZA\";a:8:{s:8:\"language\";s:5:\"en_ZA\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-16 11:54:12\";s:12:\"english_name\";s:22:\"English (South Africa)\";s:11:\"native_name\";s:22:\"English (South Africa)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/en_ZA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_NZ\";a:8:{s:8:\"language\";s:5:\"en_NZ\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-20 07:14:07\";s:12:\"english_name\";s:21:\"English (New Zealand)\";s:11:\"native_name\";s:21:\"English (New Zealand)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/en_NZ.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"eo\";a:8:{s:8:\"language\";s:2:\"eo\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-10-02 22:25:56\";s:12:\"english_name\";s:9:\"Esperanto\";s:11:\"native_name\";s:9:\"Esperanto\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/eo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eo\";i:2;s:3:\"epo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Daŭrigi\";}}s:5:\"es_CL\";a:8:{s:8:\"language\";s:5:\"es_CL\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-17 22:11:44\";s:12:\"english_name\";s:15:\"Spanish (Chile)\";s:11:\"native_name\";s:17:\"Español de Chile\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/es_CL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_MX\";a:8:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-29 15:07:52\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"Español de México\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/es_MX.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_GT\";a:8:{s:8:\"language\";s:5:\"es_GT\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-17 17:56:31\";s:12:\"english_name\";s:19:\"Spanish (Guatemala)\";s:11:\"native_name\";s:21:\"Español de Guatemala\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/es_GT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_ES\";a:8:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-10-31 08:03:58\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/es_ES.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"es\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CO\";a:8:{s:8:\"language\";s:5:\"es_CO\";s:7:\"version\";s:6:\"4.3-RC\";s:7:\"updated\";s:19:\"2015-08-04 06:10:33\";s:12:\"english_name\";s:18:\"Spanish (Colombia)\";s:11:\"native_name\";s:20:\"Español de Colombia\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.3-RC/es_CO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_PE\";a:8:{s:8:\"language\";s:5:\"es_PE\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-09-09 09:36:22\";s:12:\"english_name\";s:14:\"Spanish (Peru)\";s:11:\"native_name\";s:17:\"Español de Perú\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/es_PE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_VE\";a:8:{s:8:\"language\";s:5:\"es_VE\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-17 12:34:44\";s:12:\"english_name\";s:19:\"Spanish (Venezuela)\";s:11:\"native_name\";s:21:\"Español de Venezuela\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/es_VE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_AR\";a:8:{s:8:\"language\";s:5:\"es_AR\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-19 13:48:04\";s:12:\"english_name\";s:19:\"Spanish (Argentina)\";s:11:\"native_name\";s:21:\"Español de Argentina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/es_AR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"es\";i:2;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"et\";a:8:{s:8:\"language\";s:2:\"et\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-10-22 16:41:36\";s:12:\"english_name\";s:8:\"Estonian\";s:11:\"native_name\";s:5:\"Eesti\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/et.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"et\";i:2;s:3:\"est\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Jätka\";}}s:2:\"eu\";a:8:{s:8:\"language\";s:2:\"eu\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-10-27 18:10:49\";s:12:\"english_name\";s:6:\"Basque\";s:11:\"native_name\";s:7:\"Euskara\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/eu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eu\";i:2;s:3:\"eus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Jarraitu\";}}s:5:\"fa_IR\";a:8:{s:8:\"language\";s:5:\"fa_IR\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-10-23 20:20:40\";s:12:\"english_name\";s:7:\"Persian\";s:11:\"native_name\";s:10:\"فارسی\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/fa_IR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:2:\"fi\";a:8:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-15 18:30:48\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/fi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fi\";i:2;s:3:\"fin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Jatka\";}}s:5:\"fr_CA\";a:8:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-15 19:02:20\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/fr_CA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_FR\";a:8:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-11-02 11:49:52\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/fr_FR.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"fr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_BE\";a:8:{s:8:\"language\";s:5:\"fr_BE\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-10-10 18:42:25\";s:12:\"english_name\";s:16:\"French (Belgium)\";s:11:\"native_name\";s:21:\"Français de Belgique\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/fr_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:2:\"gd\";a:8:{s:8:\"language\";s:2:\"gd\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-23 17:41:37\";s:12:\"english_name\";s:15:\"Scottish Gaelic\";s:11:\"native_name\";s:9:\"Gàidhlig\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/gd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"gd\";i:2;s:3:\"gla\";i:3;s:3:\"gla\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"Lean air adhart\";}}s:5:\"gl_ES\";a:8:{s:8:\"language\";s:5:\"gl_ES\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-21 15:44:17\";s:12:\"english_name\";s:8:\"Galician\";s:11:\"native_name\";s:6:\"Galego\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/gl_ES.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gl\";i:2;s:3:\"glg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"gu\";a:8:{s:8:\"language\";s:2:\"gu\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-10-08 11:09:06\";s:12:\"english_name\";s:8:\"Gujarati\";s:11:\"native_name\";s:21:\"ગુજરાતી\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/gu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gu\";i:2;s:3:\"guj\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:31:\"ચાલુ રાખવું\";}}s:3:\"haz\";a:8:{s:8:\"language\";s:3:\"haz\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2015-12-05 00:59:09\";s:12:\"english_name\";s:8:\"Hazaragi\";s:11:\"native_name\";s:15:\"هزاره گی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.4.2/haz.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"haz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:5:\"he_IL\";a:8:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-09-25 19:56:49\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/he_IL.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"he\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"המשך\";}}s:5:\"hi_IN\";a:8:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-09-03 13:43:01\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/hi_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hi\";i:2;s:3:\"hin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"जारी\";}}s:2:\"hr\";a:8:{s:8:\"language\";s:2:\"hr\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-09-07 15:12:28\";s:12:\"english_name\";s:8:\"Croatian\";s:11:\"native_name\";s:8:\"Hrvatski\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/hr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hr\";i:2;s:3:\"hrv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:5:\"hu_HU\";a:8:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-10-27 09:44:27\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/hu_HU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hu\";i:2;s:3:\"hun\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Folytatás\";}}s:2:\"hy\";a:8:{s:8:\"language\";s:2:\"hy\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2016-02-04 07:13:54\";s:12:\"english_name\";s:8:\"Armenian\";s:11:\"native_name\";s:14:\"Հայերեն\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.4.2/hy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hy\";i:2;s:3:\"hye\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Շարունակել\";}}s:5:\"id_ID\";a:8:{s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-09-22 05:34:53\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/id_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"id\";i:2;s:3:\"ind\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Lanjutkan\";}}s:5:\"is_IS\";a:8:{s:8:\"language\";s:5:\"is_IS\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-10-23 09:14:42\";s:12:\"english_name\";s:9:\"Icelandic\";s:11:\"native_name\";s:9:\"Íslenska\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/is_IS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"is\";i:2;s:3:\"isl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Áfram\";}}s:5:\"it_IT\";a:8:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-10-07 18:41:52\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/it_IT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"it\";i:2;s:3:\"ita\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:2:\"ja\";a:8:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-11-01 15:23:06\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/ja.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"ja\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"続ける\";}}s:5:\"ka_GE\";a:8:{s:8:\"language\";s:5:\"ka_GE\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-29 11:51:34\";s:12:\"english_name\";s:8:\"Georgian\";s:11:\"native_name\";s:21:\"ქართული\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/ka_GE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ka\";i:2;s:3:\"kat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"გაგრძელება\";}}s:5:\"ko_KR\";a:8:{s:8:\"language\";s:5:\"ko_KR\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-09-24 07:18:31\";s:12:\"english_name\";s:6:\"Korean\";s:11:\"native_name\";s:9:\"한국어\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/ko_KR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ko\";i:2;s:3:\"kor\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"계속\";}}s:5:\"lt_LT\";a:8:{s:8:\"language\";s:5:\"lt_LT\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-11 21:29:34\";s:12:\"english_name\";s:10:\"Lithuanian\";s:11:\"native_name\";s:15:\"Lietuvių kalba\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/lt_LT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lt\";i:2;s:3:\"lit\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Tęsti\";}}s:2:\"lv\";a:8:{s:8:\"language\";s:2:\"lv\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-10-26 13:15:44\";s:12:\"english_name\";s:7:\"Latvian\";s:11:\"native_name\";s:16:\"Latviešu valoda\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/lv.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lv\";i:2;s:3:\"lav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Turpināt\";}}s:5:\"mk_MK\";a:8:{s:8:\"language\";s:5:\"mk_MK\";s:7:\"version\";s:5:\"4.5.4\";s:7:\"updated\";s:19:\"2016-05-12 13:55:28\";s:12:\"english_name\";s:10:\"Macedonian\";s:11:\"native_name\";s:31:\"Македонски јазик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.5.4/mk_MK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mk\";i:2;s:3:\"mkd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Продолжи\";}}s:2:\"mr\";a:8:{s:8:\"language\";s:2:\"mr\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-10-04 13:42:56\";s:12:\"english_name\";s:7:\"Marathi\";s:11:\"native_name\";s:15:\"मराठी\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/mr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mr\";i:2;s:3:\"mar\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"सुरु ठेवा\";}}s:5:\"ms_MY\";a:8:{s:8:\"language\";s:5:\"ms_MY\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-14 14:18:43\";s:12:\"english_name\";s:5:\"Malay\";s:11:\"native_name\";s:13:\"Bahasa Melayu\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/ms_MY.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ms\";i:2;s:3:\"msa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Teruskan\";}}s:5:\"my_MM\";a:8:{s:8:\"language\";s:5:\"my_MM\";s:7:\"version\";s:6:\"4.1.13\";s:7:\"updated\";s:19:\"2015-03-26 15:57:42\";s:12:\"english_name\";s:17:\"Myanmar (Burmese)\";s:11:\"native_name\";s:15:\"ဗမာစာ\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.1.13/my_MM.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"my\";i:2;s:3:\"mya\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:54:\"ဆက်လက်လုပ်ဆောင်ပါ။\";}}s:5:\"nb_NO\";a:8:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-16 13:09:49\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/nb_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nb\";i:2;s:3:\"nob\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsett\";}}s:5:\"nl_NL\";a:8:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-10-26 10:08:38\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/nl_NL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:12:\"nl_NL_formal\";a:8:{s:8:\"language\";s:12:\"nl_NL_formal\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-10-14 13:24:10\";s:12:\"english_name\";s:14:\"Dutch (Formal)\";s:11:\"native_name\";s:20:\"Nederlands (Formeel)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/4.6.1/nl_NL_formal.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nn_NO\";a:8:{s:8:\"language\";s:5:\"nn_NO\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-10-28 08:58:28\";s:12:\"english_name\";s:19:\"Norwegian (Nynorsk)\";s:11:\"native_name\";s:13:\"Norsk nynorsk\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/nn_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nn\";i:2;s:3:\"nno\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Hald fram\";}}s:3:\"oci\";a:8:{s:8:\"language\";s:3:\"oci\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-09-23 13:45:11\";s:12:\"english_name\";s:7:\"Occitan\";s:11:\"native_name\";s:7:\"Occitan\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.6.1/oci.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"oc\";i:2;s:3:\"oci\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Contunhar\";}}s:5:\"pl_PL\";a:8:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-09-22 09:54:16\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/pl_PL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pl\";i:2;s:3:\"pol\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Kontynuuj\";}}s:2:\"ps\";a:8:{s:8:\"language\";s:2:\"ps\";s:7:\"version\";s:6:\"4.1.13\";s:7:\"updated\";s:19:\"2015-03-29 22:19:48\";s:12:\"english_name\";s:6:\"Pashto\";s:11:\"native_name\";s:8:\"پښتو\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.1.13/ps.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ps\";i:2;s:3:\"pus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"دوام ورکړه\";}}s:5:\"pt_PT\";a:8:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-10-26 13:04:11\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/pt_PT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_BR\";a:8:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-10-26 20:21:25\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/pt_BR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pt\";i:2;s:3:\"por\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"ro_RO\";a:8:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-10-31 16:22:14\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/ro_RO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ro\";i:2;s:3:\"ron\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuă\";}}s:5:\"ru_RU\";a:8:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-30 19:40:04\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/ru_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ru\";i:2;s:3:\"rus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продолжить\";}}s:5:\"sk_SK\";a:8:{s:8:\"language\";s:5:\"sk_SK\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-10-13 10:00:06\";s:12:\"english_name\";s:6:\"Slovak\";s:11:\"native_name\";s:11:\"Slovenčina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/sk_SK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sk\";i:2;s:3:\"slk\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Pokračovať\";}}s:5:\"sl_SI\";a:8:{s:8:\"language\";s:5:\"sl_SI\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-18 16:23:26\";s:12:\"english_name\";s:9:\"Slovenian\";s:11:\"native_name\";s:13:\"Slovenščina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/sl_SI.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sl\";i:2;s:3:\"slv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Nadaljuj\";}}s:2:\"sq\";a:8:{s:8:\"language\";s:2:\"sq\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-14 07:00:01\";s:12:\"english_name\";s:8:\"Albanian\";s:11:\"native_name\";s:5:\"Shqip\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/sq.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sq\";i:2;s:3:\"sqi\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Vazhdo\";}}s:5:\"sr_RS\";a:8:{s:8:\"language\";s:5:\"sr_RS\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-12 16:41:17\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/sr_RS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sr\";i:2;s:3:\"srp\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"Настави\";}}s:5:\"sv_SE\";a:8:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-10-29 09:19:19\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/sv_SE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sv\";i:2;s:3:\"swe\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Fortsätt\";}}s:3:\"szl\";a:8:{s:8:\"language\";s:3:\"szl\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-09-24 19:58:14\";s:12:\"english_name\";s:8:\"Silesian\";s:11:\"native_name\";s:17:\"Ślōnskŏ gŏdka\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.6.1/szl.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"szl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:13:\"Kōntynuować\";}}s:2:\"th\";a:8:{s:8:\"language\";s:2:\"th\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-10-12 07:04:13\";s:12:\"english_name\";s:4:\"Thai\";s:11:\"native_name\";s:9:\"ไทย\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/th.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"th\";i:2;s:3:\"tha\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"ต่อไป\";}}s:2:\"tl\";a:8:{s:8:\"language\";s:2:\"tl\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2015-11-27 15:51:36\";s:12:\"english_name\";s:7:\"Tagalog\";s:11:\"native_name\";s:7:\"Tagalog\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.4.2/tl.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tl\";i:2;s:3:\"tgl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Magpatuloy\";}}s:5:\"tr_TR\";a:8:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-16 10:50:15\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/tr_TR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tr\";i:2;s:3:\"tur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Devam\";}}s:5:\"ug_CN\";a:8:{s:8:\"language\";s:5:\"ug_CN\";s:7:\"version\";s:5:\"4.5.4\";s:7:\"updated\";s:19:\"2016-06-22 12:27:05\";s:12:\"english_name\";s:6:\"Uighur\";s:11:\"native_name\";s:9:\"Uyƣurqə\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.5.4/ug_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ug\";i:2;s:3:\"uig\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:26:\"داۋاملاشتۇرۇش\";}}s:2:\"uk\";a:8:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-10-18 10:43:17\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.6.1/uk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uk\";i:2;s:3:\"ukr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продовжити\";}}s:2:\"vi\";a:8:{s:8:\"language\";s:2:\"vi\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2015-12-09 01:01:25\";s:12:\"english_name\";s:10:\"Vietnamese\";s:11:\"native_name\";s:14:\"Tiếng Việt\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.4.2/vi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"vi\";i:2;s:3:\"vie\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Tiếp tục\";}}s:5:\"zh_TW\";a:8:{s:8:\"language\";s:5:\"zh_TW\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-08-18 13:53:15\";s:12:\"english_name\";s:16:\"Chinese (Taiwan)\";s:11:\"native_name\";s:12:\"繁體中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/zh_TW.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}s:5:\"zh_HK\";a:8:{s:8:\"language\";s:5:\"zh_HK\";s:7:\"version\";s:5:\"4.6.1\";s:7:\"updated\";s:19:\"2016-10-10 01:34:25\";s:12:\"english_name\";s:19:\"Chinese (Hong Kong)\";s:11:\"native_name\";s:16:\"香港中文版	\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.6.1/zh_HK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}s:5:\"zh_CN\";a:8:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"4.5.4\";s:7:\"updated\";s:19:\"2016-04-17 03:29:01\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.5.4/zh_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"继续\";}}}", "no");
INSERT INTO `wp_options` VALUES("1103", "wpseo_sitemap_post_cache_validator", "Jne7", "no");
INSERT INTO `wp_options` VALUES("1106", "wpseo_sitemap_page_cache_validator", "JO22", "no");
INSERT INTO `wp_options` VALUES("1114", "wpseo_sitemap_revision_cache_validator", "JO24", "no");
INSERT INTO `wp_options` VALUES("10088", "_transient_timeout_feed_mod_b9388c83948825c1edaef0d856b7b109", "1482300598", "no");
INSERT INTO `wp_options` VALUES("10089", "_transient_feed_mod_b9388c83948825c1edaef0d856b7b109", "1482257398", "no");
INSERT INTO `wp_options` VALUES("10090", "_transient_timeout_dash_b4f9b57f26a94c90aaf68ebc0a62e7a8", "1482300598", "no");
INSERT INTO `wp_options` VALUES("10091", "_transient_dash_b4f9b57f26a94c90aaf68ebc0a62e7a8", "<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2016/12/vaughan/\'>WordPress 4.7 “Vaughan”</a> <span class=\"rss-date\">6 December, 2016</span><div class=\"rssSummary\">Version 4.7 of WordPress, named “Vaughan” in honor of legendary jazz vocalist Sarah &quot;Sassy&quot; 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.</div></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wptavern.com/state-of-the-word-2016-mullenweg-pushes-calypso-as-future-of-wordpress-interface-proposes-major-changes-to-release-cycle\'>WPTavern: State of the Word 2016: Mullenweg Pushes Calypso as Future of WordPress’ Interface, Proposes Major Changes to Release Cycle</a></li><li><a class=\'rsswidget\' href=\'https://poststatus.com/matt-mullenweg-state-word-2016/\'>Post Status: Matt Mullenweg State of the Word, 2016</a></li><li><a class=\'rsswidget\' href=\'https://ma.tt/2016/12/wordcamp-live-stream/\'>Matt: WordCamp Live Stream</a></li></ul></div><div class=\"rss-widget\"><ul><li class=\"dashboard-news-plugin\"><span>Popular Plugin:</span> UpdraftPlus WordPress Backup Plugin&nbsp;<a href=\"plugin-install.php?tab=plugin-information&amp;plugin=updraftplus&amp;_wpnonce=253489de65&amp;TB_iframe=true&amp;width=600&amp;height=800\" class=\"thickbox open-plugin-details-modal\" aria-label=\"Install UpdraftPlus WordPress Backup Plugin\">(Install)</a></li></ul></div>", "no");
INSERT INTO `wp_options` VALUES("10086", "_transient_timeout_feed_b9388c83948825c1edaef0d856b7b109", "1482300598", "no");
INSERT INTO `wp_options` VALUES("10087", "_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\";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:117:\"\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:2:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"WordPress Plugins » View: Popular\";s: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/browse/popular/\";s: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:34:\"WordPress Plugins » View: Popular\";s: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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 20 Dec 2016 18:08:52 +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:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"http://bbpress.org/?v=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:\"item\";a:30:{i:0;a:6:{s:4:\"data\";s:30:\"\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:14:\"Duplicate Post\";s: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/duplicate-post/#post-2646\";s: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, 05 Dec 2007 17:40: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:34:\"2646@http://wordpress.org/plugins/\";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:22:\"Clone posts and pages.\";s: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:\"Lopo\";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:30:\"\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:14:\"W3 Total Cache\";s: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/plugins/w3-total-cache/#post-12073\";s: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, 29 Jul 2009 18:46: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"12073@http://wordpress.org/plugins/\";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:144:\"Search Engine (SEO) &#38; Performance Optimization (WPO) via caching. Integrated caching: CDN, Minify, Page, Object, Fragment, Database support.\";s: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:\"Frederick Townes\";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					\";s: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: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:55:\"https://wordpress.org/plugins/contact-form-7/#post-2141\";s: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:45: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:34:\"2141@http://wordpress.org/plugins/\";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:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:30:\"\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: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:53:\"https://wordpress.org/plugins/woocommerce/#post-29860\";s: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, 05 Sep 2011 08:13:36 +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:35:\"29860@http://wordpress.org/plugins/\";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:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:30:\"\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: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:49:\"https://wordpress.org/plugins/jetpack/#post-23862\";s: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:35:\"23862@http://wordpress.org/plugins/\";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:107:\"Increase your traffic, view your stats, speed up your site, and protect yourself from hackers with 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: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:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:30:\"\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:18:\"Wordfence 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wordpress.org/plugins/wordfence/#post-29832\";s: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, 04 Sep 2011 03:13:51 +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:35:\"29832@http://wordpress.org/plugins/\";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:149:\"Secure your website with the most comprehensive WordPress security plugin. Firewall, malware scan, blocking, live traffic, login security &#38; more.\";s: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:\"Wordfence\";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:30:\"\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:14:\"WP Super Cache\";s: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/wp-super-cache/#post-2572\";s: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, 05 Nov 2007 11:40: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"2572@http://wordpress.org/plugins/\";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:73:\"A very fast caching engine for WordPress that produces static html files.\";s: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:\"Donncha O Caoimh\";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:30:\"\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:21:\"Regenerate Thumbnails\";s: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/plugins/regenerate-thumbnails/#post-6743\";s: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, 23 Aug 2008 14:38:58 +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:34:\"6743@http://wordpress.org/plugins/\";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:76:\"Allows you to regenerate your thumbnails after changing the thumbnail sizes.\";s: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:25:\"Alex Mills (Viper007Bond)\";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:30:\"\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:11:\"WP-PageNavi\";s: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/wp-pagenavi/#post-363\";s: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, 09 Mar 2007 23:17: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"363@http://wordpress.org/plugins/\";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:49:\"Adds a more advanced paging navigation interface.\";s: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:\"Lester Chan\";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:30:\"\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: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:59:\"https://wordpress.org/plugins/all-in-one-seo-pack/#post-753\";s: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 20:08: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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"753@http://wordpress.org/plugins/\";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:150:\"One of the most downloaded WordPress plugins (over 30 million downloads since 2007). Use All in One SEO Pack to optimize your site for Search Engines.\";s: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:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:30:\"\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:11:\"Hello Dolly\";s: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://wordpress.org/plugins/hello-dolly/#post-5790\";s: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, 29 May 2008 22:11: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"5790@http://wordpress.org/plugins/\";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:150:\"This is not just a plugin, it symbolizes the hope and enthusiasm of an entire generation summed up in two words sung most famously by Louis Armstrong.\";s: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:11;a:6:{s:4:\"data\";s:30:\"\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:\"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:57:\"https://wordpress.org/plugins/tinymce-advanced/#post-2082\";s: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, 27 Jun 2007 15:00:26 +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:34:\"2082@http://wordpress.org/plugins/\";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:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:30:\"\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: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:64:\"https://wordpress.org/plugins/google-sitemap-generator/#post-132\";s: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, 09 Mar 2007 22:31: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"132@http://wordpress.org/plugins/\";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:105:\"This plugin will generate a special XML sitemap which will help search engines to better index your blog.\";s: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:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:30:\"\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:21:\"Really Simple CAPTCHA\";s: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/plugins/really-simple-captcha/#post-9542\";s: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, 09 Mar 2009 02:17: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:34:\"9542@http://wordpress.org/plugins/\";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:138:\"Really Simple CAPTCHA is a CAPTCHA module intended to be called from other plugins. It is originally created for my Contact Form 7 plugin.\";s: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:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:30:\"\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:35:\"Google Analytics by MonsterInsights\";s: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://wordpress.org/plugins/google-analytics-for-wordpress/#post-2316\";s: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, 14 Sep 2007 12:15: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"2316@http://wordpress.org/plugins/\";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:113:\"Connect Google Analytics with WordPress by adding your Google Analytics tracking code. Get the stats that matter.\";s: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:\"Syed Balkhi\";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:30:\"\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: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:46:\"https://wordpress.org/plugins/akismet/#post-15\";s: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, 09 Mar 2007 22:11: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"15@http://wordpress.org/plugins/\";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:98:\"Akismet checks your comments against the Akismet Web service to see if they look like spam or not.\";s: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:16;a:6:{s:4:\"data\";s:30:\"\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:42:\"NextGEN Gallery - WordPress Gallery Plugin\";s: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/plugins/nextgen-gallery/#post-1169\";s: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, 23 Apr 2007 20:08:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"1169@http://wordpress.org/plugins/\";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:121:\"The most popular WordPress gallery plugin and one of the most popular plugins of all time with over 16 million downloads.\";s: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:\"Alex Rabe\";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:30:\"\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: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:54:\"https://wordpress.org/plugins/wordpress-seo/#post-8321\";s: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 Jan 2009 20:34:44 +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:34:\"8321@http://wordpress.org/plugins/\";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:118:\"Improve your WordPress SEO: Write better content and have a fully optimized WordPress site using the Yoast SEO plugin.\";s: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:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:30:\"\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:22:\"Advanced Custom Fields\";s: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://wordpress.org/plugins/advanced-custom-fields/#post-25254\";s: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, 17 Mar 2011 04:07: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"25254@http://wordpress.org/plugins/\";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:68:\"Customise WordPress with powerful, professional and intuitive fields\";s: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:12:\"elliotcondon\";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:30:\"\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: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:60:\"https://wordpress.org/plugins/wordpress-importer/#post-18101\";s: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 17:42: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"18101@http://wordpress.org/plugins/\";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:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:30:\"\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:\"Page Builder by SiteOrigin\";s: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:59:\"https://wordpress.org/plugins/siteorigin-panels/#post-51888\";s: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 Apr 2013 10:36: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:35:\"51888@http://wordpress.org/plugins/\";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:111:\"Build responsive page layouts using the widgets you know and love using this simple drag and drop page builder.\";s: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:\"Greg Priday\";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:30:\"\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:\"Clef Two-Factor Authentication\";s: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:48:\"https://wordpress.org/plugins/wpclef/#post-47509\";s: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 Dec 2012 01:25: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"47509@http://wordpress.org/plugins/\";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:139:\"Modern two-factor that people love to use: strong authentication without passwords or tokens; single sign on/off; magical login experience.\";s: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:\"Dave Ross\";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:30:\"\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:35:\"UpdraftPlus WordPress Backup Plugin\";s: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/plugins/updraftplus/#post-38058\";s: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, 21 May 2012 15:14:11 +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:35:\"38058@http://wordpress.org/plugins/\";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:148:\"Backup and restoration made easy. Complete backups; manual or scheduled (backup to S3, Dropbox, Google Drive, Rackspace, FTP, SFTP, email + others).\";s: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:\"David Anderson\";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:30:\"\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:33:\"Google Analytics Dashboard for WP\";s: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://wordpress.org/plugins/google-analytics-dashboard-for-wp/#post-50539\";s: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, 10 Mar 2013 17:07:11 +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:35:\"50539@http://wordpress.org/plugins/\";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:127:\"Displays Google Analytics reports in your WordPress Dashboard. Inserts the latest Google Analytics tracking code in your pages.\";s: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:\"Alin Marcu\";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:30:\"\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:\"Disable 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:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wordpress.org/plugins/disable-comments/#post-26907\";s: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, 27 May 2011 04:42:58 +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:35:\"26907@http://wordpress.org/plugins/\";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:150:\"Allows administrators to globally disable comments on their site. Comments can be disabled according to post type. Multisite friendly. Provides tool t\";s: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:\"Samir Shah\";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:30:\"\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:18:\"WP Multibyte Patch\";s: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:60:\"https://wordpress.org/plugins/wp-multibyte-patch/#post-28395\";s: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, 14 Jul 2011 12:22: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:35:\"28395@http://wordpress.org/plugins/\";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:71:\"Multibyte functionality enhancement for the WordPress Japanese package.\";s: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:\"plugin-master\";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:30:\"\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:10:\"Duplicator\";s: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://wordpress.org/plugins/duplicator/#post-26607\";s: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, 16 May 2011 12:15: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:35:\"26607@http://wordpress.org/plugins/\";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:88:\"Duplicate, clone, backup, move and transfer an entire site from one location to another.\";s: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:\"Cory Lamle\";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:30:\"\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:\"Black Studio TinyMCE 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/plugins/black-studio-tinymce-widget/#post-31973\";s: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, 10 Nov 2011 15:06: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"31973@http://wordpress.org/plugins/\";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:39:\"The visual editor widget 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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Marco Chiesi\";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:30:\"\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:46:\"iThemes Security (formerly Better WP 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://wordpress.org/plugins/better-wp-security/#post-21738\";s: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 Oct 2010 22:06: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"21738@http://wordpress.org/plugins/\";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:146:\"Take the guesswork out of WordPress security. iThemes Security offers 30+ ways to lock down WordPress in an easy-to-use WordPress security plugin.\";s: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:\"iThemes\";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:30:\"\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:\"SiteOrigin Widgets Bundle\";s: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:59:\"https://wordpress.org/plugins/so-widgets-bundle/#post-67824\";s: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, 24 May 2014 14:27: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"67824@http://wordpress.org/plugins/\";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:128:\"A collection of all widgets, neatly bundled into a single plugin. It&#039;s also a framework to code your own widgets on top of.\";s: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:\"Greg Priday\";s: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:46:\"https://wordpress.org/plugins/rss/view/popular\";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: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:\"Tue, 20 Dec 2016 18:09:58 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:25:\"strict-transport-security\";s:11:\"max-age=360\";s:13:\"last-modified\";s:29:\"Wed, 05 Dec 2007 17:40:03 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");
INSERT INTO `wp_options` VALUES("10022", "_transient_timeout_et_pb_mailchimp_lists", "1482288766", "no");
INSERT INTO `wp_options` VALUES("10023", "_transient_et_pb_mailchimp_lists", "a:3:{s:10:\"4419f44e8e\";s:18:\"Infinity Marketing\";s:10:\"fc2dc157d8\";s:20:\"Bride and Groom Show\";s:10:\"6a14214dc5\";s:23:\"Wedevents Customer List\";}", "no");
INSERT INTO `wp_options` VALUES("184", "_transient_twentysixteen_categories", "1", "yes");
INSERT INTO `wp_options` VALUES("203", "shop_thumbnail_image_size", "a:3:{s:5:\"width\";s:3:\"157\";s:6:\"height\";s:3:\"157\";s:4:\"crop\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("204", "et_images_temp_folder", "/home/candiclebaker/public_html/wp-content/uploads/et_temp", "yes");
INSERT INTO `wp_options` VALUES("205", "et_schedule_clean_images_last_time", "1481801168", "yes");
INSERT INTO `wp_options` VALUES("212", "nav_menu_options", "a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}", "yes");
INSERT INTO `wp_options` VALUES("3088", "_wp_session_expires_593e917c79d2b2555f25ebeb41ae1a79", "2956563810", "no");
INSERT INTO `wp_options` VALUES("230", "_site_transient_et_update_themes", "O:8:\"stdClass\":1:{s:12:\"last_checked\";i:1482205232;}", "no");
INSERT INTO `wp_options` VALUES("307", "frm_last_style_update", "1020232", "yes");
INSERT INTO `wp_options` VALUES("308", "frmpro_css", "/* WARNING: Any changes made to this file will be lost when your Formidable settings are updated */\n.frm_hidden,.with_frm_style .frm_button.frm_hidden{display:none;}.with_frm_style fieldset{min-width:0;}legend.frm_hidden{display:none !important;}.frm_transparent{color:transparent;}.input[type=file].frm_transparent:focus, .with_frm_style input[type=file]{background-color:transparent;border:none;outline:none;box-shadow:none;}.with_frm_style input[type=file]{display:initial;}.frm_preview_page:before{content:normal !important;}.frm_preview_page{padding:25px;}.with_frm_style .form-field.frm_col_field{clear:none;float:left;margin-right:20px;}.with_frm_style label.frm_primary_label{max-width:100%;}.with_frm_style .frm_top_container label.frm_primary_label,.with_frm_style .frm_hidden_container label.frm_primary_label,.with_frm_style .frm_pos_top{display:block;float:none;width:auto;}.with_frm_style .frm_inline_container label.frm_primary_label{margin-right:10px;}.with_frm_style .frm_right_container label.frm_primary_label,.with_frm_style .frm_pos_right{display:inline;float:right;margin-left:10px;}.with_frm_style .frm_none_container label.frm_primary_label,.with_frm_style .frm_pos_none,.frm_none_container label.frm_primary_label{display:none;}.with_frm_style .frm_section_heading.frm_hide_section{margin-top:0 !important;}.with_frm_style .frm_hidden_container label.frm_primary_label,.with_frm_style .frm_pos_hidden,.frm_hidden_container label.frm_primary_label{visibility:hidden;}.with_frm_style .frm_description{clear:both;}.with_frm_style .frm_scale{margin-right:10px;text-align:center;float:left;}.with_frm_style .frm_scale input{display:block;}.with_frm_style select[multiple=\"multiple\"]{height:auto;line-height:normal;}.with_frm_style select{white-space:nowrap;}.with_frm_style .frm_catlevel_2,.with_frm_style .frm_catlevel_3,.with_frm_style .frm_catlevel_4,.with_frm_style .frm_catlevel_5{margin-left:18px;}.with_frm_style .wp-editor-container{border:1px solid #e5e5e5;}.with_frm_style .quicktags-toolbar input{font-size:12px !important;}.with_frm_style .wp-editor-container textarea{border:none;}.with_frm_style .auto_width #loginform input,.with_frm_style .auto_width input,.with_frm_style input.auto_width,.with_frm_style select.auto_width,.with_frm_style textarea.auto_width{width:auto;}.with_frm_style .frm_repeat_buttons{white-space:nowrap;}.with_frm_style .frm_button{text-decoration:none;border:1px solid #eee;padding:5px;display:inline;}.with_frm_style .frm_submit{clear:both;}.frm_inline_form .frm_form_field.form-field{margin-right:2.5%;display:inline-block;}.frm_inline_form .frm_submit{display:inline-block;}.with_frm_style.frm_center_submit .frm_submit{text-align:center;}.with_frm_style.frm_center_submit .frm_submit input[type=submit],.with_frm_style.frm_center_submit .frm_submit input[type=button]{margin-bottom:8px !important;}.with_frm_style .frm_submit input[type=submit],.with_frm_style .frm_submit input[type=button]{-webkit-appearance: none;}.with_frm_style.frm_center_submit .frm_submit .frm_ajax_loading{display: block;margin: 0 auto;}.frm_forms.frm_style_formidable-style.with_frm_style{max-width:100%;direction:ltr;}.frm_style_formidable-style.with_frm_style,.frm_style_formidable-style.with_frm_style form,.frm_style_formidable-style.with_frm_style .frm-show-form div.frm_description p {text-align:left;}.frm_style_formidable-style.with_frm_style fieldset{border:0px solid #000000;margin:0;padding:0 0 15px 0;background-color:transparent;}.frm_style_formidable-style.with_frm_style legend + h3,.frm_style_formidable-style.with_frm_style h3.frm_form_title{font-size:20px;color:#444444;font-family:\"Lucida Grande\",\"Lucida Sans Unicode\",Tahoma,sans-serif;margin-top:10px;margin-bottom:10px;}.frm_style_formidable-style.with_frm_style .frm-show-form  .frm_section_heading h3{padding:15px 0 3px 0;margin:0;font-size:18px;font-weight:bold;color:#444444;border:none;border-top:2px solid #e8e8e8;background-color:transparent}.frm_style_formidable-style.with_frm_style h3 .frm_after_collapse{display:inline;}.frm_style_formidable-style.with_frm_style h3 .frm_before_collapse{display:none;}.menu-edit #post-body-content .frm_style_formidable-style.with_frm_style .frm_section_heading h3{margin:0;}.frm_style_formidable-style.with_frm_style .frm_section_heading{margin-top:15px;}.frm_style_formidable-style.with_frm_style  .frm-show-form .frm_section_heading .frm_section_spacing,.menu-edit #post-body-content .frm_style_formidable-style.with_frm_style  .frm-show-form .frm_section_heading .frm_section_spacing{margin-bottom:12px;}.frm_style_formidable-style.with_frm_style .frm_repeat_sec{margin-bottom:20px;margin-top:20px;}.frm_style_formidable-style.with_frm_style label.frm_primary_label,.frm_style_formidable-style.with_frm_style.frm_login_form label{font-family:\"Lucida Grande\",\"Lucida Sans Unicode\",Tahoma,sans-serif;font-size:14px;color:#444444;font-weight:bold;text-align:left;margin:0;padding:0 0 3px 0;width:auto;display:block;}.frm_style_formidable-style.with_frm_style .frm_form_field.frm_html_container{font-family:\"Lucida Grande\",\"Lucida Sans Unicode\",Tahoma,sans-serif;font-size:14px;color:#666666;}.frm_style_formidable-style.with_frm_style .frm_icon_font{color:#444444;}.frm_style_formidable-style.with_frm_style .frm_icon_font.frm_minus_icon:before{content:\"\\e600\";}.frm_style_formidable-style.with_frm_style .frm_icon_font.frm_plus_icon:before{content:\"\\e602\";}.frm_style_formidable-style.with_frm_style .frm_icon_font.frm_minus_icon:before,.frm_style_formidable-style.with_frm_style .frm_icon_font.frm_plus_icon:before{color:#444444;}.frm_style_formidable-style.with_frm_style .frm_trigger.active .frm_icon_font.frm_arrow_icon:before{content:\"\\e62d\";color:#444444;}.frm_style_formidable-style.with_frm_style .frm_trigger .frm_icon_font.frm_arrow_icon:before{content:\"\\e62a\";color:#444444;}.frm_style_formidable-style.with_frm_style .form-field{margin-bottom:20px;}.frm_style_formidable-style.with_frm_style .frm_grid,.frm_style_formidable-style.with_frm_style .frm_grid_first,.frm_style_formidable-style.with_frm_style .frm_grid_odd {margin-bottom:0;}.frm_style_formidable-style.with_frm_style .form-field.frm_section_heading{margin-bottom:0;}.frm_style_formidable-style.with_frm_style p.description,.frm_style_formidable-style.with_frm_style div.description,.frm_style_formidable-style.with_frm_style div.frm_description,.frm_style_formidable-style.with_frm_style .frm-show-form > div.frm_description,.frm_style_formidable-style.with_frm_style .frm_error{margin:0;padding:0;font-family:\"Lucida Grande\",\"Lucida Sans Unicode\",Tahoma,sans-serif;font-size:12px;color:#666666;font-weight:normal;text-align:left;font-style:normal;max-width:100%;}.frm_style_formidable-style.with_frm_style .frm-show-form div.frm_description p{font-size:14px;color:#666666;margin-top:10px;margin-bottom:25px;}.frm_style_formidable-style.with_frm_style .frm_left_container label.frm_primary_label{float:left;display:inline;width:150px;max-width:33%;margin-right:10px;}.frm_style_formidable-style.with_frm_style .frm_right_container label.frm_primary_label{display:inline;width:150px;max-width:33%;margin-left:10px;}.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_container input:not([type=radio]):not([type=checkbox]),.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_container:not(.frm_dynamic_select_container) select,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_container textarea,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_container .frm_opt_container,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_container .frm-g-recaptcha,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_container .g-recaptcha,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_container .chosen-container,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_container input:not([type=radio]):not([type=checkbox]),.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_container:not(.frm_dynamic_select_container) select,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_container textarea,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_container .frm_opt_container,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_container .g-recaptcha,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_container .frm-g-recaptcha,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_container .chosen-container{max-width:62%;}.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_container .frm_combo_inputs_container .frm_form_field input,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_container .frm_combo_inputs_container .frm_form_field select,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_container .frm_combo_inputs_container .frm_form_field input,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_container .frm_combo_inputs_container .frm_form_field select{max-width:100%;}.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_container .frm_opt_container,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_container .frm_opt_container,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_container .g-recaptcha,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_container .g-recaptcha,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_container .frm-g-recaptcha,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_container .frm-g-recaptcha{display:inline-block;}.frm_style_formidable-style.with_frm_style .frm_left_container > p.description::before,.frm_style_formidable-style.with_frm_style .frm_left_container > div.description::before,.frm_style_formidable-style.with_frm_style .frm_left_container > div.frm_description::before,.frm_style_formidable-style.with_frm_style .frm_left_container > .frm_error::before,.frm_style_formidable-style.with_frm_style .frm_right_container > p.description::after,.frm_style_formidable-style.with_frm_style .frm_right_container > div.description::after,.frm_style_formidable-style.with_frm_style .frm_right_container > div.frm_description::after,.frm_style_formidable-style.with_frm_style .frm_right_container > .frm_error::after{content:\'\';display:inline-block;width:150px;max-width:33%;margin-right:10px;}.frm_style_formidable-style.with_frm_style .frm_left_container.frm_inline label.frm_primary_label{max-width:90%;}.frm_style_formidable-style.with_frm_style .form-field.frm_col_field div.frm_description{width:100%;max-width:100%;}.frm_style_formidable-style.with_frm_style .frm_inline_container label.frm_primary_label,.frm_style_formidable-style.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_opt_container{display:inline;}.frm_style_formidable-style.with_frm_style .frm_inline_container label.frm_primary_label{margin-right:10px;}.frm_style_formidable-style.with_frm_style .frm_pos_right{display:inline;width:150px;}.frm_style_formidable-style.with_frm_style .frm_none_container label.frm_primary_label,.frm_style_formidable-style.with_frm_style .frm_pos_none{display:none;}.frm_style_formidable-style.with_frm_style .frm_scale label{font-weight:normal;font-family:\"Lucida Grande\",\"Lucida Sans Unicode\",Tahoma,sans-serif;font-size:13px;color:#444444;}.frm_style_formidable-style.with_frm_style .frm_required{color:#B94A48;font-weight:bold;}.frm_style_formidable-style.with_frm_style input[type=text],.frm_style_formidable-style.with_frm_style input[type=password],.frm_style_formidable-style.with_frm_style input[type=email],.frm_style_formidable-style.with_frm_style input[type=number],.frm_style_formidable-style.with_frm_style input[type=url],.frm_style_formidable-style.with_frm_style input[type=tel],.frm_style_formidable-style.with_frm_style input[type=search],.frm_style_formidable-style.with_frm_style select,.frm_style_formidable-style.with_frm_style textarea,.frm_style_formidable-style.with_frm_style .chosen-container{font-family:\"Lucida Grande\",\"Lucida Sans Unicode\",Tahoma,sans-serif;font-size:14px;margin-bottom:0;}.frm_style_formidable-style.with_frm_style input[type=text],.frm_style_formidable-style.with_frm_style input[type=password],.frm_style_formidable-style.with_frm_style input[type=email],.frm_style_formidable-style.with_frm_style input[type=number],.frm_style_formidable-style.with_frm_style input[type=url],.frm_style_formidable-style.with_frm_style input[type=tel],.frm_style_formidable-style.with_frm_style input[type=phone],.frm_style_formidable-style.with_frm_style input[type=search],.frm_style_formidable-style.with_frm_style select,.frm_style_formidable-style.with_frm_style textarea,.frm_form_fields_style,.frm_style_formidable-style.with_frm_style .frm_scroll_box .frm_opt_container,.frm_form_fields_active_style,.frm_form_fields_error_style,.frm_style_formidable-style.with_frm_style .chosen-container-multi .chosen-choices,.frm_style_formidable-style.with_frm_style .chosen-container-single .chosen-single{color:#555555;background-color:#ffffff;border-color:#cccccc;border-width:1px;border-style:solid;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;width:100%;max-width:100%;font-size:14px;padding:6px 10px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;outline:none;font-weight:normal;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset;}.frm_style_formidable-style.with_frm_style input[type=file]::-webkit-file-upload-button{color:#555555;background-color:#ffffff;padding:6px 10px;border-radius:4px;border-color:#cccccc;border-width:1px;border-style:solid;}.frm_style_formidable-style.with_frm_style input[type=text],.frm_style_formidable-style.with_frm_style input[type=password],.frm_style_formidable-style.with_frm_style input[type=email],.frm_style_formidable-style.with_frm_style input[type=number],.frm_style_formidable-style.with_frm_style input[type=url],.frm_style_formidable-style.with_frm_style input[type=tel],.frm_style_formidable-style.with_frm_style input[type=file],.frm_style_formidable-style.with_frm_style input[type=search],.frm_style_formidable-style.with_frm_style select{height:32px;line-height:1.3;}.frm_style_formidable-style.with_frm_style select[multiple=\"multiple\"]{height:auto ;}.frm_style_formidable-style.with_frm_style input[type=file]{color:#555555;padding:0px;font-family:\"Lucida Grande\",\"Lucida Sans Unicode\",Tahoma,sans-serif;font-size:14px;}.frm_style_formidable-style.with_frm_style input[type=file].frm_transparent{color:transparent;}.frm_style_formidable-style.with_frm_style .frm_default,.frm_style_formidable-style.with_frm_style .placeholder,.frm_style_formidable-style.with_frm_style .chosen-container-multi .chosen-choices li.search-field .default,.frm_style_formidable-style.with_frm_style .chosen-container-single .chosen-default{color:#555555;font-style:italic;}.frm_style_formidable-style.with_frm_style select{width:100%;max-width:100%;}.frm_style_formidable-style.with_frm_style input.frm_other_input:not(.frm_other_full){width:auto ;margin-left:5px ;}.frm_style_formidable-style.with_frm_style .frm_full input.frm_other_input:not(.frm_other_full){margin-left:0 ;margin-top:8px;}.frm_style_formidable-style.with_frm_style .frm_other_container select:not([multiple=\"multiple\"]){width:auto;}.frm_style_formidable-style.with_frm_style .wp-editor-wrap{width:100%;max-width:100%;}.frm_style_formidable-style.with_frm_style .wp-editor-container textarea{border:none;}.frm_style_formidable-style.with_frm_style .mceIframeContainer{background-color:#ffffff;}.frm_style_formidable-style.with_frm_style .auto_width input,.frm_style_formidable-style.with_frm_style input.auto_width,.frm_style_formidable-style.with_frm_style select.auto_width,.frm_style_formidable-style.with_frm_style textarea.auto_width{width:auto;}.frm_style_formidable-style.with_frm_style input[disabled],.frm_style_formidable-style.with_frm_style select[disabled],.frm_style_formidable-style.with_frm_style textarea[disabled],.frm_style_formidable-style.with_frm_style input[readonly],.frm_style_formidable-style.with_frm_style select[readonly],.frm_style_formidable-style.with_frm_style textarea[readonly]{background-color:#ffffff;color:#A1A1A1;border-color:#E5E5E5;}.frm_style_formidable-style.with_frm_style input::placeholder{color:#A1A1A1;}.frm_style_formidable-style.with_frm_style input::-webkit-input-placeholder{color:#A1A1A1;}.frm_style_formidable-style.with_frm_style input::-moz-placeholder{color:#A1A1A1;}.frm_style_formidable-style.with_frm_style input:-ms-input-placeholder{color:#A1A1A1;}.frm_style_formidable-style.with_frm_style input:-moz-placeholder{color:#A1A1A1;}.frm_style_formidable-style.with_frm_style .form-field input:not([type=file]):focus,.frm_style_formidable-style.with_frm_style select:focus,.frm_style_formidable-style.with_frm_style textarea:focus,.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=text],.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=password],.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=email],.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=number],.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=url],.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=tel],.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=search],.frm_form_fields_active_style,.frm_style_formidable-style.with_frm_style .chosen-container-active .chosen-choices{background-color:#ffffff;border-color:#66afe9;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(102,175,233, 0.6);}.frm_style_formidable-style.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message,.frm_style_formidable-style.with_frm_style input[type=submit],.frm_style_formidable-style.with_frm_style .frm_submit input[type=button],.frm_form_submit_style,.frm_style_formidable-style.with_frm_style.frm_login_form input[type=submit]{width:auto;font-family:\"Lucida Grande\",\"Lucida Sans Unicode\",Tahoma,sans-serif;font-size:14px;height:auto;line-height:normal;text-align:center;background:#ffffff;border-width:1px;border-color:#cccccc;border-style:solid;color:#444444;cursor:pointer;font-weight:normal;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;text-shadow:none;padding:6px 11px;-moz-box-sizing:border-box;box-sizing:border-box;-ms-box-sizing:border-box;-moz-box-shadow:0 1px 1px #eeeeee;-webkit-box-shadow:0px 1px 1px #eeeeee;box-shadow:0 1px 1px #eeeeee;-ms-filter:\"progid:DXImageTransform.Microsoft.Shadow(Strength=3, Direction=135, Color=\'#eeeeee\')\";filter:progid:DXImageTransform.Microsoft.Shadow(Strength=3, Direction=135, Color=\'#eeeeee\');margin:10px;margin-left:0;margin-right:0;vertical-align:middle;}.frm_style_formidable-style.with_frm_style input[type=submit]:hover,.frm_style_formidable-style.with_frm_style .frm_submit input[type=button]:hover,.frm_style_formidable-style.with_frm_style.frm_login_form input[type=submit]:hover{background:#efefef;border-color:#cccccc;color:#444444;}.frm_style_formidable-style.with_frm_style.frm_center_submit .frm_submit .frm_ajax_loading{margin-bottom:10px;}.frm_style_formidable-style.with_frm_style input[type=submit]:focus,.frm_style_formidable-style.with_frm_style .frm_submit input[type=button]:focus,.frm_style_formidable-style.with_frm_style.frm_login_form input[type=submit]:focus,.frm_style_formidable-style.with_frm_style input[type=submit]:active,.frm_style_formidable-style.with_frm_style .frm_submit input[type=button]:active,.frm_style_formidable-style.with_frm_style.frm_login_form input[type=submit]:active{background:#efefef;border-color:#cccccc;color:#444444;}.frm_style_formidable-style.with_frm_style a.frm_save_draft{font-family:\"Lucida Grande\",\"Lucida Sans Unicode\",Tahoma,sans-serif;font-size:14px;font-weight:normal;}.frm_style_formidable-style.with_frm_style #frm_field_cptch_number_container{font-family:\"Lucida Grande\",\"Lucida Sans Unicode\",Tahoma,sans-serif;font-size:14px;color:#444444;font-weight:bold;clear:both;}.frm_style_formidable-style.with_frm_style .frm_radio{display:block;}.frm_style_formidable-style.with_frm_style .horizontal_radio .frm_radio{margin:0 5px 0 0;}.frm_style_formidable-style.with_frm_style .frm_checkbox{display:block;}.frm_style_formidable-style.with_frm_style .vertical_radio .frm_checkbox,.frm_style_formidable-style.with_frm_style .vertical_radio .frm_radio,.vertical_radio .frm_catlevel_1{display:block;}.frm_style_formidable-style.with_frm_style .horizontal_radio .frm_checkbox,.frm_style_formidable-style.with_frm_style .horizontal_radio .frm_radio,.horizontal_radio .frm_catlevel_1{display:inline-block;}.frm_style_formidable-style.with_frm_style .frm_radio label,.frm_style_formidable-style.with_frm_style .frm_checkbox label{font-family:\"Lucida Grande\",\"Lucida Sans Unicode\",Tahoma,sans-serif;font-size:13px;color:#444444;font-weight:normal;display:inline;white-space:normal;}.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=text],.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=password],.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=url],.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=tel],.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=number],.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=email],.frm_style_formidable-style.with_frm_style .frm_blank_field textarea,.frm_style_formidable-style.with_frm_style .frm_blank_field .mce-edit-area iframe,.frm_style_formidable-style.with_frm_style .frm_blank_field select,.frm_form_fields_error_style,.frm_style_formidable-style.with_frm_style .frm_blank_field .frm-g-recaptcha iframe,.frm_style_formidable-style.with_frm_style .frm_blank_field .g-recaptcha iframe,.frm_style_formidable-style.with_frm_style .frm_blank_field .chosen-container-multi .chosen-choices,.frm_style_formidable-style.with_frm_style .frm_form_field :invalid{color:#444444;background-color:#ffffff;border-color:#B94A48;border-width:1px;border-style:solid;}.frm_style_formidable-style.with_frm_style .frm_error{font-weight:bold;}.frm_style_formidable-style.with_frm_style .frm_blank_field label,.frm_style_formidable-style.with_frm_style .frm_error{color:#B94A48;}.frm_style_formidable-style.with_frm_style .frm_error_style{background-color:#F2DEDE;border:1px solid #EBCCD1;border-radius:4px;color:#B94A48;font-size:14px;margin:0;margin-bottom:20px;}.frm_style_formidable-style.with_frm_style .frm_message,.frm_success_style{border:1px solid #D6E9C6;background-color:#DFF0D8;color:#468847;border-radius:4px;}.frm_style_formidable-style.with_frm_style .frm_message{margin:5px 0 15px;font-size:14px;}.frm_style_formidable-style.with_frm_style .frm-grid td,.frm-grid th{border-color:#cccccc;}.form_results.frm_style_formidable-style.with_frm_style{border:1px solid #cccccc;}.form_results.frm_style_formidable-style.with_frm_style tr td{color:#555555;border-top:1px solid #cccccc;}.form_results.frm_style_formidable-style.with_frm_style tr.frm_even,.frm-grid .frm_even{background-color:#ffffff;}.frm_style_formidable-style.with_frm_style #frm_loading .progress-striped .progress-bar{background-image:linear-gradient(45deg, #cccccc 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, #cccccc 50%, #cccccc 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0));}.frm_style_formidable-style.with_frm_style #frm_loading .progress-bar{background-color:#ffffff;}.frm_style_formidable-style.with_frm_style .frm_grid,.frm_style_formidable-style.with_frm_style .frm_grid_first,.frm_style_formidable-style.with_frm_style .frm_grid_odd{border-color:#cccccc;}.frm_style_formidable-style.with_frm_style .frm_grid.frm_blank_field,.frm_style_formidable-style.with_frm_style .frm_grid_first.frm_blank_field,.frm_style_formidable-style.with_frm_style .frm_grid_odd.frm_blank_field{background-color:#F2DEDE;border-color:#EBCCD1;}.frm_style_formidable-style.with_frm_style .frm_grid_first,.frm_style_formidable-style.with_frm_style .frm_grid_odd{background-color:#ffffff;}.frm_style_formidable-style.with_frm_style .frm_grid{background-color:#ffffff;}.frm_style_formidable-style.with_frm_style .frm_form_field.frm_html_scroll_box{background-color:#ffffff;border-color:#cccccc;border-width:1px;border-style:solid;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;width:100%;font-size:14px;padding:6px 10px;outline:none;}.frm_style_formidable-style.with_frm_style .frm_form_field.frm_total input,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_total textarea{color:#555555;background-color:transparent;border:none;display:inline;padding:0;}.frm_style_formidable-style.with_frm_style .frm_text_block input,.frm_style_formidable-style.with_frm_style .frm_text_block label.frm_primary_label{margin-left:-20px;}.frm_style_formidable-style.with_frm_style .frm_button{padding:6px 11px;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;font-size:14px;font-family:\"Lucida Grande\",\"Lucida Sans Unicode\",Tahoma,sans-serif;font-weight:normal;color:#444444;background:#ffffff;border-width:1px;border-color:#cccccc;height:auto;}.frm_style_formidable-style.with_frm_style .frm_button .frm_icon_font:before{font-size:14px;}.frm_style_formidable-style.with_frm_style .frm_dropzone{border-color:#cccccc;border-radius:4px;color:#555555;background-color:#ffffff;}.frm_style_formidable-style.with_frm_style .frm_dropzone .frm_upload_icon:before,.frm_style_formidable-style.with_frm_style .frm_dropzone .dz-remove{color:#555555;}.frm_style_formidable-style.with_frm_style .frm_blank_field .frm_dropzone{border-color:#B94A48;color:#444444;background-color:#ffffff;}.frm_style_formidable-style.with_frm_style .chosen-container{font-size:14px;}.frm_style_formidable-style.with_frm_style .chosen-container-single .chosen-single{height:32px;line-height:1.3;}.frm_style_formidable-style.with_frm_style .chosen-container-single .chosen-single div{top:3px;}.frm_style_formidable-style.with_frm_style .chosen-container-single .chosen-search input[type=\"text\"]{height:32px;}.frm_style_formidable-style.with_frm_style .chosen-container-multi .chosen-choices li.search-field input[type=\"text\"]{height:15px;}@media only screen and (max-width: 600px){.frm_style_formidable-style.with_frm_style .frm_form_field.frm_half.frm_left_container input:not([type=radio]):not([type=checkbox]),.frm_style_formidable-style.with_frm_style .frm_form_field.frm_half.frm_left_container select,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_half.frm_left_container textarea,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_half.frm_left_container .frm_opt_container,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_half.frm_left_container.frm-g-recaptcha,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_half.frm_left_container.g-recaptcha,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_half.frm_left_container .chosen-container,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_half.frm_right_container input:not([type=radio]):not([type=checkbox]),.frm_style_formidable-style.with_frm_style .frm_form_field.frm_half.frm_right_container select,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_half.frm_right_container textarea,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_half.frm_right_container .frm_opt_container,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_half.frm_right_container.frm-g-recaptcha,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_half.frm_right_container.g-recaptcha,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_half.frm_right_container .chosen-container{max-width:100%;}.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_half.frm_left_container .frm_primary_label,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_half.frm_left_container .frm_primary_label,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_first_half.frm_left_container .frm_primary_label,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_last_half.frm_left_container .frm_primary_label,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_half.frm_left_container .frm_primary_label,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_half.frm_right_container .frm_primary_label,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_half.frm_right_container .frm_primary_label,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_first_half.frm_right_container .frm_primary_label,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_last_half.frm_right_container .frm_primary_label,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_half.frm_right_container .frm_primary_label{max-width:100%;margin-right:0;margin-left:0;padding-right:0;padding-left:0;width:100%;}.frm_style_formidable-style.with_frm_style .frm_repeat_inline,.frm_style_formidable-style.with_frm_style .frm_repeat_grid{margin: 20px 0;}.frm_style_formidable-style.with_frm_style .frm_form_field.frm_first_half.frm_right_container div.frm_description,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_first_half.frm_right_container .frm_error,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_first_half .frm_right_container div.frm_description,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_first_half .frm_right_container .frm_error,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_last_half.frm_right_container div.frm_description,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_last_half.frm_right_container .frm_error,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_half.frm_right_container div.frm_description,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_half.frm_right_container .frm_error,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_first_half.frm_left_container div.frm_description,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_first_half.frm_left_container .frm_error,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_first_half .frm_left_container div.frm_description,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_first_half .frm_left_container .frm_error,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_last_half.frm_left_container div.frm_description,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_last_half.frm_left_container .frm_error,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_half.frm_left_container div.frm_description,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_half.frm_left_container .frm_error{margin-right:0;margin-left:0;padding-right:0;padding-left:0;}}@media only screen and (max-width: 500px) {.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_container input:not([type=radio]):not([type=checkbox]),.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_container:not(.frm_dynamic_select_container) select,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_container textarea,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_container .frm_opt_container,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_container .frm-g-recaptcha,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_container .g-recaptcha,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_container .chosen-container,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_container input:not([type=radio]):not([type=checkbox]),.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_container:not(.frm_dynamic_select_container) select,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_container textarea,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_container .frm_opt_container,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_container .frm-g-recaptcha,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_container .g-recaptcha,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_container .chosen-container{max-width:100%;}.frm_style_formidable-style.with_frm_style .frm_left_container > p.description::before,.frm_style_formidable-style.with_frm_style .frm_left_container > div.description::before,.frm_style_formidable-style.with_frm_style .frm_left_container > div.frm_description::before,.frm_style_formidable-style.with_frm_style .frm_left_container > .frm_error::before,.frm_style_formidable-style.with_frm_style .frm_right_container > p.description::after,.frm_style_formidable-style.with_frm_style .frm_right_container > div.description::after,.frm_style_formidable-style.with_frm_style .frm_right_container > div.frm_description::after,.frm_style_formidable-style.with_frm_style .frm_right_container > .frm_error::after{display:none;}.frm_style_formidable-style.with_frm_style .frm_left_container label.frm_primary_label,.frm_style_formidable-style.with_frm_style .frm_right_container label.frm_primary_label{width:100%;max-width:100%;margin-right:0;margin-left:0;padding-right:0;padding-left:0;}}.frm_ajax_loading{visibility:hidden;width:auto;}.frm_ajax_loading.frm_loading_now{visibility:visible !important;}.frm_form_submit_style{height:auto;}a.frm_save_draft{cursor:pointer;}.horizontal_radio .frm_radio{margin:0 5px 0 0;}.horizontal_radio .frm_checkbox{margin:0;margin-right:5px;}.vertical_radio .frm_checkbox,.vertical_radio .frm_radio,.vertical_radio .frm_catlevel_1{display:block;}.horizontal_radio .frm_checkbox,.horizontal_radio .frm_radio,.horizontal_radio .frm_catlevel_1{display:inline-block;}.frm_file_container .frm_file_link,.with_frm_style .frm_radio label .frm_file_container,.with_frm_style .frm_checkbox label .frm_file_container{display:inline-block;margin:5px;vertical-align:middle;}.with_frm_style .frm_radio input[type=radio]{border-radius:10px;-webkit-appearance:radio;}.with_frm_style .frm_checkbox input[type=checkbox]{border-radius:0;-webkit-appearance:checkbox;}.with_frm_style .frm_radio input[type=radio],.with_frm_style .frm_checkbox input[type=checkbox]{margin-right:5px;width:auto;border:none;vertical-align:baseline;}.with_frm_style :invalid,.with_frm_style :-moz-submit-invalid,.with_frm_style :-moz-ui-invalid{box-shadow:none;}.with_frm_style .frm_error_style img{padding-right:10px;vertical-align:middle;border:none;}.with_frm_style .frm_trigger{cursor:pointer;}.with_frm_style .frm_error_style,.with_frm_style .frm_message,.frm_success_style{-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;padding:15px;}.with_frm_style .frm_message p{margin-bottom:5px;}.frm_form_fields_style,.frm_form_fields_active_style,.frm_form_fields_error_style,.frm_form_submit_style{width:auto;}.with_frm_style .frm_trigger span{float:left;}.with_frm_style table.frm-grid,#content .with_frm_style table.frm-grid{border-collapse:collapse;border:none;}.frm-grid td,.frm-grid th{padding:5px;border-width:1px;border-style:solid;border-color:#cccccc;border-top:none;border-left:none;border-right:none;}table.form_results.with_frm_style{border:1px solid #ccc;}table.form_results.with_frm_style tr td{text-align:left;color:#555555;padding:7px 9px;border-top:1px solid #cccccc;}table.form_results.with_frm_style tr.frm_even,.frm-grid .frm_even{background-color:#fff;}table.form_results.with_frm_style tr.frm_odd,.frm-grid .frm_odd{background-color:#ffffff;}.frm_collapse .ui-icon{display:inline-block;}.frm_toggle_container{border:1px solid transparent;}.frm_toggle_container ul{margin:5px 0;padding-left:0;list-style-type:none;}.frm_toggle_container .frm_month_heading{text-indent:15px;}.frm_toggle_container .frm_month_listing{margin-left:40px;}#frm_loading{display:none;position:fixed;top:0;left:0;width:100%;height:100%;z-index:99999;}#frm_loading h3{font-weight:500;padding-bottom:15px;color:#fff;font-size:24px;}#frm_loading_content{position:fixed;top:20%;left:33%;width:33%;text-align:center;padding-top:30px;font-weight:bold;z-index:9999999;}#frm_loading img{max-width:100%;}#frm_loading .progress{border-radius:4px;box-shadow:0 1px 2px rgba(0, 0, 0, 0.1) inset;height:20px;margin-bottom:20px;overflow:hidden;}#frm_loading .progress.active .progress-bar{animation:2s linear 0s normal none infinite progress-bar-stripes;}#frm_loading .progress-striped .progress-bar{background-image:linear-gradient(45deg, #cccccc 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, #cccccc 50%, #cccccc 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0));background-size:40px 40px;}#frm_loading .progress-bar{background-color:#ffffff;box-shadow:0 -1px 0 rgba(0, 0, 0, 0.15) inset;float:left;height:100%;line-height:20px;text-align:center;transition:width 0.6s ease 0s;width:100%;}.frm_pagination_cont ul.frm_pagination{display:inline-block;list-style:none;margin-left:0 !important;}.frm_pagination_cont ul.frm_pagination > li{display:inline;list-style:none;margin:2px;background-image:none;}ul.frm_pagination > li.active a{text-decoration:none;}.frm_pagination_cont ul.frm_pagination > li:first-child{margin-left:0;}.archive-pagination.frm_pagination_cont ul.frm_pagination > li{margin:0;}.frmcal{padding-top:30px;}.frmcal-title{font-size:116%;}.frmcal table.frmcal-calendar{border-collapse:collapse;margin-top:20px;color:#555555;}.frmcal table.frmcal-calendar,.frmcal table.frmcal-calendar tbody tr td{border:1px solid #cccccc;}.frmcal table.frmcal-calendar,.frmcal,.frmcal-header{width:100%;}.frmcal-header{text-align:center;}.frmcal-prev{margin-right:10px;}.frmcal-prev,.frmcal-dropdown{float:left;}.frmcal-dropdown{margin-left:5px;}.frmcal-next{float:right;}.frmcal table.frmcal-calendar thead tr th{text-align:center;padding:2px 4px;}.frmcal table.frmcal-calendar tbody tr td{height:110px;width:14.28%;vertical-align:top;padding:0 !important;color:#555555;font-size:12px;}table.frmcal-calendar .frmcal_date{background-color:#ffffff;padding:0 5px;text-align:right;-moz-box-shadow:0 2px 5px #cccccc;-webkit-box-shadow:0 2px 5px #cccccc;box-shadow:0 2px 5px #cccccc;-ms-filter:\"progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=180, Color=\'#cccccc\')\";filter:progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=180, Color=\'#cccccc\');}table.frmcal-calendar .frmcal-today .frmcal_date{background-color:#ffffff;padding:0 5px;text-align:right;-moz-box-shadow:0 2px 5px #66afe9;-webkit-box-shadow:0 2px 5px #66afe9;box-shadow:0 2px 5px #66afe9;-ms-filter:\"progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=180, Color=\'#66afe9\')\";filter:progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=180, Color=\'#66afe9\');}.frmcal_num{display:inline;}.frmcal-content{padding:2px 4px;}.frm_image_from_url{height:50px;}.frm-loading-img{background:url(//www.infinitymarketing.co.nz/wp-content/plugins/formidable/images/ajax_loader.gif) no-repeat center center;padding:6px 12px;}#ui-datepicker-div{display:none;z-index:999999 !important;}.frm_form_fields div.rating-cancel{display:none !important;}.frm_form_fields div.rating-cancel,.frm_form_fields div.star-rating{float:left;width:17px;height:17px;font-size:16px;line-height:normal;cursor:pointer;display:block;background:transparent;overflow:hidden;clear:none;}.frm_form_fields div.rating-cancel a:before{font:16px/1 \'dashicons\';content:\'\\f460\';color:#CDCDCD;}.frm_form_fields div.star-rating:before,.frm_form_fields div.star-rating a:before{font:16px/1 \'dashicons\';content:\'\\f154\';color:#F0AD4E;}.frm_form_fields div.rating-cancel a,.frm_form_fields div.star-rating a{display:block;width:16px;height:100%;border:0;}.frm_form_fields div.star-rating-on:before,.frm_form_fields div.star-rating-on a:before{content:\'\\f155\';}.frm_form_fields div.star-rating-hover:before,.frm_form_fields div.star-rating-hover a:before{content:\'\\f155\';}.frm_form_fields div.frm_half_star:before,.frm_form_fields div.frm_half_star a:before{content:\'\\f459\';}.frm_form_fields div.rating-cancel.star-rating-hover a:before{color:#B63E3F;}.frm_form_fields div.star-rating-readonly,.frm_form_fields div.star-rating-readonly a{cursor:default !important;}.frm_form_fields div.star-rating{overflow:hidden!important;}.with_frm_style .frm_form_field{clear:both;}.frm_form_field.frm_right_half,.frm_form_field.frm_right_third,.frm_form_field.frm_right_two_thirds,.frm_form_field.frm_right_fourth,.frm_form_field.frm_right_fifth,.frm_form_field.frm_right_inline,.frm_form_field.frm_last_half,.frm_form_field.frm_last_third,.frm_form_field.frm_last_two_thirds,.frm_form_field.frm_last_fourth,.frm_form_field.frm_last_fifth,.frm_form_field.frm_last_sixth,.frm_form_field.frm_last_seventh,.frm_form_field.frm_last_eighth,.frm_form_field.frm_last_inline,.frm_form_field.frm_last,.frm_form_field.frm_half,.frm_submit.frm_half,.frm_form_field.frm_third,.frm_submit.frm_third,.frm_form_field.frm_two_thirds,.frm_form_field.frm_fourth,.frm_submit.frm_fourth,.frm_form_field.frm_three_fourths,.frm_form_field.frm_fifth,.frm_submit.frm_fifth,.frm_form_field.frm_two_fifths,.frm_form_field.frm_three_fifths,.frm_form_field.frm_four_fifths,.frm_form_field.frm_sixth,.frm_submit.frm_sixth,.frm_form_field.frm_seventh,.frm_submit.frm_seventh,.frm_form_field.frm_eighth,.frm_submit.frm_eighth,.frm_form_field.frm_inline,.frm_submit.frm_inline{clear:none;float:left;margin-left:2.5%;}.frm_form_field.frm_left_half,.frm_form_field.frm_left_third,.frm_form_field.frm_left_two_thirds,.frm_form_field.frm_left_fourth,.frm_form_field.frm_left_fifth,.frm_form_field.frm_left_inline,.frm_form_field.frm_first_half,.frm_form_field.frm_first_third,.frm_form_field.frm_first_two_thirds,.frm_form_field.frm_first_fourth,.frm_form_field.frm_first_fifth,.frm_form_field.frm_first_sixth,.frm_form_field.frm_first_seventh,.frm_form_field.frm_first_eighth,.frm_form_field.frm_first_inline,.frm_form_field.frm_first{clear:left;float:left;margin-left:0;}.frm_form_field.frm_alignright{float:right !important;}.frm_form_field.frm_left_half,.frm_form_field.frm_right_half,.frm_form_field.frm_first_half,.frm_form_field.frm_last_half,.frm_form_field.frm_half,.frm_submit.frm_half{width:48.75%;}.frm_form_field.frm_left_third,.frm_form_field.frm_third,.frm_submit.frm_third,.frm_form_field.frm_right_third,.frm_form_field.frm_first_third,.frm_form_field.frm_last_third{width:31.66%;}.frm_form_field.frm_left_two_thirds,.frm_form_field.frm_right_two_thirds,.frm_form_field.frm_first_two_thirds,.frm_form_field.frm_last_two_thirds,.frm_form_field.frm_two_thirds{width:65.82%;}.frm_form_field.frm_left_fourth,.frm_form_field.frm_fourth,.frm_submit.frm_fourth,.frm_form_field.frm_right_fourth,.frm_form_field.frm_first_fourth,.frm_form_field.frm_last_fourth{width:23.12%;}.frm_form_field.frm_three_fourths{width:74.36%;}.frm_form_field.frm_left_fifth,.frm_form_field.frm_fifth,.frm_submit.frm_fifth,.frm_form_field.frm_right_fifth,.frm_form_field.frm_first_fifth,.frm_form_field.frm_last_fifth{width:18%;}.frm_form_field.frm_two_fifths {width:38.5%;}.frm_form_field.frm_three_fifths {width:59%;}.frm_form_field.frm_four_fifths {width:79.5%;}.frm_form_field.frm_sixth,.frm_submit.frm_sixth,.frm_form_field.frm_first_sixth,.frm_form_field.frm_last_sixth{width:14.58%;}.frm_form_field.frm_seventh,.frm_submit.frm_seventh,.frm_form_field.frm_first_seventh,.frm_form_field.frm_last_seventh{width:12.14%;}.frm_form_field.frm_eighth,.frm_submit.frm_eighth,.frm_form_field.frm_first_eighth,.frm_form_field.frm_last_eighth{width:10.31%;}.frm_form_field.frm_left_inline,.frm_form_field.frm_first_inline,.frm_form_field.frm_inline,.frm_submit.frm_inline,.frm_form_field.frm_right_inline,.frm_form_field.frm_last_inline{width:auto;}.frm_full,.frm_full .wp-editor-wrap,.frm_full input:not([type=\'checkbox\']):not([type=\'radio\']):not([type=\'button\']),.frm_full select,.frm_full textarea{width:100% !important;}.frm_full .wp-editor-wrap input{width:auto !important;}@media only screen and (max-width: 600px) {.frm_form_field.frm_half,.frm_submit.frm_half,.frm_form_field.frm_left_half,.frm_form_field.frm_right_half,.frm_form_field.frm_first_half,.frm_form_field.frm_last_half,.frm_form_field.frm_first_third,.frm_form_field.frm_third,.frm_submit.frm_third,.frm_form_field.frm_last_third,.frm_form_field.frm_first_two_thirds,.frm_form_field.frm_last_two_thirds,.frm_form_field.frm_two_thirds,.frm_form_field.frm_left_fourth,.frm_form_field.frm_fourth,.frm_submit.frm_fourth,.frm_form_field.frm_right_fourth,.frm_form_field.frm_first_fourth,.frm_form_field.frm_last_fourth,.frm_form_field.frm_three_fourths,.frm_form_field.frm_fifth,.frm_submit.frm_fifth,.frm_form_field.frm_two_fifths,.frm_form_field.frm_three_fifths,.frm_form_field.frm_four_fifths,.frm_form_field.frm_sixth,.frm_submit.frm_sixth,.frm_form_field.frm_seventh,.frm_submit.frm_seventh,.frm_form_field.frm_eighth,.frm_submit.frm_eighth,.frm_form_field.frm_first_inline,.frm_form_field.frm_inline,.frm_submit.frm_inline,.frm_form_field.frm_last_inline{width:100%;margin-left:0;margin-right:0;clear:both;float:none;}}.frm_form_field.frm_left_container label.frm_primary_label{float:left;display:inline;max-width:33%;margin-right:10px;}.frm_form_field.frm_left_container input:not([type=radio]):not([type=checkbox]),.frm_form_field.frm_left_container:not(.frm_dynamic_select_container) select,.frm_form_field.frm_left_container textarea,.frm_form_field.frm_left_container .wp-editor-wrap,.frm_form_field.frm_left_container .frm_opt_container,.frm_form_field.frm_left_container .frm_dropzone,.frm_form_field.frm_left_container .frm-g-recaptcha,.frm_form_field.frm_left_container .g-recaptcha,.frm_form_field.frm_left_container .chosen-container,.frm_form_field.frm_left_container .frm_combo_inputs_container,.frm_form_field.frm_right_container input:not([type=radio]):not([type=checkbox]),.frm_form_field.frm_right_container:not(.frm_dynamic_select_container) select,.frm_form_field.frm_right_container textarea,.frm_form_field.frm_right_container .wp-editor-wrap,.frm_form_field.frm_right_container .frm_opt_container,.frm_form_field.frm_right_container .frm_dropzone,.frm_form_field.frm_right_container .frm-g-recaptcha,.frm_form_field.frm_right_container .g-recaptcha,.frm_form_field.frm_right_container .chosen-container,.frm_form_field.frm_right_container .frm_combo_inputs_container{max-width:62%;}.frm_form_field.frm_left_container .frm_combo_inputs_container input,.frm_form_field.frm_left_container .frm_combo_inputs_container select,.frm_form_field.frm_right_container .frm_combo_inputs_container input,.frm_form_field.frm_right_container .frm_combo_inputs_container select{max-width:100%;}.frm_form_field.frm_left_container .frm_opt_container,.frm_form_field.frm_right_container .frm_opt_container,.frm_form_field.frm_inline_container .frm_opt_container,.frm_form_field.frm_left_container .frm_combo_inputs_container,.frm_form_field.frm_right_container .frm_combo_inputs_container,.frm_form_field.frm_inline_container .frm_combo_inputs_container,.frm_form_field.frm_left_container .wp-editor-wrap,.frm_form_field.frm_right_container .wp-editor-wrap,.frm_form_field.frm_inline_container .wp-editor-wrap,.frm_form_field.frm_left_container .frm_dropzone,.frm_form_field.frm_right_container .frm_dropzone,.frm_form_field.frm_inline_container .frm_dropzone,.frm_form_field.frm_left_container .frm-g-recaptcha,.frm_form_field.frm_right_container .frm-g-recaptcha,.frm_form_field.frm_inline_container .frm-g-recaptcha,.frm_form_field.frm_left_container .g-recaptcha,.frm_form_field.frm_right_container .g-recaptcha,.frm_form_field.frm_inline_container .g-recaptcha{display:inline-block;}.frm_form_field.frm_left_half.frm_left_container .frm_primary_label,.frm_form_field.frm_right_half.frm_left_container .frm_primary_label,.frm_form_field.frm_left_half.frm_right_container .frm_primary_label,.frm_form_field.frm_right_half.frm_right_container .frm_primary_label,.frm_form_field.frm_first_half.frm_left_container .frm_primary_label,.frm_form_field.frm_last_half.frm_left_container .frm_primary_label,.frm_form_field.frm_first_half.frm_right_container .frm_primary_label,.frm_form_field.frm_last_half.frm_right_container .frm_primary_label,.frm_form_field.frm_half.frm_right_container .frm_primary_label,.frm_form_field.frm_half.frm_left_container .frm_primary_label{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;max-width:33%;}.wp-editor-wrap *,.wp-editor-wrap *:after,.wp-editor-wrap *:before{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;}.with_frm_style .frm_grid,.with_frm_style .frm_grid_first,.with_frm_style .frm_grid_odd{clear:both;margin-bottom:0 !important;padding:5px;border-width:1px;border-style:solid;border-color:#cccccc;border-left:none;border-right:none;}.with_frm_style .frm_grid,.with_frm_style .frm_grid_odd{border-top:none;}.frm_grid .frm_error,.frm_grid_first .frm_error,.frm_grid_odd .frm_error{display:none;}.frm_grid:after,.frm_grid_first:after,.frm_grid_odd:after{visibility:hidden;display:block;font-size:0;content:\" \";clear:both;height:0;}.frm_grid_first{margin-top:20px;}.frm_grid_first,.frm_grid_odd{background-color:#ffffff;}.frm_grid{background-color:#ffffff;}.frm_grid .frm_primary_label,.frm_grid_first .frm_primary_label,.frm_grid_odd .frm_primary_label,.frm_grid .frm_radio,.frm_grid_first .frm_radio,.frm_grid_odd .frm_radio,.frm_grid .frm_checkbox,.frm_grid_first .frm_checkbox,.frm_grid_odd .frm_checkbox{float:left !important;display:block;margin-top:0;margin-left:0 !important;}.frm_grid_first .frm_radio label,.frm_grid .frm_radio label,.frm_grid_odd .frm_radio label,.frm_grid_first .frm_checkbox label,.frm_grid .frm_checkbox label,.frm_grid_odd .frm_checkbox label{visibility:hidden;white-space:nowrap;text-align:left;}.frm_grid_first .frm_radio label input,.frm_grid .frm_radio label input,.frm_grid_odd .frm_radio label input,.frm_grid_first .frm_checkbox label input,.frm_grid .frm_checkbox label input,.frm_grid_odd .frm_checkbox label input{visibility:visible;margin:2px 0 0;float:right;}.frm_grid .frm_radio,.frm_grid_first .frm_radio,.frm_grid_odd .frm_radio,.frm_grid .frm_checkbox,.frm_grid_first .frm_checkbox,.frm_grid_odd .frm_checkbox{display:inline;}.frm_grid_2 .frm_radio,.frm_grid_2 .frm_checkbox,.frm_grid_2 label.frm_primary_label{width:48% !important;}.frm_grid_2 .frm_radio,.frm_grid_2 .frm_checkbox{margin-right:4%;}.frm_grid_3 .frm_radio,.frm_grid_3 .frm_checkbox,.frm_grid_3 label.frm_primary_label{width:30% !important;}.frm_grid_3 .frm_radio,.frm_grid_3 .frm_checkbox{margin-right:3%;}.frm_grid_4 .frm_radio,.frm_grid_4 .frm_checkbox{width:20% !important;}.frm_grid_4 label.frm_primary_label{width:28% !important;}.frm_grid_4 .frm_radio,.frm_grid_4 .frm_checkbox{margin-right:4%;}.frm_grid_5 label.frm_primary_label,.frm_grid_7 label.frm_primary_label{width:24% !important;}.frm_grid_5 .frm_radio,.frm_grid_5 .frm_checkbox{width:17% !important;margin-right:2%;}.frm_grid_6 label.frm_primary_label{width:25% !important;}.frm_grid_6 .frm_radio,.frm_grid_6 .frm_checkbox{width:14% !important;margin-right:1%;}.frm_grid_7 label.frm_primary_label{width:22% !important;}.frm_grid_7 .frm_radio,.frm_grid_7 .frm_checkbox{width:12% !important;margin-right:1%;}.frm_grid_8 label.frm_primary_label{width:23% !important;}.frm_grid_8 .frm_radio,.frm_grid_8 .frm_checkbox{width:10% !important;margin-right:1%;}.frm_grid_9 label.frm_primary_label{width:20% !important;}.frm_grid_9 .frm_radio,.frm_grid_9 .frm_checkbox{width:9% !important;margin-right:1%;}.frm_grid_10 label.frm_primary_label{width:19% !important;}.frm_grid_10 .frm_radio,.frm_grid_10 .frm_checkbox{width:8% !important;margin-right:1%;}.with_frm_style .frm_inline_container.frm_grid_first label.frm_primary_label,.with_frm_style .frm_inline_container.frm_grid label.frm_primary_label,.with_frm_style .frm_inline_container.frm_grid_odd label.frm_primary_label,.with_frm_style .frm_inline_container.frm_grid_first .frm_opt_container,.with_frm_style .frm_inline_container.frm_grid .frm_opt_container,.with_frm_style .frm_inline_container.frm_grid_odd .frm_opt_container{margin-right:0;}.with_frm_style .frm_inline_container.frm_scale_container label.frm_primary_label{float:left;}.with_frm_style .frm_other_input.frm_other_full{margin-top:10px;}.with_frm_style .frm_repeat_sec{margin-bottom:20px;margin-top:20px;}.with_frm_style .frm_repeat_inline{clear:both;}.frm_form_field .frm_repeat_sec .frm_add_form_row{opacity:0;display:none;*display:inline;display:inline\\0/; -moz-transition: opacity .15s ease-in-out;-webkit-transition: opacity .15s ease-in-out;transition: opacity .15s ease-in-out;pointer-events:none;}.frm_section_heading div.frm_repeat_sec:last-child .frm_add_form_row{opacity:100;display:inline;pointer-events:auto;}.frm_form_field .frm_repeat_grid .frm_form_field label.frm_primary_label{display:none !important;}.frm_form_field .frm_repeat_grid.frm_first_repeat .frm_form_field label.frm_primary_label{display:inherit !important;}.frm_form_field.frm_two_col .frm_radio,.frm_form_field.frm_three_col .frm_radio,.frm_form_field.frm_four_col .frm_radio,.frm_form_field.frm_two_col .frm_checkbox,.frm_form_field.frm_three_col .frm_checkbox,.frm_form_field.frm_four_col .frm_checkbox{float:left;}.frm_form_field.frm_two_col .frm_radio,.frm_form_field.frm_two_col .frm_checkbox{width:48%;margin-right:4%;}.frm_form_field.frm_three_col .frm_radio,.frm_form_field.frm_three_col .frm_checkbox{width:30%;margin-right:5%;}.frm_form_field.frm_four_col .frm_radio,.frm_form_field.frm_four_col .frm_checkbox{width:22%;margin-right:4%;}.frm_form_field.frm_two_col .frm_radio:nth-child(2n+2),.frm_form_field.frm_two_col .frm_checkbox:nth-child(2n+2),.frm_form_field.frm_three_col .frm_radio:nth-child(3n+3),.frm_form_field.frm_three_col .frm_checkbox:nth-child(3n+3),.frm_form_field.frm_four_col .frm_radio:nth-child(4n+4),.frm_form_field.frm_four_col .frm_checkbox:nth-child(4n+4){margin-right:0;}.frm_form_field.frm_scroll_box .frm_opt_container{height:100px;overflow:auto;}.frm_form_field.frm_html_scroll_box{height:100px;overflow:auto;background-color:#ffffff;border-color:#cccccc;border-width:1px;border-style:solid;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;width:100%;max-width:100%;font-size:14px;padding:6px 10px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;outline:none;font-weight:normal;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset;}.frm_form_field.frm_two_col .frm_opt_container:after,.frm_form_field.frm_three_col .frm_opt_container:after,.frm_form_field.frm_four_col .frm_opt_container:after{content:\".\";display:block;clear:both;visibility:hidden;line-height:0;height:0;}.frm_form_field.frm_total input,.frm_form_field.frm_total textarea{opacity:1;background-color:transparent !important;border:none !important;font-weight:bold;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none !important;display:inline;-moz-appearance:textfield;padding:0;}.frm_form_field.frm_total input::-webkit-outer-spin-button,.frm_form_field.frm_total input::-webkit-inner-spin-button {-webkit-appearance: none;}.frm_form_field.frm_total input:focus,.frm_form_field.frm_total textarea:focus{background-color:transparent;border:none;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none;}.frm_text_block{margin-left:20px;}.frm_text_block input,.frm_text_block label.frm_primary_label{margin-left:-20px;}.frm_text_block .frm_checkbox input[type=checkbox],.frm_text_block .frm_radio input[type=radio]{margin-right:4px;}.frm_form_field.frm_capitalize input,.frm_form_field.frm_capitalize select,.frm_form_field.frm_capitalize .frm_opt_container label{text-transform:capitalize;}.frm_clearfix:after{content:\".\";display:block;clear:both;visibility:hidden;line-height:0;height:0;}.frm_clearfix{display:inline-block;}html[xmlns] .frm_clearfix{display:block;}* html .frm_clearfix{height:1%;}.with_frm_style.frm_login_form,.with_frm_style.frm_login_form form{clear:both;}.with_frm_style.frm_login_form.frm_inline_login .login-remember input{vertical-align:baseline;}.with_frm_style.frm_login_form.frm_inline_login .login-submit{float:left;}.with_frm_style.frm_login_form.frm_inline_login label{display:inline;}.with_frm_style.frm_login_form.frm_inline_login .login-username,.with_frm_style.frm_login_form.frm_inline_login .login-password,.with_frm_style.frm_login_form.frm_inline_login .login-remember{float:left;margin-right:5px;}.with_frm_style.frm_login_form.frm_inline_login form{position:relative;clear:none;}.with_frm_style.frm_login_form.frm_inline_login .login-remember{position:absolute;top:35px;}.with_frm_style.frm_login_form.frm_inline_login input[type=submit]{margin:0 !important;}.with_frm_style.frm_login_form.frm_no_labels .login-username label,.with_frm_style.frm_login_form.frm_no_labels .login-password label{display:none;}.with_frm_style .frm-open-login{float:left;margin-right:15px;}.with_frm_style .frm-open-login a{text-decoration:none;border:none;outline:none;}.with_frm_style.frm_slide.frm_login_form form{display:none;}.with_frm_style .chosen-container{font-size:14px;position:relative;display:inline-block;zoom:1;vertical-align:middle;width:100% !important;-webkit-user-select:none;-moz-user-select:none;user-select:none;*display:inline;}.with_frm_style .chosen-container .chosen-drop{background:#fff;border:1px solid #aaa;border-top:0;position:absolute;top:100%;left:-9999px;box-shadow:0 4px 5px rgba(0,0,0,.15);z-index:1010;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;width:100%;}.with_frm_style .chosen-container.chosen-with-drop .chosen-drop{left:0;}.with_frm_style .chosen-container a{cursor:pointer;}.with_frm_style .chosen-container-single .chosen-single{position:relative;display:block;overflow:hidden;padding:0 0 0 8px;height:25px;background:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #ffffff), color-stop(50%, #f6f6f6), color-stop(52%, #eeeeee), color-stop(100%, #f4f4f4));background:-webkit-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);background:-moz-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);background:-o-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);background:linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);background-clip:padding-box;box-shadow:0 0 3px white inset, 0 1px 1px rgba(0, 0, 0, 0.1);text-decoration:none;white-space:nowrap;line-height:24px;}.with_frm_style .chosen-container-single .chosen-single span{margin-right:26px;display:block;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;}.with_frm_style .chosen-container-single .chosen-single-with-deselect span{margin-right:38px;}.with_frm_style .chosen-container-single .chosen-single abbr{display:block;position:absolute;right:26px;top:6px;width:12px;height:12px;font-size:1px;background:url(\'//www.infinitymarketing.co.nz/wp-content/plugins/formidable/pro/images/chosen-sprite.png\') -42px 1px no-repeat;}.with_frm_style .chosen-container-single .chosen-single abbr:hover{background-position:-42px -10px;}.with_frm_style .chosen-container-single.chosen-disabled .chosen-single abbr:hover{background-position:-42px -10px;}.with_frm_style .chosen-container-single .chosen-single div{position:absolute;right:0;top:0;display:block;height:100%;width:18px;}.with_frm_style .chosen-container-single .chosen-single div b{background:url(\'//www.infinitymarketing.co.nz/wp-content/plugins/formidable/pro/images/chosen-sprite.png\') no-repeat 0 2px;display:block;width:100%;height:100%;}.with_frm_style .chosen-container-single .chosen-search{padding:3px 4px;position:relative;margin:0;white-space:nowrap;z-index:1010;}.with_frm_style .chosen-container-single .chosen-search input[type=\"text\"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;width:100% !important;max-width:100% !important;height:auto;background:white url(\'//www.infinitymarketing.co.nz/wp-content/plugins/formidable/pro/images/chosen-sprite.png\') no-repeat 100% -20px;background:url(\'//www.infinitymarketing.co.nz/wp-content/plugins/formidable/pro/images/chosen-sprite.png\') no-repeat 100% -20px;font-size:1em;font-family:sans-serif;line-height:normal;border-radius:0;}.with_frm_style .chosen-container-single .chosen-drop{margin-top:-1px;border-radius:0 0 4px 4px;background-clip:padding-box;}.with_frm_style .chosen-container-single.chosen-container-single-nosearch .chosen-search{position:absolute;left:-9999px;}.with_frm_style .chosen-container .chosen-results{cursor:text;overflow-x:hidden;overflow-y:auto;position:relative;margin:0 4px 4px 0;padding:0 0 0 4px;max-height:240px;word-wrap:break-word;-webkit-overflow-scrolling:touch;}.with_frm_style .chosen-container .chosen-results li:before{background:none;}.with_frm_style .chosen-container .chosen-results li{display:none;margin:0;padding:5px 6px;list-style:none;line-height:15px;-webkit-touch-callout:none;}.with_frm_style .chosen-container .chosen-results li.active-result{display:list-item;cursor:pointer;}.with_frm_style .chosen-container .chosen-results li.disabled-result{display:list-item;color:#ccc;cursor:default;}.with_frm_style .chosen-container .chosen-results li.highlighted{background-color:#3875d7;color:#fff;}.with_frm_style .chosen-container .chosen-results li.no-results{display:list-item;background:#f4f4f4;}.with_frm_style .chosen-container .chosen-results li.group-result{display:list-item;font-weight:bold;cursor:default;}.with_frm_style .chosen-container .chosen-results li.group-option{padding-left:15px;}.with_frm_style .chosen-container .chosen-results li em{font-style:normal;text-decoration:underline;}.with_frm_style .chosen-container-multi .chosen-choices{position:relative;overflow:hidden;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;margin:0;padding:0 5px;width:100%;height:auto !important;height:1%;cursor:text;}.with_frm_style .chosen-container-multi .chosen-choices li{float:left;list-style:none;}.with_frm_style .chosen-container-multi .chosen-choices li.search-field{margin:0;padding:0;white-space:nowrap;}.with_frm_style .chosen-container-multi .chosen-choices li.search-field input[type=\"text\"]{margin:1px 0;padding:0;height:25px;outline:0;border:0 !important;background:transparent !important;box-shadow:none;color:#666;font-size:100%;font-family:sans-serif;line-height:normal;border-radius:0;}.with_frm_style .chosen-container-multi .chosen-choices li.search-choice{position:relative;margin:3px 5px 3px 0;padding:3px 20px 3px 5px;border:1px solid #aaa;max-width:100%;border-radius:3px;background-color:#eee;background-size:100% 19px;background-repeat:repeat-x;background-clip:padding-box;box-shadow:0 0 2px white inset, 0 1px 0 rgba(0, 0, 0, 0.05);color:#333;line-height:13px;cursor:default;}.with_frm_style .chosen-container-multi .chosen-choices li.search-choice .search-choice-close{position:absolute;top:4px;right:3px;display:block;width:12px;height:12px;background:url(\'//www.infinitymarketing.co.nz/wp-content/plugins/formidable/pro/images/chosen-sprite.png\') -42px 1px no-repeat;font-size:1px;}.with_frm_style .chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover{background-position:-42px -10px;}.with_frm_style .chosen-container-multi .chosen-choices li.search-choice-disabled{padding-right:5px;border:1px solid #ccc;background-color:#e4e4e4;color:#666;}.with_frm_style .chosen-container-multi .chosen-choices li.search-choice-focus{background:#d4d4d4;}.with_frm_style .chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close{background-position:-42px -10px;}.with_frm_style .chosen-container-multi .chosen-results{margin:0;padding:0;}.with_frm_style .chosen-container-multi .chosen-drop .result-selected{display:list-item;color:#ccc;cursor:default;}.with_frm_style .chosen-container-active .chosen-single{border:1px solid #5897fb;box-shadow:0 0 5px rgba(0, 0, 0, 0.3);}.with_frm_style .chosen-container-active.chosen-with-drop .chosen-single{border:1px solid #aaa;-moz-border-radius-bottomright:0;border-bottom-right-radius:0;-moz-border-radius-bottomleft:0;border-bottom-left-radius:0;box-shadow:0 1px 0 #fff inset;}.with_frm_style .chosen-container-active.chosen-with-drop .chosen-single div{border-left:none;background:transparent;}.with_frm_style .chosen-container-active.chosen-with-drop .chosen-single div b{background-position:-18px 2px;}.with_frm_style .chosen-container-active .chosen-choices li.search-field input[type=\"text\"]{color:#111 !important;}.with_frm_style .chosen-disabled{opacity:0.5 !important;cursor:default;}.with_frm_style .chosen-disabled .chosen-single{cursor:default;}.with_frm_style .chosen-disabled .chosen-choices .search-choice .search-choice-close{cursor:default;}.with_frm_style .chosen-rtl{text-align:right;}.with_frm_style .chosen-rtl .chosen-single{overflow:visible;padding:0 8px 0 0;}.with_frm_style .chosen-rtl .chosen-single span{margin-right:0;margin-left:26px;direction:rtl;}.with_frm_style .chosen-rtl .chosen-single-with-deselect span{margin-left:38px;}.with_frm_style .chosen-rtl .chosen-single div{right:auto;left:3px;}.with_frm_style .chosen-rtl .chosen-single abbr{right:auto;left:26px;}.with_frm_style .chosen-rtl .chosen-choices li{float:right;}.with_frm_style .chosen-rtl .chosen-choices li.search-field input[type=\"text\"]{direction:rtl;}.with_frm_style .chosen-rtl .chosen-choices li.search-choice{margin:3px 5px 3px 0;padding:3px 5px 3px 19px;}.with_frm_style .chosen-rtl .chosen-choices li.search-choice .search-choice-close{right:auto;left:4px;}.with_frm_style .chosen-rtl.chosen-container-single-nosearch .chosen-search, .with_frm_style .chosen-rtl .chosen-drop{left:9999px;}.with_frm_style .chosen-rtl.chosen-container-single .chosen-results{margin:0 0 4px 4px;padding:0 4px 0 0;}.with_frm_style .chosen-rtl .chosen-results li.group-option{padding-right:15px;padding-left:0;}.with_frm_style .chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div{border-right:none;}.with_frm_style .chosen-rtl .chosen-search input[type=\"text\"]{padding:4px 5px 4px 20px;background:white url(\'//www.infinitymarketing.co.nz/wp-content/plugins/formidable/pro/images/chosen-sprite.png\') no-repeat -30px -20px;background:url(\'//www.infinitymarketing.co.nz/wp-content/plugins/formidable/pro/images/chosen-sprite.png\') no-repeat -30px -20px;direction:rtl;}.with_frm_style .chosen-rtl.chosen-container-single .chosen-single div b{background-position:6px 2px;}.with_frm_style .chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b{background-position:-12px 2px;}@font-face {font-family:\'s11-fp\';src:url(\'//www.infinitymarketing.co.nz/wp-content/plugins/formidable/fonts/s11-fp.eot\');src:local(\'☺\'), url(\'//www.infinitymarketing.co.nz/wp-content/plugins/formidable/fonts/s11-fp.woff\') format(\'woff\'), url(\'//www.infinitymarketing.co.nz/wp-content/plugins/formidable/fonts/s11-fp.ttf\') format(\'truetype\'), url(\'//www.infinitymarketing.co.nz/wp-content/plugins/formidable/fonts/s11-fp.svg\') format(\'svg\');font-weight:normal;font-style:normal;}.frm_icon_font,.frm_dashicon_font{text-decoration:none;text-shadow: none;font-weight:normal;}i.frm_icon_font{font-style:normal;}.frm_icon_font:before,select.frm_icon_font{font-family: \'s11-fp\' !important;font-size:16px;speak: none;-webkit-font-smoothing: antialiased;-moz-osx-font-smoothing: grayscale;-moz-transition: all .1s ease-in-out;-webkit-transition: all .1s ease-in-out;transition: all .1s ease-in-out;}.frm_icon_font,a.frm_icon_font.frm_icon_font:hover,a.frm_icon_font:hover{text-decoration:none !important;}.frm_icon_font:focus,.frm_dashicon_font:focus{box-shadow:none;-webkit-box-shadow:none;}.frm_duplicate_icon:active,.frm_move_icon:active,.frm_delete_icon:active{outline:none;}.frm_trigger .frm_icon_font{padding:0 5px;}.ab-icon.frm_dashicon_font:before{content: \"\\f324\";}.frm_logo_icon:before {content: \"\\e601\";}.frm_required_icon:before {content: \"\\e612\";}.frm_delete_icon:before {content: \"\\e610\" !important;}.frm_move_icon:before {content: \"\\e61a\";}.frm_clear_icon:before {content: \"\\e60a\";}.frm_noclear_icon:before {content: \"\\e60b\";}.frm_duplicate_icon:before {content: \"\\e61b\";}.frm_new_icon:before {content: \"\\e614\";}.frm_tooltip_icon:before {content: \"\\e611\";}.frm_forbid_icon:before {content: \"\\e636\";}.frm_check_icon:before {content: \"\\e605\";}.frm_check1_icon:before {content: \"\\e606\";}.frm_plus_icon:before {content: \"\\e62f\";}.frm_plus1_icon:before {content: \"\\e602\";}.frm_plus2_icon:before {content: \"\\e603\";}.frm_plus3_icon:before {content: \"\\e632\";}.frm_plus4_icon:before {content: \"\\e60f\";}.frm_minus_icon:before {content: \"\\e62e\";}.frm_minus1_icon:before {content: \"\\e600\";}.frm_minus2_icon:before {content: \"\\e604\";}.frm_minus3_icon:before {content: \"\\e633\";}.frm_minus4_icon:before {content: \"\\e613\";}.frm_cancel_icon:before {content: \"\\e607\";}.frm_cancel1_icon:before {content: \"\\e608\";}.frm_arrowup_icon:before {content: \"\\e60d\";}.frm_arrowup1_icon:before {content: \"\\e60e\";}.frm_arrowup2_icon:before {content: \"\\e630\";}.frm_arrowup3_icon:before {content: \"\\e62b\";}.frm_arrowup4_icon:before {content: \"\\e62c\";}.frm_arrowup5_icon:before {content: \"\\e635\";}.frm_arrowup6_icon:before {content: \"\\e62d\";}.frm_arrowdown_icon:before {content: \"\\e609\";}.frm_arrowdown1_icon:before {content: \"\\e60c\";}.frm_arrowdown2_icon:before {content: \"\\e631\";}.frm_arrowdown3_icon:before {content: \"\\e628\";}.frm_arrowdown4_icon:before {content: \"\\e629\";}.frm_arrowdown5_icon:before {content: \"\\e634\";}.frm_arrowdown6_icon:before {content: \"\\e62a\";}.frm_download_icon:before {content: \"\\e615\";}.frm_upload_icon:before {content: \"\\e616\";}.frm_menu_icon:before {content: \"\\e618\";}.frm_twitter_icon:before {content: \"\\e619\";}.frm_sms_icon:before {content: \"\\e61c\";}.frm_pencil_icon:before {content: \"\\e61d\";}.frm_pencil1_icon:before {content: \"\\e61e\";}.frm_paypal_icon:before {content: \"\\e61f\";}.frm_twilio_icon:before {content: \"\\e620\";}.frm_googleplus_icon:before {content: \"\\e621\";}.frm_mailchimp_icon:before {content: \"\\e622\";}.frm_pdf_icon:before {content: \"\\e623\";}.frm_highrise_icon:before {content: \"\\e617\";}.frm_feed_icon:before {content: \"\\e624\";}.frm_facebook_icon:before {content: \"\\e625\";}.frm_email_icon:before {content: \"\\e626\";}.frm_aweber_icon:before {content: \"\\e627\";}.frm_register_icon:before {content: \"\\e637\";}.frm_authorize_icon:before {content: \"\\e900\";}.frm_stripe_icon:before {content: \"\\e902\";}.frm_woocommerce_icon:before {content: \"\\e903\";}.frm_paste_icon:before {content: \"\\e901\";}@-webkit-keyframes passing-through {0% {opacity: 0;-webkit-transform: translateY(40px);-moz-transform: translateY(40px);-ms-transform: translateY(40px);-o-transform: translateY(40px);transform: translateY(40px);}30%, 70% {opacity: 1;-webkit-transform: translateY(0px);-moz-transform: translateY(0px);-ms-transform: translateY(0px);-o-transform: translateY(0px);transform: translateY(0px);}100% {opacity: 0;-webkit-transform: translateY(-40px);-moz-transform: translateY(-40px);-ms-transform: translateY(-40px);-o-transform: translateY(-40px);transform: translateY(-40px);}}@-moz-keyframes passing-through {0% {opacity: 0;-webkit-transform: translateY(40px);-moz-transform: translateY(40px);-ms-transform: translateY(40px);-o-transform: translateY(40px);transform: translateY(40px);}30%, 70% {opacity: 1;-webkit-transform: translateY(0px);-moz-transform: translateY(0px);-ms-transform: translateY(0px);-o-transform: translateY(0px);transform: translateY(0px);}100% {opacity: 0;-webkit-transform: translateY(-40px);-moz-transform: translateY(-40px);-ms-transform: translateY(-40px);-o-transform: translateY(-40px);transform: translateY(-40px);}}@keyframes passing-through {0% {opacity: 0;-webkit-transform: translateY(40px);-moz-transform: translateY(40px);-ms-transform: translateY(40px);-o-transform: translateY(40px);transform: translateY(40px);}30%, 70% {opacity: 1;-webkit-transform: translateY(0px);-moz-transform: translateY(0px);-ms-transform: translateY(0px);-o-transform: translateY(0px);transform: translateY(0px);}100% {opacity: 0;-webkit-transform: translateY(-40px);-moz-transform: translateY(-40px);-ms-transform: translateY(-40px);-o-transform: translateY(-40px);transform: translateY(-40px);}}@-webkit-keyframes slide-in {0% {opacity: 0;-webkit-transform: translateY(40px);-moz-transform: translateY(40px);-ms-transform: translateY(40px);-o-transform: translateY(40px);transform: translateY(40px);}30% {opacity: 1;-webkit-transform: translateY(0px);-moz-transform: translateY(0px);-ms-transform: translateY(0px);-o-transform: translateY(0px);transform: translateY(0px);}}@-moz-keyframes slide-in {0% {opacity: 0;-webkit-transform: translateY(40px);-moz-transform: translateY(40px);-ms-transform: translateY(40px);-o-transform: translateY(40px);transform: translateY(40px);}30% {opacity: 1;-webkit-transform: translateY(0px);-moz-transform: translateY(0px);-ms-transform: translateY(0px);-o-transform: translateY(0px);transform: translateY(0px);}}@keyframes slide-in {0% {opacity: 0;-webkit-transform: translateY(40px);-moz-transform: translateY(40px);-ms-transform: translateY(40px);-o-transform: translateY(40px);transform: translateY(40px);}30% {opacity: 1;-webkit-transform: translateY(0px);-moz-transform: translateY(0px);-ms-transform: translateY(0px);-o-transform: translateY(0px);transform: translateY(0px);}}@-webkit-keyframes pulse {0% {-webkit-transform: scale(1);-moz-transform: scale(1);-ms-transform: scale(1);-o-transform: scale(1);transform: scale(1);}10% {-webkit-transform: scale(1.1);-moz-transform: scale(1.1);-ms-transform: scale(1.1);-o-transform: scale(1.1);transform: scale(1.1);}20% {-webkit-transform: scale(1);-moz-transform: scale(1);-ms-transform: scale(1);-o-transform: scale(1);transform: scale(1);}}@-moz-keyframes pulse {0% {-webkit-transform: scale(1);-moz-transform: scale(1);-ms-transform: scale(1);-o-transform: scale(1);transform: scale(1);}10% {-webkit-transform: scale(1.1);-moz-transform: scale(1.1);-ms-transform: scale(1.1);-o-transform: scale(1.1);transform: scale(1.1);}20% {-webkit-transform: scale(1);-moz-transform: scale(1);-ms-transform: scale(1);-o-transform: scale(1);transform: scale(1);}}@keyframes pulse {0% {-webkit-transform: scale(1);-moz-transform: scale(1);-ms-transform: scale(1);-o-transform: scale(1);transform: scale(1);}10% {-webkit-transform: scale(1.1);-moz-transform: scale(1.1);-ms-transform: scale(1.1);-o-transform: scale(1.1);transform: scale(1.1);}20% {-webkit-transform: scale(1);-moz-transform: scale(1);-ms-transform: scale(1);-o-transform: scale(1);transform: scale(1);}}.frm_dropzone, .frm_dropzone * {box-sizing: border-box;}.frm_dropzone.dz-clickable {min-height: 150px;border: 2px dashed #dfdfdf;background:#ffffff;padding: 20px 20px;border-radius:5px;cursor: pointer;margin-top:5px;line-height:1.42857143;}.frm_dropzone.dz-clickable * {cursor: default;}.frm_dropzone.dz-clickable.frm_single_upload{max-width: 200px;}.frm_dropzone .dz-message{display:none;font-size:20px;text-align: center;margin: .5em 0 1em;}.frm_dropzone.dz-clickable.frm_single_upload .dz-message{margin: 0 0 .5em 0;}.frm_dropzone.dz-clickable .dz-message,.frm_dropzone .frm_upload_icon{display:block;}.frm_dropzone.dz-clickable .dz-message,.frm_dropzone.dz-clickable .dz-message * {cursor: pointer;}#frm_form_editor_container .frm_dropzone.dz-clickable,#frm_form_editor_container .frm_dropzone.dz-clickable *{cursor: default;}.frm_dropzone.dz-started .dz-message {display: none;}.frm_dropzone.dz-drag-hover .dz-message {opacity: 0.5;}.frm_dropzone .frm_upload_icon:before{font-size:40px;}.frm_dropzone .frm_small_text {font-size:14px;}.frm_dropzone.dz-drag-hover {border-style: solid;}.frm_dropzone .dz-preview {position: relative;display: inline-block;vertical-align: top;margin: 16px;min-height: 100px;}.frm_dropzone .dz-preview:hover {z-index: 1000;}.frm_dropzone .dz-preview:hover .dz-details {opacity: 1;}.frm_dropzone .dz-preview.dz-file-preview .dz-image {border-radius: 20px;background: #999;background: linear-gradient(to bottom, #eee, #ddd);}.frm_dropzone .dz-preview.dz-file-preview .dz-details {opacity: 1;}.frm_dropzone .dz-preview.dz-image-preview .dz-details {-webkit-transition: opacity 0.2s linear;-moz-transition: opacity 0.2s linear;-ms-transition: opacity 0.2s linear;-o-transition: opacity 0.2s linear;transition: opacity 0.2s linear;}.frm_dropzone .dz-preview .dz-remove {font-size: 14px;text-align: center;display: block;cursor: pointer;border: none;}.frm_dropzone .dz-preview .dz-remove:hover {text-decoration: underline;}.frm_dropzone .dz-preview:hover .dz-details {opacity: 1;}.frm_dropzone .dz-preview .dz-details {z-index: 20;position: absolute;top: 0;left: 0;opacity: 0;font-size: 13px;min-width: 100%;max-width: 100%;padding: 2em 1em;text-align: center;color: rgba(0, 0, 0, 0.9);line-height: 150%;}.frm_dropzone .dz-preview .dz-details .dz-size {margin-bottom: 1em;font-size: 16px;}.frm_dropzone .dz-preview .dz-details .dz-filename {white-space: nowrap;}.frm_dropzone .dz-preview .dz-details .dz-filename:hover span {border: 1px solid rgba(200, 200, 200, 0.8);background-color: rgba(255, 255, 255, 0.8);}.frm_dropzone .dz-preview .dz-details .dz-filename:not(:hover) {overflow: hidden;text-overflow: ellipsis;}.frm_dropzone .dz-preview .dz-details .dz-filename:not(:hover) span {border: 1px solid transparent;}.frm_dropzone .dz-preview .dz-details .dz-filename span,.frm_dropzone .dz-preview .dz-details .dz-size span {background-color: rgba(255, 255, 255, 0.4);padding: 0 0.4em;border-radius: 3px;}.frm_dropzone .dz-preview .dz-details .dz-filename a{cursor:pointer;}.frm_dropzone .dz-preview:hover .dz-image img {-webkit-transform: scale(1.05, 1.05);-moz-transform: scale(1.05, 1.05);-ms-transform: scale(1.05, 1.05);-o-transform: scale(1.05, 1.05);transform: scale(1.05, 1.05);-webkit-filter: blur(8px);filter: blur(8px);}.frm_dropzone .dz-preview .dz-image {border-radius: 20px;overflow: hidden;width: 120px;height: 120px;position: relative;display: block;z-index: 10;}.frm_dropzone .dz-preview .dz-image img {display: block;margin:0 auto;}.frm_dropzone .dz-preview.dz-success .dz-success-mark {-webkit-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);-moz-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);-ms-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);-o-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);}.frm_dropzone .dz-preview.dz-error .dz-error-mark {opacity: 1;-webkit-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);-moz-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);-ms-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);-o-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);}.frm_dropzone .dz-preview .dz-success-mark, .frm_dropzone .dz-preview .dz-error-mark {pointer-events: none;opacity: 0;z-index: 500;position: absolute;display: block;top: 50%;left: 50%;margin-left: -27px;margin-top: -27px;}.frm_dropzone .dz-preview .dz-success-mark svg, .frm_dropzone .dz-preview .dz-error-mark svg {display: block;width: 54px;height: 54px;}.frm_dropzone .dz-preview.dz-processing .dz-progress {opacity: 1;-webkit-transition: all 0.2s linear;-moz-transition: all 0.2s linear;-ms-transition: all 0.2s linear;-o-transition: all 0.2s linear;transition: all 0.2s linear;}.frm_dropzone .dz-preview.dz-complete .dz-progress {opacity: 0;-webkit-transition: opacity 0.4s ease-in;-moz-transition: opacity 0.4s ease-in;-ms-transition: opacity 0.4s ease-in;-o-transition: opacity 0.4s ease-in;transition: opacity 0.4s ease-in;}.frm_dropzone .dz-preview:not(.dz-processing) .dz-progress {-webkit-animation: pulse 6s ease infinite;-moz-animation: pulse 6s ease infinite;-ms-animation: pulse 6s ease infinite;-o-animation: pulse 6s ease infinite;animation: pulse 6s ease infinite;}.frm_dropzone .dz-preview .dz-progress {opacity: 1;z-index: 1000;pointer-events: none;position: absolute;height: 16px;left: 50%;top: 50%;margin-top: -8px;width: 80px;margin-left: -40px;background: rgba(255, 255, 255, 0.9);-webkit-transform: scale(1);border-radius: 8px;overflow: hidden;}.frm_dropzone .dz-preview .dz-progress .dz-upload {background: #333;background: linear-gradient(to bottom, #666, #444);position: absolute;top: 0;left: 0;bottom: 0;width: 0;-webkit-transition: width 300ms ease-in-out;-moz-transition: width 300ms ease-in-out;-ms-transition: width 300ms ease-in-out;-o-transition: width 300ms ease-in-out;transition: width 300ms ease-in-out;}.frm_dropzone .dz-preview.dz-error .dz-error-message {display: block;}.frm_dropzone .dz-preview.dz-error:hover .dz-error-message {opacity: 1;pointer-events: auto;}.frm_dropzone .dz-preview .dz-error-message {pointer-events: none;z-index: 1000;position: absolute;display: block;display: none;opacity: 0;-webkit-transition: opacity 0.3s ease;-moz-transition: opacity 0.3s ease;-ms-transition: opacity 0.3s ease;-o-transition: opacity 0.3s ease;transition: opacity 0.3s ease;border-radius: 8px;font-size: 13px;top: 29px;left: -10px;width: 140px;background: #be2626;background: linear-gradient(to bottom, #be2626, #a92222);padding: 0.5em 1.2em;color: white;}.frm_dropzone .fallback input[type=file]{display:block;}.frm_compact_text{display:none;}.frm_compact .frm_dropzone.dz-clickable{min-height:60px;padding:5px;border:none;background-color:transparent;}.frm_compact .frm_dropzone.dz-clickable.frm_single_upload{max-width:100%;}.frm_compact .frm_compact_text{display:inline;}.frm_compact .frm_dropzone.dz-clickable.frm_single_upload .dz-message,.frm_compact .frm_dropzone.dz-clickable .dz-message{font-size:14px;border:1px solid #dfdfdf;background:#fff;display: inline-block;border-radius: 4px;padding: 6px 11px;box-sizing: border-box;box-shadow: 0 1px 1px #eeeeee;vertical-align: middle;}.frm_compact .frm_dropzone .frm_upload_icon:before{font-size:22px;padding-right:7px;vertical-align: middle;}.frm_compact .frm_dropzone .frm_upload_icon{display:inline;}.frm_compact .frm_dropzone .dz-preview{min-height:20px;max-width:175px;margin:5px;}.frm_compact .frm_dropzone .frm_upload_text,.frm_compact .frm_dropzone .frm_small_text,.frm_compact .frm_dropzone .dz-preview .dz-image,.frm_compact .frm_dropzone .dz-preview .dz-details .dz-size{display:none;}.frm_compact .frm_dropzone .dz-preview.dz-error .dz-error-message{top: -40px;padding: 4px;width: auto;text-align: center;}.frm_compact .frm_dropzone .dz-preview .dz-success-mark,.frm_compact .frm_dropzone .dz-preview .dz-error-mark{margin-left: -16px;margin-top: 0;top: 6px;}.frm_compact .frm_dropzone .dz-preview:hover .dz-error-mark{display:none;}.frm_compact .frm_dropzone .dz-preview .dz-success-mark svg,.frm_compact .frm_dropzone .dz-preview .dz-error-mark svg{height:35px;width:35px;}.frm_compact .frm_dropzone .dz-preview .dz-details{opacity:1;position:relative;padding:5px;}.frm_compact .frm_dropzone .dz-preview .dz-details .dz-filename {overflow: hidden;text-overflow: ellipsis;}.frm_compact .frm_dropzone .dz-preview .dz-details .dz-filename span{border:none;background:transparent;}@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-resolution: 144dpi){.with_frm_style .chosen-rtl .chosen-search input[type=\"text\"],.with_frm_style .chosen-container-single .chosen-single abbr,.with_frm_style .chosen-container-single .chosen-single div b,.with_frm_style .chosen-container-single .chosen-search input[type=\"text\"],.with_frm_style .chosen-container-multi .chosen-choices .search-choice .search-choice-close,.with_frm_style .chosen-container .chosen-results-scroll-down span,.with_frm_style .chosen-container .chosen-results-scroll-up span{background-image:url(\'//www.infinitymarketing.co.nz/wp-content/plugins/formidable/pro/images/chosen-sprite2x.png\') !important;background-size:52px 37px !important;background-repeat:no-repeat !important;}}@media only screen and (max-width: 900px) {.frm_form_field .frm_repeat_grid .frm_form_field.frm_sixth label.frm_primary_label,.frm_form_field .frm_repeat_grid .frm_form_field.frm_seventh label.frm_primary_label,.frm_form_field .frm_repeat_grid .frm_form_field.frm_eighth label.frm_primary_label{display: block !important;}.frm_form_field .frm_repeat_grid .frm_form_field.frm_repeat_buttons.frm_seventh label.frm_primary_label{display:none !important;}}@media only screen and (max-width: 600px) {.frm_form_field.frm_four_col .frm_radio,.frm_form_field.frm_four_col .frm_checkbox{width:48%;margin-right:4%;}.frm_form_field.frm_four_col .frm_radio:nth-child(2n+2),.frm_form_field.frm_four_col .frm_checkbox:nth-child(2n+2){margin-right:0;}.frm_form_field .frm_repeat_grid.frm_first_repeat .frm_form_field.frm_repeat_buttons:not(.frm_fourth):not(.frm_sixth):not(.frm_eighth) label.frm_primary_label{display:none !important;}.frm_form_field .frm_repeat_grid .frm_form_field.frm_fifth label.frm_primary_label{display:block !important;}.frm_form_field .frm_repeat_grid .frm_form_field.frm_repeat_buttons.frm_fifth label.frm_primary_label{display:none !important;}}@media only screen and (max-width: 500px) {.frm_form_field.frm_two_col .frm_radio,.frm_form_field.frm_two_col .frm_checkbox,.frm_form_field.frm_three_col .frm_radio,.frm_form_field.frm_three_col .frm_checkbox{width: auto;margin-right: 0;float: none;display:block;}.frm_form_field input[type=file] {max-width:220px;}.with_frm_style.frm_login_form.frm_inline_login p{clear:both;float:none;}.with_frm_style.frm_login_form.frm_inline_login form{position:static;}.with_frm_style.frm_login_form.frm_inline_login .login-remember{position:static;}.with_frm_style .frm-g-recaptcha > div > div,.with_frm_style .g-recaptcha > div > div{width:inherit !important;display:block;overflow:hidden;max-width:302px;border-right:1px solid #d3d3d3;border-radius:4px;box-shadow:2px 0px 4px -1px rgba(0,0,0,.08);-moz-box-shadow:2px 0px 4px -1px rgba(0,0,0,.08);}.with_frm_style .g-recaptcha iframe,.with_frm_style .frm-g-recaptcha iframe{width:100%;}}", "yes");
INSERT INTO `wp_options` VALUES("338", "wpseo_permalinks", "a:13:{s:15:\"cleanpermalinks\";b:0;s:24:\"cleanpermalink-extravars\";s:0:\"\";s:29:\"cleanpermalink-googlecampaign\";b:0;s:31:\"cleanpermalink-googlesitesearch\";b:0;s:15:\"cleanreplytocom\";b:0;s:10:\"cleanslugs\";b:1;s:14:\"hide-feedlinks\";b:0;s:12:\"hide-rsdlink\";b:0;s:14:\"hide-shortlink\";b:0;s:16:\"hide-wlwmanifest\";b:0;s:18:\"redirectattachment\";b:0;s:17:\"stripcategorybase\";b:0;s:13:\"trailingslash\";b:0;}", "yes");
INSERT INTO `wp_options` VALUES("339", "wpseo_titles", "a:108:{s:10:\"title_test\";i:0;s:17:\"forcerewritetitle\";b:0;s:23:\"content-analysis-active\";b:1;s:23:\"keyword-analysis-active\";b:1;s:9:\"separator\";s:7:\"sc-dash\";s:5:\"noodp\";b:0;s:15:\"usemetakeywords\";b:0;s:16:\"title-home-wpseo\";s:42:\"%%sitename%% %%page%% %%sep%% %%sitedesc%%\";s:18:\"title-author-wpseo\";s:41:\"%%name%%, Author at %%sitename%% %%page%%\";s:19:\"title-archive-wpseo\";s:38:\"%%date%% %%page%% %%sep%% %%sitename%%\";s:18:\"title-search-wpseo\";s:63:\"You searched for %%searchphrase%% %%page%% %%sep%% %%sitename%%\";s:15:\"title-404-wpseo\";s:35:\"Page not found %%sep%% %%sitename%%\";s:19:\"metadesc-home-wpseo\";s:0:\"\";s:21:\"metadesc-author-wpseo\";s:0:\"\";s:22:\"metadesc-archive-wpseo\";s:0:\"\";s:18:\"metakey-home-wpseo\";s:0:\"\";s:20:\"metakey-author-wpseo\";s:0:\"\";s:22:\"noindex-subpages-wpseo\";b:0;s:20:\"noindex-author-wpseo\";b:0;s:21:\"noindex-archive-wpseo\";b:1;s:14:\"disable-author\";b:1;s:12:\"disable-date\";b:0;s:19:\"disable-post_format\";b:0;s:10:\"title-post\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-post\";s:0:\"\";s:12:\"metakey-post\";s:0:\"\";s:12:\"noindex-post\";b:0;s:13:\"showdate-post\";b:0;s:16:\"hideeditbox-post\";b:0;s:10:\"title-page\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-page\";s:0:\"\";s:12:\"metakey-page\";s:0:\"\";s:12:\"noindex-page\";b:0;s:13:\"showdate-page\";b:0;s:16:\"hideeditbox-page\";b:0;s:16:\"title-attachment\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:19:\"metadesc-attachment\";s:0:\"\";s:18:\"metakey-attachment\";s:0:\"\";s:18:\"noindex-attachment\";b:0;s:19:\"showdate-attachment\";b:0;s:22:\"hideeditbox-attachment\";b:0;s:18:\"title-tax-category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-category\";s:0:\"\";s:20:\"metakey-tax-category\";s:0:\"\";s:24:\"hideeditbox-tax-category\";b:0;s:20:\"noindex-tax-category\";b:0;s:18:\"title-tax-post_tag\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-post_tag\";s:0:\"\";s:20:\"metakey-tax-post_tag\";s:0:\"\";s:24:\"hideeditbox-tax-post_tag\";b:0;s:20:\"noindex-tax-post_tag\";b:0;s:21:\"title-tax-post_format\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:24:\"metadesc-tax-post_format\";s:0:\"\";s:23:\"metakey-tax-post_format\";s:0:\"\";s:27:\"hideeditbox-tax-post_format\";b:0;s:23:\"noindex-tax-post_format\";b:1;s:13:\"title-project\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:16:\"metadesc-project\";s:0:\"\";s:15:\"metakey-project\";s:0:\"\";s:15:\"noindex-project\";b:0;s:16:\"showdate-project\";b:0;s:19:\"hideeditbox-project\";b:0;s:19:\"title-landingpage_f\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:22:\"metadesc-landingpage_f\";s:0:\"\";s:21:\"metakey-landingpage_f\";s:0:\"\";s:21:\"noindex-landingpage_f\";b:0;s:22:\"showdate-landingpage_f\";b:0;s:25:\"hideeditbox-landingpage_f\";b:0;s:23:\"title-ptarchive-project\";s:51:\"%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%\";s:26:\"metadesc-ptarchive-project\";s:0:\"\";s:25:\"metakey-ptarchive-project\";s:0:\"\";s:25:\"bctitle-ptarchive-project\";s:0:\"\";s:25:\"noindex-ptarchive-project\";b:0;s:29:\"title-ptarchive-landingpage_f\";s:51:\"%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%\";s:32:\"metadesc-ptarchive-landingpage_f\";s:0:\"\";s:31:\"metakey-ptarchive-landingpage_f\";s:0:\"\";s:31:\"bctitle-ptarchive-landingpage_f\";s:0:\"\";s:31:\"noindex-ptarchive-landingpage_f\";b:0;s:15:\"title-tax-scope\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:18:\"metadesc-tax-scope\";s:0:\"\";s:17:\"metakey-tax-scope\";s:0:\"\";s:21:\"hideeditbox-tax-scope\";b:0;s:17:\"noindex-tax-scope\";b:0;s:21:\"title-tax-layout_type\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:24:\"metadesc-tax-layout_type\";s:0:\"\";s:23:\"metakey-tax-layout_type\";s:0:\"\";s:27:\"hideeditbox-tax-layout_type\";b:0;s:23:\"noindex-tax-layout_type\";b:0;s:22:\"title-tax-module_width\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:25:\"metadesc-tax-module_width\";s:0:\"\";s:24:\"metakey-tax-module_width\";s:0:\"\";s:28:\"hideeditbox-tax-module_width\";b:0;s:24:\"noindex-tax-module_width\";b:0;s:25:\"title-tax-layout_category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:28:\"metadesc-tax-layout_category\";s:0:\"\";s:27:\"metakey-tax-layout_category\";s:0:\"\";s:31:\"hideeditbox-tax-layout_category\";b:0;s:27:\"noindex-tax-layout_category\";b:0;s:26:\"title-tax-project_category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:29:\"metadesc-tax-project_category\";s:0:\"\";s:28:\"metakey-tax-project_category\";s:0:\"\";s:32:\"hideeditbox-tax-project_category\";b:0;s:28:\"noindex-tax-project_category\";b:0;s:21:\"title-tax-project_tag\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:24:\"metadesc-tax-project_tag\";s:0:\"\";s:23:\"metakey-tax-project_tag\";s:0:\"\";s:27:\"hideeditbox-tax-project_tag\";b:0;s:23:\"noindex-tax-project_tag\";b:0;}", "yes");
INSERT INTO `wp_options` VALUES("310", "frm_db_version", "35", "yes");
INSERT INTO `wp_options` VALUES("311", "frm_options", "O:11:\"FrmSettings\":22:{s:11:\"option_name\";s:11:\"frm_options\";s:4:\"menu\";N;s:7:\"mu_menu\";N;s:15:\"preview_page_id\";N;s:8:\"use_html\";N;s:10:\"jquery_css\";N;s:12:\"accordion_js\";N;s:11:\"success_msg\";N;s:9:\"blank_msg\";N;s:10:\"unique_msg\";N;s:11:\"invalid_msg\";N;s:10:\"failed_msg\";N;s:12:\"submit_value\";N;s:9:\"login_msg\";N;s:16:\"admin_permission\";N;s:8:\"email_to\";N;s:10:\"load_style\";N;s:12:\"custom_style\";N;s:6:\"pubkey\";N;s:7:\"privkey\";N;s:7:\"re_lang\";N;s:6:\"re_msg\";N;}", "yes");
INSERT INTO `wp_options` VALUES("312", "_transient_frm_options", "O:11:\"FrmSettings\":22:{s:11:\"option_name\";s:11:\"frm_options\";s:4:\"menu\";N;s:7:\"mu_menu\";N;s:15:\"preview_page_id\";N;s:8:\"use_html\";N;s:10:\"jquery_css\";N;s:12:\"accordion_js\";N;s:11:\"success_msg\";N;s:9:\"blank_msg\";N;s:10:\"unique_msg\";N;s:11:\"invalid_msg\";N;s:10:\"failed_msg\";N;s:12:\"submit_value\";N;s:9:\"login_msg\";N;s:16:\"admin_permission\";N;s:8:\"email_to\";N;s:10:\"load_style\";N;s:12:\"custom_style\";N;s:6:\"pubkey\";N;s:7:\"privkey\";N;s:7:\"re_lang\";N;s:6:\"re_msg\";N;}", "yes");
INSERT INTO `wp_options` VALUES("314", "widget_frm_show_form", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("337", "wpseo", "a:21:{s:14:\"blocking_files\";a:0:{}s:15:\"ms_defaults_set\";b:0;s:7:\"version\";s:3:\"4.0\";s:12:\"company_logo\";s:0:\"\";s:12:\"company_name\";s:18:\"Infinity Marketing\";s:17:\"company_or_person\";s:7:\"company\";s:20:\"disableadvanced_meta\";b:1;s:19:\"onpage_indexability\";b:1;s:12:\"googleverify\";s:0:\"\";s:8:\"msverify\";s:0:\"\";s:11:\"person_name\";s:0:\"\";s:12:\"website_name\";s:0:\"\";s:22:\"alternate_website_name\";s:0:\"\";s:12:\"yandexverify\";s:0:\"\";s:9:\"site_type\";s:13:\"smallBusiness\";s:20:\"has_multiple_authors\";b:0;s:16:\"environment_type\";s:10:\"production\";s:20:\"enable_setting_pages\";b:1;s:21:\"enable_admin_bar_menu\";b:1;s:22:\"show_onboarding_notice\";b:0;s:18:\"first_activated_on\";i:1475721121;}", "yes");
INSERT INTO `wp_options` VALUES("1072", "wpseo_sitemap_1_cache_validator", "2I2PW", "no");
INSERT INTO `wp_options` VALUES("1073", "wpseo_sitemap_frm_form_actions_cache_validator", "FcZ8", "no");
INSERT INTO `wp_options` VALUES("1064", "wpseo_sitemap_cache_validator_global", "Ko3L", "no");
INSERT INTO `wp_options` VALUES("340", "wpseo_social", "a:20:{s:9:\"fb_admins\";a:0:{}s:12:\"fbconnectkey\";s:32:\"ec25bfcde7f43b1b92b8ccc8cba49d74\";s:13:\"facebook_site\";s:49:\"https://www.facebook.com/infinitymarketing.co.nz/\";s:13:\"instagram_url\";s:46:\"https://www.instagram.com/infinitymarketingnz/\";s:12:\"linkedin_url\";s:0:\"\";s:11:\"myspace_url\";s:0:\"\";s:16:\"og_default_image\";s:0:\"\";s:18:\"og_frontpage_title\";s:0:\"\";s:17:\"og_frontpage_desc\";s:0:\"\";s:18:\"og_frontpage_image\";s:0:\"\";s:9:\"opengraph\";b:1;s:13:\"pinterest_url\";s:0:\"\";s:15:\"pinterestverify\";s:0:\"\";s:14:\"plus-publisher\";s:0:\"\";s:7:\"twitter\";b:1;s:12:\"twitter_site\";s:0:\"\";s:17:\"twitter_card_type\";s:7:\"summary\";s:11:\"youtube_url\";s:0:\"\";s:15:\"google_plus_url\";s:0:\"\";s:10:\"fbadminapp\";s:0:\"\";}", "yes");
INSERT INTO `wp_options` VALUES("341", "wpseo_rss", "a:2:{s:9:\"rssbefore\";s:0:\"\";s:8:\"rssafter\";s:53:\"The post %%POSTLINK%% appeared first on %%BLOGLINK%%.\";}", "yes");
INSERT INTO `wp_options` VALUES("342", "wpseo_internallinks", "a:17:{s:20:\"breadcrumbs-404crumb\";s:25:\"Error 404: Page not found\";s:23:\"breadcrumbs-blog-remove\";b:0;s:20:\"breadcrumbs-boldlast\";b:0;s:25:\"breadcrumbs-archiveprefix\";s:12:\"Archives for\";s:18:\"breadcrumbs-enable\";b:0;s:16:\"breadcrumbs-home\";s:4:\"Home\";s:18:\"breadcrumbs-prefix\";s:0:\"\";s:24:\"breadcrumbs-searchprefix\";s:16:\"You searched for\";s:15:\"breadcrumbs-sep\";s:7:\"&raquo;\";s:23:\"post_types-post-maintax\";i:0;s:26:\"post_types-project-maintax\";i:0;s:23:\"taxonomy-scope-ptparent\";i:0;s:29:\"taxonomy-layout_type-ptparent\";i:0;s:30:\"taxonomy-module_width-ptparent\";i:0;s:33:\"taxonomy-layout_category-ptparent\";i:0;s:34:\"taxonomy-project_category-ptparent\";i:0;s:29:\"taxonomy-project_tag-ptparent\";i:0;}", "yes");
INSERT INTO `wp_options` VALUES("343", "wpseo_xml", "a:23:{s:22:\"disable_author_sitemap\";b:1;s:22:\"disable_author_noposts\";b:1;s:16:\"enablexmlsitemap\";b:1;s:16:\"entries-per-page\";i:1000;s:14:\"excluded-posts\";s:0:\"\";s:38:\"user_role-administrator-not_in_sitemap\";b:0;s:31:\"user_role-editor-not_in_sitemap\";b:0;s:31:\"user_role-author-not_in_sitemap\";b:0;s:36:\"user_role-contributor-not_in_sitemap\";b:0;s:35:\"user_role-subscriber-not_in_sitemap\";b:0;s:30:\"post_types-post-not_in_sitemap\";b:0;s:30:\"post_types-page-not_in_sitemap\";b:0;s:36:\"post_types-attachment-not_in_sitemap\";b:1;s:33:\"post_types-project-not_in_sitemap\";b:0;s:34:\"taxonomies-category-not_in_sitemap\";b:0;s:34:\"taxonomies-post_tag-not_in_sitemap\";b:0;s:37:\"taxonomies-post_format-not_in_sitemap\";b:0;s:31:\"taxonomies-scope-not_in_sitemap\";b:0;s:37:\"taxonomies-layout_type-not_in_sitemap\";b:0;s:38:\"taxonomies-module_width-not_in_sitemap\";b:0;s:41:\"taxonomies-layout_category-not_in_sitemap\";b:0;s:42:\"taxonomies-project_category-not_in_sitemap\";b:0;s:37:\"taxonomies-project_tag-not_in_sitemap\";b:0;}", "yes");
INSERT INTO `wp_options` VALUES("362", "et_bloom_options", "a:4:{s:10:\"db_version\";s:3:\"1.0\";s:8:\"accounts\";a:1:{s:9:\"mailchimp\";a:1:{s:19:\"infinitymarketingnz\";a:3:{s:5:\"lists\";a:3:{s:10:\"4419f44e8e\";a:3:{s:4:\"name\";s:18:\"Infinity Marketing\";s:17:\"subscribers_count\";s:1:\"0\";s:11:\"growth_week\";s:1:\"0\";}s:10:\"fc2dc157d8\";a:3:{s:4:\"name\";s:20:\"Bride and Groom Show\";s:17:\"subscribers_count\";s:3:\"133\";s:11:\"growth_week\";s:1:\"0\";}s:10:\"6a14214dc5\";a:3:{s:4:\"name\";s:23:\"Wedevents Customer List\";s:17:\"subscribers_count\";s:2:\"27\";s:11:\"growth_week\";s:1:\"0\";}}s:7:\"api_key\";s:36:\"f3a50738d76b1ad725249daca8f297c6-us2\";s:13:\"is_authorized\";s:4:\"true\";}}}s:7:\"optin_1\";a:68:{s:10:\"optin_type\";s:6:\"inline\";s:12:\"optin_status\";s:6:\"active\";s:11:\"test_status\";s:0:\"\";s:8:\"child_of\";s:0:\"\";s:12:\"child_optins\";a:0:{}s:10:\"next_optin\";s:2:\"-1\";s:10:\"optin_name\";s:10:\"Main Optin\";s:14:\"email_provider\";s:9:\"mailchimp\";s:12:\"account_name\";s:19:\"infinitymarketingnz\";s:10:\"email_list\";s:10:\"4419f44e8e\";s:11:\"custom_html\";s:0:\"\";s:17:\"disable_dbl_optin\";s:1:\"1\";s:11:\"optin_title\";s:53:\"&lt;h2&gt;Get marketing tips to your inbox&lt;/h2&gt;\";s:13:\"optin_message\";s:0:\"\";s:17:\"image_orientation\";s:8:\"no_image\";s:24:\"image_orientation_widget\";s:5:\"above\";s:9:\"image_url\";a:2:{s:3:\"url\";s:87:\"http://www.infinitymarketing.co.nz/wp-content/plugins/bloom/images/premade-image-03.png\";s:2:\"id\";s:0:\"\";}s:15:\"image_animation\";s:7:\"slideup\";s:11:\"hide_mobile\";b:0;s:15:\"header_bg_color\";s:7:\"#ffffff\";s:11:\"header_font\";s:9:\"Open Sans\";s:9:\"body_font\";s:9:\"Open Sans\";s:17:\"header_text_color\";s:4:\"dark\";s:12:\"corner_style\";s:7:\"squared\";s:18:\"border_orientation\";s:9:\"no_border\";s:12:\"border_color\";s:7:\"#424242\";s:12:\"border_style\";s:5:\"solid\";s:16:\"form_orientation\";s:6:\"bottom\";s:12:\"display_name\";b:0;s:11:\"name_fields\";s:15:\"first_last_name\";s:9:\"name_text\";s:0:\"\";s:16:\"single_name_text\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:10:\"email_text\";s:0:\"\";s:11:\"button_text\";s:8:\"Sign up!\";s:17:\"field_orientation\";s:6:\"inline\";s:12:\"field_corner\";s:7:\"squared\";s:10:\"text_color\";s:4:\"dark\";s:13:\"form_bg_color\";s:7:\"#ededed\";s:17:\"form_button_color\";s:7:\"#0ec0de\";s:17:\"button_text_color\";s:5:\"light\";s:10:\"edge_style\";s:10:\"basic_edge\";s:11:\"footer_text\";s:0:\"\";s:15:\"success_message\";s:0:\"\";s:10:\"custom_css\";s:0:\"\";s:17:\"flyin_orientation\";s:5:\"right\";s:14:\"load_animation\";s:6:\"fadein\";s:12:\"trigger_auto\";s:1:\"1\";s:10:\"load_delay\";i:20;s:12:\"trigger_idle\";b:0;s:12:\"idle_timeout\";i:15;s:11:\"post_bottom\";s:1:\"1\";s:15:\"comment_trigger\";b:0;s:14:\"trigger_scroll\";b:0;s:10:\"scroll_pos\";i:50;s:16:\"purchase_trigger\";b:0;s:13:\"trigger_click\";b:0;s:22:\"trigger_click_selector\";s:0:\"\";s:7:\"session\";b:0;s:16:\"session_duration\";i:1;s:17:\"hide_mobile_optin\";b:0;s:10:\"display_on\";a:0:{}s:10:\"post_types\";a:1:{i:0;s:4:\"post\";}s:15:\"post_categories\";a:3:{i:0;s:1:\"1\";s:11:\"auto_select\";s:1:\"1\";s:16:\"previously_saved\";s:1:\"1\";}s:13:\"pages_include\";s:0:\"\";s:13:\"pages_exclude\";s:0:\"\";s:13:\"posts_exclude\";s:0:\"\";s:13:\"posts_include\";s:0:\"\";}s:7:\"optin_2\";a:68:{s:10:\"optin_type\";s:5:\"flyin\";s:12:\"optin_status\";s:6:\"active\";s:11:\"test_status\";s:0:\"\";s:8:\"child_of\";s:0:\"\";s:12:\"child_optins\";a:0:{}s:10:\"next_optin\";s:2:\"-1\";s:10:\"optin_name\";s:11:\"Flyin Optin\";s:14:\"email_provider\";s:9:\"mailchimp\";s:12:\"account_name\";s:19:\"infinitymarketingnz\";s:10:\"email_list\";s:10:\"4419f44e8e\";s:11:\"custom_html\";s:0:\"\";s:17:\"disable_dbl_optin\";s:1:\"1\";s:11:\"optin_title\";s:91:\"&lt;h2 style=&quot;text-align: center;&quot;&gt;Get marketing tips to your inbox&lt;/h2&gt;\";s:13:\"optin_message\";s:142:\"&lt;p style=&quot;text-align: center;&quot;&gt;Join our mailing list to receive the latest news and updates from Infinity Marketing.&lt;/p&gt;\";s:17:\"image_orientation\";s:5:\"above\";s:24:\"image_orientation_widget\";s:5:\"above\";s:9:\"image_url\";a:2:{s:3:\"url\";s:87:\"http://www.infinitymarketing.co.nz/wp-content/plugins/bloom/images/premade-image-03.png\";s:2:\"id\";s:0:\"\";}s:15:\"image_animation\";s:10:\"slideright\";s:11:\"hide_mobile\";b:0;s:15:\"header_bg_color\";s:7:\"#ffffff\";s:11:\"header_font\";s:9:\"Open Sans\";s:9:\"body_font\";s:9:\"Open Sans\";s:17:\"header_text_color\";s:4:\"dark\";s:12:\"corner_style\";s:7:\"squared\";s:18:\"border_orientation\";s:9:\"no_border\";s:12:\"border_color\";s:7:\"#424242\";s:12:\"border_style\";s:5:\"solid\";s:16:\"form_orientation\";s:6:\"bottom\";s:12:\"display_name\";b:0;s:11:\"name_fields\";s:15:\"first_last_name\";s:9:\"name_text\";s:0:\"\";s:16:\"single_name_text\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:10:\"email_text\";s:0:\"\";s:11:\"button_text\";s:11:\"SIGN ME UP!\";s:17:\"field_orientation\";s:6:\"inline\";s:12:\"field_corner\";s:7:\"rounded\";s:10:\"text_color\";s:4:\"dark\";s:13:\"form_bg_color\";s:7:\"#ededed\";s:17:\"form_button_color\";s:7:\"#0ec0de\";s:17:\"button_text_color\";s:5:\"light\";s:10:\"edge_style\";s:11:\"carrot_edge\";s:11:\"footer_text\";s:75:\"We respect your privacy and will never sell or distribute your information.\";s:15:\"success_message\";s:32:\"You have signed up successfully!\";s:10:\"custom_css\";s:0:\"\";s:17:\"flyin_orientation\";s:5:\"right\";s:14:\"load_animation\";s:10:\"slideright\";s:12:\"trigger_auto\";b:0;s:10:\"load_delay\";i:20;s:12:\"trigger_idle\";b:0;s:12:\"idle_timeout\";i:15;s:11:\"post_bottom\";s:1:\"1\";s:15:\"comment_trigger\";b:0;s:14:\"trigger_scroll\";s:1:\"1\";s:10:\"scroll_pos\";i:50;s:16:\"purchase_trigger\";b:0;s:13:\"trigger_click\";b:0;s:22:\"trigger_click_selector\";s:0:\"\";s:7:\"session\";s:1:\"1\";s:16:\"session_duration\";i:1;s:17:\"hide_mobile_optin\";b:0;s:10:\"display_on\";a:0:{}s:10:\"post_types\";a:1:{i:0;s:4:\"post\";}s:15:\"post_categories\";a:3:{i:0;s:1:\"1\";s:11:\"auto_select\";s:1:\"1\";s:16:\"previously_saved\";s:1:\"1\";}s:13:\"pages_include\";s:0:\"\";s:13:\"pages_exclude\";s:0:\"\";s:13:\"posts_exclude\";s:0:\"\";s:13:\"posts_include\";s:0:\"\";}}", "yes");
INSERT INTO `wp_options` VALUES("360", "widget_bloomwidget", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("369", "et_monarch_options", "a:172:{s:10:\"db_version\";s:3:\"1.2\";s:34:\"sharing_locations_manage_locations\";a:1:{i:0;s:6:\"inline\";}s:26:\"sharing_sidebar_icon_style\";s:4:\"flip\";s:26:\"sharing_sidebar_icon_shape\";s:9:\"rectangle\";s:35:\"sharing_sidebar_sidebar_orientation\";s:4:\"left\";s:25:\"sharing_sidebar_animation\";s:10:\"slideright\";s:22:\"sharing_sidebar_counts\";b:0;s:26:\"sharing_sidebar_counts_num\";i:0;s:21:\"sharing_sidebar_total\";b:0;s:27:\"sharing_sidebar_total_color\";s:4:\"dark\";s:27:\"sharing_sidebar_display_all\";b:0;s:23:\"sharing_sidebar_spacing\";b:0;s:22:\"sharing_sidebar_mobile\";b:0;s:29:\"sharing_sidebar_custom_colors\";b:0;s:24:\"sharing_sidebar_bg_color\";s:0:\"\";s:30:\"sharing_sidebar_bg_color_hover\";s:0:\"\";s:26:\"sharing_sidebar_icon_color\";s:0:\"\";s:32:\"sharing_sidebar_icon_color_hover\";s:0:\"\";s:26:\"sharing_sidebar_post_types\";a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}s:25:\"sharing_inline_icon_style\";s:5:\"slide\";s:25:\"sharing_inline_icon_shape\";s:7:\"rounded\";s:29:\"sharing_inline_icons_location\";s:5:\"above\";s:30:\"sharing_inline_icons_alignment\";s:4:\"left\";s:25:\"sharing_inline_col_number\";s:1:\"4\";s:21:\"sharing_inline_counts\";s:1:\"1\";s:25:\"sharing_inline_counts_num\";i:0;s:20:\"sharing_inline_total\";b:0;s:28:\"sharing_inline_network_names\";s:1:\"1\";s:26:\"sharing_inline_display_all\";b:0;s:26:\"sharing_inline_outer_color\";s:4:\"dark\";s:22:\"sharing_inline_spacing\";b:0;s:21:\"sharing_inline_mobile\";b:0;s:28:\"sharing_inline_custom_colors\";b:0;s:23:\"sharing_inline_bg_color\";s:0:\"\";s:29:\"sharing_inline_bg_color_hover\";s:0:\"\";s:25:\"sharing_inline_icon_color\";s:0:\"\";s:31:\"sharing_inline_icon_color_hover\";s:0:\"\";s:25:\"sharing_inline_post_types\";a:1:{i:0;s:4:\"post\";}s:24:\"sharing_popup_icon_style\";s:5:\"slide\";s:24:\"sharing_popup_icon_shape\";s:7:\"rounded\";s:24:\"sharing_popup_title_text\";s:10:\"Share This\";s:26:\"sharing_popup_message_text\";s:34:\"Share this post with your friends!\";s:29:\"sharing_popup_icons_alignment\";s:4:\"left\";s:24:\"sharing_popup_col_number\";s:1:\"3\";s:23:\"sharing_popup_animation\";s:6:\"fadein\";s:24:\"sharing_popup_auto_popup\";s:1:\"1\";s:25:\"sharing_popup_popup_delay\";i:20;s:26:\"sharing_popup_trigger_idle\";b:0;s:26:\"sharing_popup_idle_timeout\";i:15;s:28:\"sharing_popup_trigger_bottom\";b:0;s:29:\"sharing_popup_trigger_comment\";b:0;s:28:\"sharing_popup_scroll_trigger\";b:0;s:24:\"sharing_popup_scroll_pos\";i:50;s:30:\"sharing_popup_trigger_purchase\";b:0;s:21:\"sharing_popup_cookies\";b:0;s:29:\"sharing_popup_cookie_duration\";i:1;s:20:\"sharing_popup_counts\";s:1:\"1\";s:24:\"sharing_popup_counts_num\";i:0;s:19:\"sharing_popup_total\";b:0;s:27:\"sharing_popup_network_names\";s:1:\"1\";s:25:\"sharing_popup_display_all\";b:0;s:21:\"sharing_popup_spacing\";b:0;s:20:\"sharing_popup_mobile\";b:0;s:27:\"sharing_popup_custom_colors\";b:0;s:22:\"sharing_popup_bg_color\";s:0:\"\";s:28:\"sharing_popup_bg_color_hover\";s:0:\"\";s:24:\"sharing_popup_icon_color\";s:0:\"\";s:30:\"sharing_popup_icon_color_hover\";s:0:\"\";s:24:\"sharing_popup_post_types\";a:1:{i:0;s:4:\"post\";}s:24:\"sharing_flyin_icon_style\";s:5:\"slide\";s:24:\"sharing_flyin_icon_shape\";s:7:\"rounded\";s:24:\"sharing_flyin_title_text\";s:10:\"Share This\";s:26:\"sharing_flyin_message_text\";s:34:\"Share this post with your friends!\";s:28:\"sharing_flyin_icons_location\";s:12:\"bottom_right\";s:29:\"sharing_flyin_icons_alignment\";s:4:\"left\";s:24:\"sharing_flyin_col_number\";s:1:\"2\";s:23:\"sharing_flyin_animation\";s:7:\"slideup\";s:24:\"sharing_flyin_auto_popup\";b:0;s:25:\"sharing_flyin_popup_delay\";i:20;s:26:\"sharing_flyin_trigger_idle\";b:0;s:26:\"sharing_flyin_idle_timeout\";i:15;s:28:\"sharing_flyin_trigger_bottom\";s:1:\"1\";s:29:\"sharing_flyin_trigger_comment\";b:0;s:28:\"sharing_flyin_scroll_trigger\";b:0;s:24:\"sharing_flyin_scroll_pos\";i:50;s:30:\"sharing_flyin_trigger_purchase\";b:0;s:21:\"sharing_flyin_cookies\";b:0;s:29:\"sharing_flyin_cookie_duration\";i:1;s:20:\"sharing_flyin_counts\";b:0;s:24:\"sharing_flyin_counts_num\";i:0;s:19:\"sharing_flyin_total\";b:0;s:27:\"sharing_flyin_network_names\";s:1:\"1\";s:25:\"sharing_flyin_display_all\";b:0;s:21:\"sharing_flyin_spacing\";b:0;s:20:\"sharing_flyin_mobile\";b:0;s:27:\"sharing_flyin_custom_colors\";b:0;s:22:\"sharing_flyin_bg_color\";s:0:\"\";s:28:\"sharing_flyin_bg_color_hover\";s:0:\"\";s:24:\"sharing_flyin_icon_color\";s:0:\"\";s:30:\"sharing_flyin_icon_color_hover\";s:0:\"\";s:24:\"sharing_flyin_post_types\";a:1:{i:0;s:4:\"post\";}s:24:\"sharing_media_icon_style\";s:6:\"simple\";s:24:\"sharing_media_icon_shape\";s:7:\"rounded\";s:29:\"sharing_media_icons_alignment\";s:4:\"left\";s:24:\"sharing_media_col_number\";s:4:\"auto\";s:20:\"sharing_media_counts\";b:0;s:24:\"sharing_media_counts_num\";i:0;s:19:\"sharing_media_total\";b:0;s:27:\"sharing_media_network_names\";s:1:\"1\";s:25:\"sharing_media_display_all\";b:0;s:25:\"sharing_media_outer_color\";s:4:\"dark\";s:21:\"sharing_media_spacing\";b:0;s:20:\"sharing_media_mobile\";b:0;s:27:\"sharing_media_custom_colors\";b:0;s:22:\"sharing_media_bg_color\";s:0:\"\";s:28:\"sharing_media_bg_color_hover\";s:0:\"\";s:24:\"sharing_media_icon_color\";s:0:\"\";s:30:\"sharing_media_icon_color_hover\";s:0:\"\";s:24:\"sharing_media_post_types\";a:1:{i:0;s:4:\"post\";}s:26:\"follow_networks_new_window\";s:1:\"1\";s:23:\"follow_networks_use_api\";b:0;s:24:\"follow_networks_vimeo_id\";s:0:\"\";s:28:\"follow_networks_vimeo_secret\";s:0:\"\";s:28:\"follow_networks_instagram_id\";s:0:\"\";s:32:\"follow_networks_instagram_secret\";s:0:\"\";s:27:\"follow_networks_linkedin_id\";s:0:\"\";s:31:\"follow_networks_linkedin_secret\";s:0:\"\";s:31:\"follow_networks_twitter_api_key\";s:0:\"\";s:34:\"follow_networks_twitter_api_secret\";s:0:\"\";s:29:\"follow_networks_twitter_token\";s:0:\"\";s:36:\"follow_networks_twitter_token_secret\";s:0:\"\";s:31:\"follow_networks_youtube_api_key\";s:0:\"\";s:24:\"follow_widget_icon_style\";s:5:\"slide\";s:24:\"follow_widget_icon_shape\";s:7:\"rounded\";s:28:\"follow_widget_icons_location\";s:3:\"top\";s:24:\"follow_widget_col_number\";s:1:\"2\";s:20:\"follow_widget_counts\";s:1:\"1\";s:24:\"follow_widget_counts_num\";i:0;s:19:\"follow_widget_total\";s:1:\"1\";s:27:\"follow_widget_network_names\";s:1:\"1\";s:25:\"follow_widget_outer_color\";s:4:\"dark\";s:21:\"follow_widget_spacing\";b:0;s:20:\"follow_widget_mobile\";b:0;s:27:\"follow_widget_custom_colors\";b:0;s:22:\"follow_widget_bg_color\";s:0:\"\";s:28:\"follow_widget_bg_color_hover\";s:0:\"\";s:24:\"follow_widget_icon_color\";s:0:\"\";s:30:\"follow_widget_icon_color_hover\";s:0:\"\";s:27:\"follow_shortcode_icon_style\";s:5:\"slide\";s:27:\"follow_shortcode_icon_shape\";s:7:\"rounded\";s:31:\"follow_shortcode_icons_location\";s:3:\"top\";s:27:\"follow_shortcode_col_number\";s:4:\"auto\";s:23:\"follow_shortcode_counts\";s:1:\"1\";s:27:\"follow_shortcode_counts_num\";i:0;s:22:\"follow_shortcode_total\";s:1:\"1\";s:30:\"follow_shortcode_network_names\";s:1:\"1\";s:28:\"follow_shortcode_outer_color\";s:4:\"dark\";s:24:\"follow_shortcode_spacing\";b:0;s:23:\"follow_shortcode_mobile\";b:0;s:30:\"follow_shortcode_custom_colors\";b:0;s:25:\"follow_shortcode_bg_color\";s:0:\"\";s:31:\"follow_shortcode_bg_color_hover\";s:0:\"\";s:27:\"follow_shortcode_icon_color\";s:0:\"\";s:33:\"follow_shortcode_icon_color_hover\";s:0:\"\";s:24:\"general_main_update_freq\";i:3;s:27:\"general_main_reset_postdata\";b:0;s:24:\"general_main_facebook_id\";s:0:\"\";s:28:\"general_main_facebook_secret\";s:0:\"\";s:23:\"general_main_custom_css\";s:0:\"\";s:33:\"sharing_networks_networks_sorting\";a:3:{s:5:\"label\";a:5:{i:0;s:8:\"Facebook\";i:1;s:7:\"Twitter\";i:2;s:7:\"Google+\";i:3;s:9:\"Pinterest\";i:4;s:8:\"LinkedIn\";}s:5:\"class\";a:5:{i:0;s:8:\"facebook\";i:1;s:7:\"twitter\";i:2;s:10:\"googleplus\";i:3;s:9:\"pinterest\";i:4;s:8:\"linkedin\";}s:8:\"username\";a:1:{i:1;s:0:\"\";}}s:29:\"ignore_monarch_youtube_notice\";s:1:\"1\";s:24:\"ignore_monarch_fb_notice\";s:1:\"1\";}", "yes");
INSERT INTO `wp_options` VALUES("372", "widget_monarchwidget", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `wp_options` VALUES("7953", "_transient_frmpro_css", "/* WARNING: Any changes made to this file will be lost when your Formidable settings are updated */\n.frm_hidden,.with_frm_style .frm_button.frm_hidden{display:none;}.with_frm_style fieldset{min-width:0;}legend.frm_hidden{display:none !important;}.frm_transparent{color:transparent;}.input[type=file].frm_transparent:focus, .with_frm_style input[type=file]{background-color:transparent;border:none;outline:none;box-shadow:none;}.with_frm_style input[type=file]{display:initial;}.frm_preview_page:before{content:normal !important;}.frm_preview_page{padding:25px;}.with_frm_style .form-field.frm_col_field{clear:none;float:left;margin-right:20px;}.with_frm_style label.frm_primary_label{max-width:100%;}.with_frm_style .frm_top_container label.frm_primary_label,.with_frm_style .frm_hidden_container label.frm_primary_label,.with_frm_style .frm_pos_top{display:block;float:none;width:auto;}.with_frm_style .frm_inline_container label.frm_primary_label{margin-right:10px;}.with_frm_style .frm_right_container label.frm_primary_label,.with_frm_style .frm_pos_right{display:inline;float:right;margin-left:10px;}.with_frm_style .frm_none_container label.frm_primary_label,.with_frm_style .frm_pos_none,.frm_none_container label.frm_primary_label{display:none;}.with_frm_style .frm_section_heading.frm_hide_section{margin-top:0 !important;}.with_frm_style .frm_hidden_container label.frm_primary_label,.with_frm_style .frm_pos_hidden,.frm_hidden_container label.frm_primary_label{visibility:hidden;}.with_frm_style .frm_description{clear:both;}.with_frm_style .frm_scale{margin-right:10px;text-align:center;float:left;}.with_frm_style .frm_scale input{display:block;}.with_frm_style select[multiple=\"multiple\"]{height:auto;line-height:normal;}.with_frm_style select{white-space:nowrap;}.with_frm_style .frm_catlevel_2,.with_frm_style .frm_catlevel_3,.with_frm_style .frm_catlevel_4,.with_frm_style .frm_catlevel_5{margin-left:18px;}.with_frm_style .wp-editor-container{border:1px solid #e5e5e5;}.with_frm_style .quicktags-toolbar input{font-size:12px !important;}.with_frm_style .wp-editor-container textarea{border:none;}.with_frm_style .auto_width #loginform input,.with_frm_style .auto_width input,.with_frm_style input.auto_width,.with_frm_style select.auto_width,.with_frm_style textarea.auto_width{width:auto;}.with_frm_style .frm_repeat_buttons{white-space:nowrap;}.with_frm_style .frm_button{text-decoration:none;border:1px solid #eee;padding:5px;display:inline;}.with_frm_style .frm_submit{clear:both;}.frm_inline_form .frm_form_field.form-field{margin-right:2.5%;display:inline-block;}.frm_inline_form .frm_submit{display:inline-block;}.with_frm_style.frm_center_submit .frm_submit{text-align:center;}.with_frm_style.frm_center_submit .frm_submit input[type=submit],.with_frm_style.frm_center_submit .frm_submit input[type=button]{margin-bottom:8px !important;}.with_frm_style .frm_submit input[type=submit],.with_frm_style .frm_submit input[type=button]{-webkit-appearance: none;}.with_frm_style.frm_center_submit .frm_submit .frm_ajax_loading{display: block;margin: 0 auto;}.frm_forms.frm_style_formidable-style.with_frm_style{max-width:100%;direction:ltr;}.frm_style_formidable-style.with_frm_style,.frm_style_formidable-style.with_frm_style form,.frm_style_formidable-style.with_frm_style .frm-show-form div.frm_description p {text-align:left;}.frm_style_formidable-style.with_frm_style fieldset{border:0px solid #000000;margin:0;padding:0 0 15px 0;background-color:transparent;}.frm_style_formidable-style.with_frm_style legend + h3,.frm_style_formidable-style.with_frm_style h3.frm_form_title{font-size:20px;color:#444444;font-family:\"Lucida Grande\",\"Lucida Sans Unicode\",Tahoma,sans-serif;margin-top:10px;margin-bottom:10px;}.frm_style_formidable-style.with_frm_style .frm-show-form  .frm_section_heading h3{padding:15px 0 3px 0;margin:0;font-size:18px;font-weight:bold;color:#444444;border:none;border-top:2px solid #e8e8e8;background-color:transparent}.frm_style_formidable-style.with_frm_style h3 .frm_after_collapse{display:inline;}.frm_style_formidable-style.with_frm_style h3 .frm_before_collapse{display:none;}.menu-edit #post-body-content .frm_style_formidable-style.with_frm_style .frm_section_heading h3{margin:0;}.frm_style_formidable-style.with_frm_style .frm_section_heading{margin-top:15px;}.frm_style_formidable-style.with_frm_style  .frm-show-form .frm_section_heading .frm_section_spacing,.menu-edit #post-body-content .frm_style_formidable-style.with_frm_style  .frm-show-form .frm_section_heading .frm_section_spacing{margin-bottom:12px;}.frm_style_formidable-style.with_frm_style .frm_repeat_sec{margin-bottom:20px;margin-top:20px;}.frm_style_formidable-style.with_frm_style label.frm_primary_label,.frm_style_formidable-style.with_frm_style.frm_login_form label{font-family:\"Lucida Grande\",\"Lucida Sans Unicode\",Tahoma,sans-serif;font-size:14px;color:#444444;font-weight:bold;text-align:left;margin:0;padding:0 0 3px 0;width:auto;display:block;}.frm_style_formidable-style.with_frm_style .frm_form_field.frm_html_container{font-family:\"Lucida Grande\",\"Lucida Sans Unicode\",Tahoma,sans-serif;font-size:14px;color:#666666;}.frm_style_formidable-style.with_frm_style .frm_icon_font{color:#444444;}.frm_style_formidable-style.with_frm_style .frm_icon_font.frm_minus_icon:before{content:\"\\e600\";}.frm_style_formidable-style.with_frm_style .frm_icon_font.frm_plus_icon:before{content:\"\\e602\";}.frm_style_formidable-style.with_frm_style .frm_icon_font.frm_minus_icon:before,.frm_style_formidable-style.with_frm_style .frm_icon_font.frm_plus_icon:before{color:#444444;}.frm_style_formidable-style.with_frm_style .frm_trigger.active .frm_icon_font.frm_arrow_icon:before{content:\"\\e62d\";color:#444444;}.frm_style_formidable-style.with_frm_style .frm_trigger .frm_icon_font.frm_arrow_icon:before{content:\"\\e62a\";color:#444444;}.frm_style_formidable-style.with_frm_style .form-field{margin-bottom:20px;}.frm_style_formidable-style.with_frm_style .frm_grid,.frm_style_formidable-style.with_frm_style .frm_grid_first,.frm_style_formidable-style.with_frm_style .frm_grid_odd {margin-bottom:0;}.frm_style_formidable-style.with_frm_style .form-field.frm_section_heading{margin-bottom:0;}.frm_style_formidable-style.with_frm_style p.description,.frm_style_formidable-style.with_frm_style div.description,.frm_style_formidable-style.with_frm_style div.frm_description,.frm_style_formidable-style.with_frm_style .frm-show-form > div.frm_description,.frm_style_formidable-style.with_frm_style .frm_error{margin:0;padding:0;font-family:\"Lucida Grande\",\"Lucida Sans Unicode\",Tahoma,sans-serif;font-size:12px;color:#666666;font-weight:normal;text-align:left;font-style:normal;max-width:100%;}.frm_style_formidable-style.with_frm_style .frm-show-form div.frm_description p{font-size:14px;color:#666666;margin-top:10px;margin-bottom:25px;}.frm_style_formidable-style.with_frm_style .frm_left_container label.frm_primary_label{float:left;display:inline;width:150px;max-width:33%;margin-right:10px;}.frm_style_formidable-style.with_frm_style .frm_right_container label.frm_primary_label{display:inline;width:150px;max-width:33%;margin-left:10px;}.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_container input:not([type=radio]):not([type=checkbox]),.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_container:not(.frm_dynamic_select_container) select,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_container textarea,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_container .frm_opt_container,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_container .frm-g-recaptcha,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_container .g-recaptcha,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_container .chosen-container,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_container input:not([type=radio]):not([type=checkbox]),.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_container:not(.frm_dynamic_select_container) select,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_container textarea,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_container .frm_opt_container,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_container .g-recaptcha,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_container .frm-g-recaptcha,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_container .chosen-container{max-width:62%;}.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_container .frm_combo_inputs_container .frm_form_field input,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_container .frm_combo_inputs_container .frm_form_field select,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_container .frm_combo_inputs_container .frm_form_field input,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_container .frm_combo_inputs_container .frm_form_field select{max-width:100%;}.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_container .frm_opt_container,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_container .frm_opt_container,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_container .g-recaptcha,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_container .g-recaptcha,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_container .frm-g-recaptcha,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_container .frm-g-recaptcha{display:inline-block;}.frm_style_formidable-style.with_frm_style .frm_left_container > p.description::before,.frm_style_formidable-style.with_frm_style .frm_left_container > div.description::before,.frm_style_formidable-style.with_frm_style .frm_left_container > div.frm_description::before,.frm_style_formidable-style.with_frm_style .frm_left_container > .frm_error::before,.frm_style_formidable-style.with_frm_style .frm_right_container > p.description::after,.frm_style_formidable-style.with_frm_style .frm_right_container > div.description::after,.frm_style_formidable-style.with_frm_style .frm_right_container > div.frm_description::after,.frm_style_formidable-style.with_frm_style .frm_right_container > .frm_error::after{content:\'\';display:inline-block;width:150px;max-width:33%;margin-right:10px;}.frm_style_formidable-style.with_frm_style .frm_left_container.frm_inline label.frm_primary_label{max-width:90%;}.frm_style_formidable-style.with_frm_style .form-field.frm_col_field div.frm_description{width:100%;max-width:100%;}.frm_style_formidable-style.with_frm_style .frm_inline_container label.frm_primary_label,.frm_style_formidable-style.with_frm_style .frm_inline_container.frm_dynamic_select_container .frm_opt_container{display:inline;}.frm_style_formidable-style.with_frm_style .frm_inline_container label.frm_primary_label{margin-right:10px;}.frm_style_formidable-style.with_frm_style .frm_pos_right{display:inline;width:150px;}.frm_style_formidable-style.with_frm_style .frm_none_container label.frm_primary_label,.frm_style_formidable-style.with_frm_style .frm_pos_none{display:none;}.frm_style_formidable-style.with_frm_style .frm_scale label{font-weight:normal;font-family:\"Lucida Grande\",\"Lucida Sans Unicode\",Tahoma,sans-serif;font-size:13px;color:#444444;}.frm_style_formidable-style.with_frm_style .frm_required{color:#B94A48;font-weight:bold;}.frm_style_formidable-style.with_frm_style input[type=text],.frm_style_formidable-style.with_frm_style input[type=password],.frm_style_formidable-style.with_frm_style input[type=email],.frm_style_formidable-style.with_frm_style input[type=number],.frm_style_formidable-style.with_frm_style input[type=url],.frm_style_formidable-style.with_frm_style input[type=tel],.frm_style_formidable-style.with_frm_style input[type=search],.frm_style_formidable-style.with_frm_style select,.frm_style_formidable-style.with_frm_style textarea,.frm_style_formidable-style.with_frm_style .chosen-container{font-family:\"Lucida Grande\",\"Lucida Sans Unicode\",Tahoma,sans-serif;font-size:14px;margin-bottom:0;}.frm_style_formidable-style.with_frm_style input[type=text],.frm_style_formidable-style.with_frm_style input[type=password],.frm_style_formidable-style.with_frm_style input[type=email],.frm_style_formidable-style.with_frm_style input[type=number],.frm_style_formidable-style.with_frm_style input[type=url],.frm_style_formidable-style.with_frm_style input[type=tel],.frm_style_formidable-style.with_frm_style input[type=phone],.frm_style_formidable-style.with_frm_style input[type=search],.frm_style_formidable-style.with_frm_style select,.frm_style_formidable-style.with_frm_style textarea,.frm_form_fields_style,.frm_style_formidable-style.with_frm_style .frm_scroll_box .frm_opt_container,.frm_form_fields_active_style,.frm_form_fields_error_style,.frm_style_formidable-style.with_frm_style .chosen-container-multi .chosen-choices,.frm_style_formidable-style.with_frm_style .chosen-container-single .chosen-single{color:#555555;background-color:#ffffff;border-color:#cccccc;border-width:1px;border-style:solid;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;width:100%;max-width:100%;font-size:14px;padding:6px 10px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;outline:none;font-weight:normal;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset;}.frm_style_formidable-style.with_frm_style input[type=file]::-webkit-file-upload-button{color:#555555;background-color:#ffffff;padding:6px 10px;border-radius:4px;border-color:#cccccc;border-width:1px;border-style:solid;}.frm_style_formidable-style.with_frm_style input[type=text],.frm_style_formidable-style.with_frm_style input[type=password],.frm_style_formidable-style.with_frm_style input[type=email],.frm_style_formidable-style.with_frm_style input[type=number],.frm_style_formidable-style.with_frm_style input[type=url],.frm_style_formidable-style.with_frm_style input[type=tel],.frm_style_formidable-style.with_frm_style input[type=file],.frm_style_formidable-style.with_frm_style input[type=search],.frm_style_formidable-style.with_frm_style select{height:32px;line-height:1.3;}.frm_style_formidable-style.with_frm_style select[multiple=\"multiple\"]{height:auto ;}.frm_style_formidable-style.with_frm_style input[type=file]{color:#555555;padding:0px;font-family:\"Lucida Grande\",\"Lucida Sans Unicode\",Tahoma,sans-serif;font-size:14px;}.frm_style_formidable-style.with_frm_style input[type=file].frm_transparent{color:transparent;}.frm_style_formidable-style.with_frm_style .frm_default,.frm_style_formidable-style.with_frm_style .placeholder,.frm_style_formidable-style.with_frm_style .chosen-container-multi .chosen-choices li.search-field .default,.frm_style_formidable-style.with_frm_style .chosen-container-single .chosen-default{color:#555555;font-style:italic;}.frm_style_formidable-style.with_frm_style select{width:100%;max-width:100%;}.frm_style_formidable-style.with_frm_style input.frm_other_input:not(.frm_other_full){width:auto ;margin-left:5px ;}.frm_style_formidable-style.with_frm_style .frm_full input.frm_other_input:not(.frm_other_full){margin-left:0 ;margin-top:8px;}.frm_style_formidable-style.with_frm_style .frm_other_container select:not([multiple=\"multiple\"]){width:auto;}.frm_style_formidable-style.with_frm_style .wp-editor-wrap{width:100%;max-width:100%;}.frm_style_formidable-style.with_frm_style .wp-editor-container textarea{border:none;}.frm_style_formidable-style.with_frm_style .mceIframeContainer{background-color:#ffffff;}.frm_style_formidable-style.with_frm_style .auto_width input,.frm_style_formidable-style.with_frm_style input.auto_width,.frm_style_formidable-style.with_frm_style select.auto_width,.frm_style_formidable-style.with_frm_style textarea.auto_width{width:auto;}.frm_style_formidable-style.with_frm_style input[disabled],.frm_style_formidable-style.with_frm_style select[disabled],.frm_style_formidable-style.with_frm_style textarea[disabled],.frm_style_formidable-style.with_frm_style input[readonly],.frm_style_formidable-style.with_frm_style select[readonly],.frm_style_formidable-style.with_frm_style textarea[readonly]{background-color:#ffffff;color:#A1A1A1;border-color:#E5E5E5;}.frm_style_formidable-style.with_frm_style input::placeholder{color:#A1A1A1;}.frm_style_formidable-style.with_frm_style input::-webkit-input-placeholder{color:#A1A1A1;}.frm_style_formidable-style.with_frm_style input::-moz-placeholder{color:#A1A1A1;}.frm_style_formidable-style.with_frm_style input:-ms-input-placeholder{color:#A1A1A1;}.frm_style_formidable-style.with_frm_style input:-moz-placeholder{color:#A1A1A1;}.frm_style_formidable-style.with_frm_style .form-field input:not([type=file]):focus,.frm_style_formidable-style.with_frm_style select:focus,.frm_style_formidable-style.with_frm_style textarea:focus,.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=text],.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=password],.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=email],.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=number],.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=url],.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=tel],.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=search],.frm_form_fields_active_style,.frm_style_formidable-style.with_frm_style .chosen-container-active .chosen-choices{background-color:#ffffff;border-color:#66afe9;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(102,175,233, 0.6);}.frm_style_formidable-style.with_frm_style .frm_compact .frm_dropzone.dz-clickable .dz-message,.frm_style_formidable-style.with_frm_style input[type=submit],.frm_style_formidable-style.with_frm_style .frm_submit input[type=button],.frm_form_submit_style,.frm_style_formidable-style.with_frm_style.frm_login_form input[type=submit]{width:auto;font-family:\"Lucida Grande\",\"Lucida Sans Unicode\",Tahoma,sans-serif;font-size:14px;height:auto;line-height:normal;text-align:center;background:#ffffff;border-width:1px;border-color:#cccccc;border-style:solid;color:#444444;cursor:pointer;font-weight:normal;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;text-shadow:none;padding:6px 11px;-moz-box-sizing:border-box;box-sizing:border-box;-ms-box-sizing:border-box;-moz-box-shadow:0 1px 1px #eeeeee;-webkit-box-shadow:0px 1px 1px #eeeeee;box-shadow:0 1px 1px #eeeeee;-ms-filter:\"progid:DXImageTransform.Microsoft.Shadow(Strength=3, Direction=135, Color=\'#eeeeee\')\";filter:progid:DXImageTransform.Microsoft.Shadow(Strength=3, Direction=135, Color=\'#eeeeee\');margin:10px;margin-left:0;margin-right:0;vertical-align:middle;}.frm_style_formidable-style.with_frm_style input[type=submit]:hover,.frm_style_formidable-style.with_frm_style .frm_submit input[type=button]:hover,.frm_style_formidable-style.with_frm_style.frm_login_form input[type=submit]:hover{background:#efefef;border-color:#cccccc;color:#444444;}.frm_style_formidable-style.with_frm_style.frm_center_submit .frm_submit .frm_ajax_loading{margin-bottom:10px;}.frm_style_formidable-style.with_frm_style input[type=submit]:focus,.frm_style_formidable-style.with_frm_style .frm_submit input[type=button]:focus,.frm_style_formidable-style.with_frm_style.frm_login_form input[type=submit]:focus,.frm_style_formidable-style.with_frm_style input[type=submit]:active,.frm_style_formidable-style.with_frm_style .frm_submit input[type=button]:active,.frm_style_formidable-style.with_frm_style.frm_login_form input[type=submit]:active{background:#efefef;border-color:#cccccc;color:#444444;}.frm_style_formidable-style.with_frm_style a.frm_save_draft{font-family:\"Lucida Grande\",\"Lucida Sans Unicode\",Tahoma,sans-serif;font-size:14px;font-weight:normal;}.frm_style_formidable-style.with_frm_style #frm_field_cptch_number_container{font-family:\"Lucida Grande\",\"Lucida Sans Unicode\",Tahoma,sans-serif;font-size:14px;color:#444444;font-weight:bold;clear:both;}.frm_style_formidable-style.with_frm_style .frm_radio{display:block;}.frm_style_formidable-style.with_frm_style .horizontal_radio .frm_radio{margin:0 5px 0 0;}.frm_style_formidable-style.with_frm_style .frm_checkbox{display:block;}.frm_style_formidable-style.with_frm_style .vertical_radio .frm_checkbox,.frm_style_formidable-style.with_frm_style .vertical_radio .frm_radio,.vertical_radio .frm_catlevel_1{display:block;}.frm_style_formidable-style.with_frm_style .horizontal_radio .frm_checkbox,.frm_style_formidable-style.with_frm_style .horizontal_radio .frm_radio,.horizontal_radio .frm_catlevel_1{display:inline-block;}.frm_style_formidable-style.with_frm_style .frm_radio label,.frm_style_formidable-style.with_frm_style .frm_checkbox label{font-family:\"Lucida Grande\",\"Lucida Sans Unicode\",Tahoma,sans-serif;font-size:13px;color:#444444;font-weight:normal;display:inline;white-space:normal;}.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=text],.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=password],.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=url],.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=tel],.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=number],.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=email],.frm_style_formidable-style.with_frm_style .frm_blank_field textarea,.frm_style_formidable-style.with_frm_style .frm_blank_field .mce-edit-area iframe,.frm_style_formidable-style.with_frm_style .frm_blank_field select,.frm_form_fields_error_style,.frm_style_formidable-style.with_frm_style .frm_blank_field .frm-g-recaptcha iframe,.frm_style_formidable-style.with_frm_style .frm_blank_field .g-recaptcha iframe,.frm_style_formidable-style.with_frm_style .frm_blank_field .chosen-container-multi .chosen-choices,.frm_style_formidable-style.with_frm_style .frm_form_field :invalid{color:#444444;background-color:#ffffff;border-color:#B94A48;border-width:1px;border-style:solid;}.frm_style_formidable-style.with_frm_style .frm_error{font-weight:bold;}.frm_style_formidable-style.with_frm_style .frm_blank_field label,.frm_style_formidable-style.with_frm_style .frm_error{color:#B94A48;}.frm_style_formidable-style.with_frm_style .frm_error_style{background-color:#F2DEDE;border:1px solid #EBCCD1;border-radius:4px;color:#B94A48;font-size:14px;margin:0;margin-bottom:20px;}.frm_style_formidable-style.with_frm_style .frm_message,.frm_success_style{border:1px solid #D6E9C6;background-color:#DFF0D8;color:#468847;border-radius:4px;}.frm_style_formidable-style.with_frm_style .frm_message{margin:5px 0 15px;font-size:14px;}.frm_style_formidable-style.with_frm_style .frm-grid td,.frm-grid th{border-color:#cccccc;}.form_results.frm_style_formidable-style.with_frm_style{border:1px solid #cccccc;}.form_results.frm_style_formidable-style.with_frm_style tr td{color:#555555;border-top:1px solid #cccccc;}.form_results.frm_style_formidable-style.with_frm_style tr.frm_even,.frm-grid .frm_even{background-color:#ffffff;}.frm_style_formidable-style.with_frm_style #frm_loading .progress-striped .progress-bar{background-image:linear-gradient(45deg, #cccccc 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, #cccccc 50%, #cccccc 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0));}.frm_style_formidable-style.with_frm_style #frm_loading .progress-bar{background-color:#ffffff;}.frm_style_formidable-style.with_frm_style .frm_grid,.frm_style_formidable-style.with_frm_style .frm_grid_first,.frm_style_formidable-style.with_frm_style .frm_grid_odd{border-color:#cccccc;}.frm_style_formidable-style.with_frm_style .frm_grid.frm_blank_field,.frm_style_formidable-style.with_frm_style .frm_grid_first.frm_blank_field,.frm_style_formidable-style.with_frm_style .frm_grid_odd.frm_blank_field{background-color:#F2DEDE;border-color:#EBCCD1;}.frm_style_formidable-style.with_frm_style .frm_grid_first,.frm_style_formidable-style.with_frm_style .frm_grid_odd{background-color:#ffffff;}.frm_style_formidable-style.with_frm_style .frm_grid{background-color:#ffffff;}.frm_style_formidable-style.with_frm_style .frm_form_field.frm_html_scroll_box{background-color:#ffffff;border-color:#cccccc;border-width:1px;border-style:solid;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;width:100%;font-size:14px;padding:6px 10px;outline:none;}.frm_style_formidable-style.with_frm_style .frm_form_field.frm_total input,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_total textarea{color:#555555;background-color:transparent;border:none;display:inline;padding:0;}.frm_style_formidable-style.with_frm_style .frm_text_block input,.frm_style_formidable-style.with_frm_style .frm_text_block label.frm_primary_label{margin-left:-20px;}.frm_style_formidable-style.with_frm_style .frm_button{padding:6px 11px;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;font-size:14px;font-family:\"Lucida Grande\",\"Lucida Sans Unicode\",Tahoma,sans-serif;font-weight:normal;color:#444444;background:#ffffff;border-width:1px;border-color:#cccccc;height:auto;}.frm_style_formidable-style.with_frm_style .frm_button .frm_icon_font:before{font-size:14px;}.frm_style_formidable-style.with_frm_style .frm_dropzone{border-color:#cccccc;border-radius:4px;color:#555555;background-color:#ffffff;}.frm_style_formidable-style.with_frm_style .frm_dropzone .frm_upload_icon:before,.frm_style_formidable-style.with_frm_style .frm_dropzone .dz-remove{color:#555555;}.frm_style_formidable-style.with_frm_style .frm_blank_field .frm_dropzone{border-color:#B94A48;color:#444444;background-color:#ffffff;}.frm_style_formidable-style.with_frm_style .chosen-container{font-size:14px;}.frm_style_formidable-style.with_frm_style .chosen-container-single .chosen-single{height:32px;line-height:1.3;}.frm_style_formidable-style.with_frm_style .chosen-container-single .chosen-single div{top:3px;}.frm_style_formidable-style.with_frm_style .chosen-container-single .chosen-search input[type=\"text\"]{height:32px;}.frm_style_formidable-style.with_frm_style .chosen-container-multi .chosen-choices li.search-field input[type=\"text\"]{height:15px;}@media only screen and (max-width: 600px){.frm_style_formidable-style.with_frm_style .frm_form_field.frm_half.frm_left_container input:not([type=radio]):not([type=checkbox]),.frm_style_formidable-style.with_frm_style .frm_form_field.frm_half.frm_left_container select,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_half.frm_left_container textarea,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_half.frm_left_container .frm_opt_container,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_half.frm_left_container.frm-g-recaptcha,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_half.frm_left_container.g-recaptcha,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_half.frm_left_container .chosen-container,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_half.frm_right_container input:not([type=radio]):not([type=checkbox]),.frm_style_formidable-style.with_frm_style .frm_form_field.frm_half.frm_right_container select,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_half.frm_right_container textarea,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_half.frm_right_container .frm_opt_container,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_half.frm_right_container.frm-g-recaptcha,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_half.frm_right_container.g-recaptcha,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_half.frm_right_container .chosen-container{max-width:100%;}.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_half.frm_left_container .frm_primary_label,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_half.frm_left_container .frm_primary_label,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_first_half.frm_left_container .frm_primary_label,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_last_half.frm_left_container .frm_primary_label,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_half.frm_left_container .frm_primary_label,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_half.frm_right_container .frm_primary_label,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_half.frm_right_container .frm_primary_label,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_first_half.frm_right_container .frm_primary_label,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_last_half.frm_right_container .frm_primary_label,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_half.frm_right_container .frm_primary_label{max-width:100%;margin-right:0;margin-left:0;padding-right:0;padding-left:0;width:100%;}.frm_style_formidable-style.with_frm_style .frm_repeat_inline,.frm_style_formidable-style.with_frm_style .frm_repeat_grid{margin: 20px 0;}.frm_style_formidable-style.with_frm_style .frm_form_field.frm_first_half.frm_right_container div.frm_description,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_first_half.frm_right_container .frm_error,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_first_half .frm_right_container div.frm_description,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_first_half .frm_right_container .frm_error,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_last_half.frm_right_container div.frm_description,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_last_half.frm_right_container .frm_error,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_half.frm_right_container div.frm_description,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_half.frm_right_container .frm_error,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_first_half.frm_left_container div.frm_description,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_first_half.frm_left_container .frm_error,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_first_half .frm_left_container div.frm_description,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_first_half .frm_left_container .frm_error,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_last_half.frm_left_container div.frm_description,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_last_half.frm_left_container .frm_error,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_half.frm_left_container div.frm_description,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_half.frm_left_container .frm_error{margin-right:0;margin-left:0;padding-right:0;padding-left:0;}}@media only screen and (max-width: 500px) {.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_container input:not([type=radio]):not([type=checkbox]),.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_container:not(.frm_dynamic_select_container) select,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_container textarea,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_container .frm_opt_container,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_container .frm-g-recaptcha,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_container .g-recaptcha,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_container .chosen-container,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_container input:not([type=radio]):not([type=checkbox]),.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_container:not(.frm_dynamic_select_container) select,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_container textarea,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_container .frm_opt_container,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_container .frm-g-recaptcha,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_container .g-recaptcha,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_container .chosen-container{max-width:100%;}.frm_style_formidable-style.with_frm_style .frm_left_container > p.description::before,.frm_style_formidable-style.with_frm_style .frm_left_container > div.description::before,.frm_style_formidable-style.with_frm_style .frm_left_container > div.frm_description::before,.frm_style_formidable-style.with_frm_style .frm_left_container > .frm_error::before,.frm_style_formidable-style.with_frm_style .frm_right_container > p.description::after,.frm_style_formidable-style.with_frm_style .frm_right_container > div.description::after,.frm_style_formidable-style.with_frm_style .frm_right_container > div.frm_description::after,.frm_style_formidable-style.with_frm_style .frm_right_container > .frm_error::after{display:none;}.frm_style_formidable-style.with_frm_style .frm_left_container label.frm_primary_label,.frm_style_formidable-style.with_frm_style .frm_right_container label.frm_primary_label{width:100%;max-width:100%;margin-right:0;margin-left:0;padding-right:0;padding-left:0;}}.frm_ajax_loading{visibility:hidden;width:auto;}.frm_ajax_loading.frm_loading_now{visibility:visible !important;}.frm_form_submit_style{height:auto;}a.frm_save_draft{cursor:pointer;}.horizontal_radio .frm_radio{margin:0 5px 0 0;}.horizontal_radio .frm_checkbox{margin:0;margin-right:5px;}.vertical_radio .frm_checkbox,.vertical_radio .frm_radio,.vertical_radio .frm_catlevel_1{display:block;}.horizontal_radio .frm_checkbox,.horizontal_radio .frm_radio,.horizontal_radio .frm_catlevel_1{display:inline-block;}.frm_file_container .frm_file_link,.with_frm_style .frm_radio label .frm_file_container,.with_frm_style .frm_checkbox label .frm_file_container{display:inline-block;margin:5px;vertical-align:middle;}.with_frm_style .frm_radio input[type=radio]{border-radius:10px;-webkit-appearance:radio;}.with_frm_style .frm_checkbox input[type=checkbox]{border-radius:0;-webkit-appearance:checkbox;}.with_frm_style .frm_radio input[type=radio],.with_frm_style .frm_checkbox input[type=checkbox]{margin-right:5px;width:auto;border:none;vertical-align:baseline;}.with_frm_style :invalid,.with_frm_style :-moz-submit-invalid,.with_frm_style :-moz-ui-invalid{box-shadow:none;}.with_frm_style .frm_error_style img{padding-right:10px;vertical-align:middle;border:none;}.with_frm_style .frm_trigger{cursor:pointer;}.with_frm_style .frm_error_style,.with_frm_style .frm_message,.frm_success_style{-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;padding:15px;}.with_frm_style .frm_message p{margin-bottom:5px;}.frm_form_fields_style,.frm_form_fields_active_style,.frm_form_fields_error_style,.frm_form_submit_style{width:auto;}.with_frm_style .frm_trigger span{float:left;}.with_frm_style table.frm-grid,#content .with_frm_style table.frm-grid{border-collapse:collapse;border:none;}.frm-grid td,.frm-grid th{padding:5px;border-width:1px;border-style:solid;border-color:#cccccc;border-top:none;border-left:none;border-right:none;}table.form_results.with_frm_style{border:1px solid #ccc;}table.form_results.with_frm_style tr td{text-align:left;color:#555555;padding:7px 9px;border-top:1px solid #cccccc;}table.form_results.with_frm_style tr.frm_even,.frm-grid .frm_even{background-color:#fff;}table.form_results.with_frm_style tr.frm_odd,.frm-grid .frm_odd{background-color:#ffffff;}.frm_collapse .ui-icon{display:inline-block;}.frm_toggle_container{border:1px solid transparent;}.frm_toggle_container ul{margin:5px 0;padding-left:0;list-style-type:none;}.frm_toggle_container .frm_month_heading{text-indent:15px;}.frm_toggle_container .frm_month_listing{margin-left:40px;}#frm_loading{display:none;position:fixed;top:0;left:0;width:100%;height:100%;z-index:99999;}#frm_loading h3{font-weight:500;padding-bottom:15px;color:#fff;font-size:24px;}#frm_loading_content{position:fixed;top:20%;left:33%;width:33%;text-align:center;padding-top:30px;font-weight:bold;z-index:9999999;}#frm_loading img{max-width:100%;}#frm_loading .progress{border-radius:4px;box-shadow:0 1px 2px rgba(0, 0, 0, 0.1) inset;height:20px;margin-bottom:20px;overflow:hidden;}#frm_loading .progress.active .progress-bar{animation:2s linear 0s normal none infinite progress-bar-stripes;}#frm_loading .progress-striped .progress-bar{background-image:linear-gradient(45deg, #cccccc 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, #cccccc 50%, #cccccc 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0));background-size:40px 40px;}#frm_loading .progress-bar{background-color:#ffffff;box-shadow:0 -1px 0 rgba(0, 0, 0, 0.15) inset;float:left;height:100%;line-height:20px;text-align:center;transition:width 0.6s ease 0s;width:100%;}.frm_pagination_cont ul.frm_pagination{display:inline-block;list-style:none;margin-left:0 !important;}.frm_pagination_cont ul.frm_pagination > li{display:inline;list-style:none;margin:2px;background-image:none;}ul.frm_pagination > li.active a{text-decoration:none;}.frm_pagination_cont ul.frm_pagination > li:first-child{margin-left:0;}.archive-pagination.frm_pagination_cont ul.frm_pagination > li{margin:0;}.frmcal{padding-top:30px;}.frmcal-title{font-size:116%;}.frmcal table.frmcal-calendar{border-collapse:collapse;margin-top:20px;color:#555555;}.frmcal table.frmcal-calendar,.frmcal table.frmcal-calendar tbody tr td{border:1px solid #cccccc;}.frmcal table.frmcal-calendar,.frmcal,.frmcal-header{width:100%;}.frmcal-header{text-align:center;}.frmcal-prev{margin-right:10px;}.frmcal-prev,.frmcal-dropdown{float:left;}.frmcal-dropdown{margin-left:5px;}.frmcal-next{float:right;}.frmcal table.frmcal-calendar thead tr th{text-align:center;padding:2px 4px;}.frmcal table.frmcal-calendar tbody tr td{height:110px;width:14.28%;vertical-align:top;padding:0 !important;color:#555555;font-size:12px;}table.frmcal-calendar .frmcal_date{background-color:#ffffff;padding:0 5px;text-align:right;-moz-box-shadow:0 2px 5px #cccccc;-webkit-box-shadow:0 2px 5px #cccccc;box-shadow:0 2px 5px #cccccc;-ms-filter:\"progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=180, Color=\'#cccccc\')\";filter:progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=180, Color=\'#cccccc\');}table.frmcal-calendar .frmcal-today .frmcal_date{background-color:#ffffff;padding:0 5px;text-align:right;-moz-box-shadow:0 2px 5px #66afe9;-webkit-box-shadow:0 2px 5px #66afe9;box-shadow:0 2px 5px #66afe9;-ms-filter:\"progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=180, Color=\'#66afe9\')\";filter:progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=180, Color=\'#66afe9\');}.frmcal_num{display:inline;}.frmcal-content{padding:2px 4px;}.frm_image_from_url{height:50px;}.frm-loading-img{background:url(//www.infinitymarketing.co.nz/wp-content/plugins/formidable/images/ajax_loader.gif) no-repeat center center;padding:6px 12px;}#ui-datepicker-div{display:none;z-index:999999 !important;}.frm_form_fields div.rating-cancel{display:none !important;}.frm_form_fields div.rating-cancel,.frm_form_fields div.star-rating{float:left;width:17px;height:17px;font-size:16px;line-height:normal;cursor:pointer;display:block;background:transparent;overflow:hidden;clear:none;}.frm_form_fields div.rating-cancel a:before{font:16px/1 \'dashicons\';content:\'\\f460\';color:#CDCDCD;}.frm_form_fields div.star-rating:before,.frm_form_fields div.star-rating a:before{font:16px/1 \'dashicons\';content:\'\\f154\';color:#F0AD4E;}.frm_form_fields div.rating-cancel a,.frm_form_fields div.star-rating a{display:block;width:16px;height:100%;border:0;}.frm_form_fields div.star-rating-on:before,.frm_form_fields div.star-rating-on a:before{content:\'\\f155\';}.frm_form_fields div.star-rating-hover:before,.frm_form_fields div.star-rating-hover a:before{content:\'\\f155\';}.frm_form_fields div.frm_half_star:before,.frm_form_fields div.frm_half_star a:before{content:\'\\f459\';}.frm_form_fields div.rating-cancel.star-rating-hover a:before{color:#B63E3F;}.frm_form_fields div.star-rating-readonly,.frm_form_fields div.star-rating-readonly a{cursor:default !important;}.frm_form_fields div.star-rating{overflow:hidden!important;}.with_frm_style .frm_form_field{clear:both;}.frm_form_field.frm_right_half,.frm_form_field.frm_right_third,.frm_form_field.frm_right_two_thirds,.frm_form_field.frm_right_fourth,.frm_form_field.frm_right_fifth,.frm_form_field.frm_right_inline,.frm_form_field.frm_last_half,.frm_form_field.frm_last_third,.frm_form_field.frm_last_two_thirds,.frm_form_field.frm_last_fourth,.frm_form_field.frm_last_fifth,.frm_form_field.frm_last_sixth,.frm_form_field.frm_last_seventh,.frm_form_field.frm_last_eighth,.frm_form_field.frm_last_inline,.frm_form_field.frm_last,.frm_form_field.frm_half,.frm_submit.frm_half,.frm_form_field.frm_third,.frm_submit.frm_third,.frm_form_field.frm_two_thirds,.frm_form_field.frm_fourth,.frm_submit.frm_fourth,.frm_form_field.frm_three_fourths,.frm_form_field.frm_fifth,.frm_submit.frm_fifth,.frm_form_field.frm_two_fifths,.frm_form_field.frm_three_fifths,.frm_form_field.frm_four_fifths,.frm_form_field.frm_sixth,.frm_submit.frm_sixth,.frm_form_field.frm_seventh,.frm_submit.frm_seventh,.frm_form_field.frm_eighth,.frm_submit.frm_eighth,.frm_form_field.frm_inline,.frm_submit.frm_inline{clear:none;float:left;margin-left:2.5%;}.frm_form_field.frm_left_half,.frm_form_field.frm_left_third,.frm_form_field.frm_left_two_thirds,.frm_form_field.frm_left_fourth,.frm_form_field.frm_left_fifth,.frm_form_field.frm_left_inline,.frm_form_field.frm_first_half,.frm_form_field.frm_first_third,.frm_form_field.frm_first_two_thirds,.frm_form_field.frm_first_fourth,.frm_form_field.frm_first_fifth,.frm_form_field.frm_first_sixth,.frm_form_field.frm_first_seventh,.frm_form_field.frm_first_eighth,.frm_form_field.frm_first_inline,.frm_form_field.frm_first{clear:left;float:left;margin-left:0;}.frm_form_field.frm_alignright{float:right !important;}.frm_form_field.frm_left_half,.frm_form_field.frm_right_half,.frm_form_field.frm_first_half,.frm_form_field.frm_last_half,.frm_form_field.frm_half,.frm_submit.frm_half{width:48.75%;}.frm_form_field.frm_left_third,.frm_form_field.frm_third,.frm_submit.frm_third,.frm_form_field.frm_right_third,.frm_form_field.frm_first_third,.frm_form_field.frm_last_third{width:31.66%;}.frm_form_field.frm_left_two_thirds,.frm_form_field.frm_right_two_thirds,.frm_form_field.frm_first_two_thirds,.frm_form_field.frm_last_two_thirds,.frm_form_field.frm_two_thirds{width:65.82%;}.frm_form_field.frm_left_fourth,.frm_form_field.frm_fourth,.frm_submit.frm_fourth,.frm_form_field.frm_right_fourth,.frm_form_field.frm_first_fourth,.frm_form_field.frm_last_fourth{width:23.12%;}.frm_form_field.frm_three_fourths{width:74.36%;}.frm_form_field.frm_left_fifth,.frm_form_field.frm_fifth,.frm_submit.frm_fifth,.frm_form_field.frm_right_fifth,.frm_form_field.frm_first_fifth,.frm_form_field.frm_last_fifth{width:18%;}.frm_form_field.frm_two_fifths {width:38.5%;}.frm_form_field.frm_three_fifths {width:59%;}.frm_form_field.frm_four_fifths {width:79.5%;}.frm_form_field.frm_sixth,.frm_submit.frm_sixth,.frm_form_field.frm_first_sixth,.frm_form_field.frm_last_sixth{width:14.58%;}.frm_form_field.frm_seventh,.frm_submit.frm_seventh,.frm_form_field.frm_first_seventh,.frm_form_field.frm_last_seventh{width:12.14%;}.frm_form_field.frm_eighth,.frm_submit.frm_eighth,.frm_form_field.frm_first_eighth,.frm_form_field.frm_last_eighth{width:10.31%;}.frm_form_field.frm_left_inline,.frm_form_field.frm_first_inline,.frm_form_field.frm_inline,.frm_submit.frm_inline,.frm_form_field.frm_right_inline,.frm_form_field.frm_last_inline{width:auto;}.frm_full,.frm_full .wp-editor-wrap,.frm_full input:not([type=\'checkbox\']):not([type=\'radio\']):not([type=\'button\']),.frm_full select,.frm_full textarea{width:100% !important;}.frm_full .wp-editor-wrap input{width:auto !important;}@media only screen and (max-width: 600px) {.frm_form_field.frm_half,.frm_submit.frm_half,.frm_form_field.frm_left_half,.frm_form_field.frm_right_half,.frm_form_field.frm_first_half,.frm_form_field.frm_last_half,.frm_form_field.frm_first_third,.frm_form_field.frm_third,.frm_submit.frm_third,.frm_form_field.frm_last_third,.frm_form_field.frm_first_two_thirds,.frm_form_field.frm_last_two_thirds,.frm_form_field.frm_two_thirds,.frm_form_field.frm_left_fourth,.frm_form_field.frm_fourth,.frm_submit.frm_fourth,.frm_form_field.frm_right_fourth,.frm_form_field.frm_first_fourth,.frm_form_field.frm_last_fourth,.frm_form_field.frm_three_fourths,.frm_form_field.frm_fifth,.frm_submit.frm_fifth,.frm_form_field.frm_two_fifths,.frm_form_field.frm_three_fifths,.frm_form_field.frm_four_fifths,.frm_form_field.frm_sixth,.frm_submit.frm_sixth,.frm_form_field.frm_seventh,.frm_submit.frm_seventh,.frm_form_field.frm_eighth,.frm_submit.frm_eighth,.frm_form_field.frm_first_inline,.frm_form_field.frm_inline,.frm_submit.frm_inline,.frm_form_field.frm_last_inline{width:100%;margin-left:0;margin-right:0;clear:both;float:none;}}.frm_form_field.frm_left_container label.frm_primary_label{float:left;display:inline;max-width:33%;margin-right:10px;}.frm_form_field.frm_left_container input:not([type=radio]):not([type=checkbox]),.frm_form_field.frm_left_container:not(.frm_dynamic_select_container) select,.frm_form_field.frm_left_container textarea,.frm_form_field.frm_left_container .wp-editor-wrap,.frm_form_field.frm_left_container .frm_opt_container,.frm_form_field.frm_left_container .frm_dropzone,.frm_form_field.frm_left_container .frm-g-recaptcha,.frm_form_field.frm_left_container .g-recaptcha,.frm_form_field.frm_left_container .chosen-container,.frm_form_field.frm_left_container .frm_combo_inputs_container,.frm_form_field.frm_right_container input:not([type=radio]):not([type=checkbox]),.frm_form_field.frm_right_container:not(.frm_dynamic_select_container) select,.frm_form_field.frm_right_container textarea,.frm_form_field.frm_right_container .wp-editor-wrap,.frm_form_field.frm_right_container .frm_opt_container,.frm_form_field.frm_right_container .frm_dropzone,.frm_form_field.frm_right_container .frm-g-recaptcha,.frm_form_field.frm_right_container .g-recaptcha,.frm_form_field.frm_right_container .chosen-container,.frm_form_field.frm_right_container .frm_combo_inputs_container{max-width:62%;}.frm_form_field.frm_left_container .frm_combo_inputs_container input,.frm_form_field.frm_left_container .frm_combo_inputs_container select,.frm_form_field.frm_right_container .frm_combo_inputs_container input,.frm_form_field.frm_right_container .frm_combo_inputs_container select{max-width:100%;}.frm_form_field.frm_left_container .frm_opt_container,.frm_form_field.frm_right_container .frm_opt_container,.frm_form_field.frm_inline_container .frm_opt_container,.frm_form_field.frm_left_container .frm_combo_inputs_container,.frm_form_field.frm_right_container .frm_combo_inputs_container,.frm_form_field.frm_inline_container .frm_combo_inputs_container,.frm_form_field.frm_left_container .wp-editor-wrap,.frm_form_field.frm_right_container .wp-editor-wrap,.frm_form_field.frm_inline_container .wp-editor-wrap,.frm_form_field.frm_left_container .frm_dropzone,.frm_form_field.frm_right_container .frm_dropzone,.frm_form_field.frm_inline_container .frm_dropzone,.frm_form_field.frm_left_container .frm-g-recaptcha,.frm_form_field.frm_right_container .frm-g-recaptcha,.frm_form_field.frm_inline_container .frm-g-recaptcha,.frm_form_field.frm_left_container .g-recaptcha,.frm_form_field.frm_right_container .g-recaptcha,.frm_form_field.frm_inline_container .g-recaptcha{display:inline-block;}.frm_form_field.frm_left_half.frm_left_container .frm_primary_label,.frm_form_field.frm_right_half.frm_left_container .frm_primary_label,.frm_form_field.frm_left_half.frm_right_container .frm_primary_label,.frm_form_field.frm_right_half.frm_right_container .frm_primary_label,.frm_form_field.frm_first_half.frm_left_container .frm_primary_label,.frm_form_field.frm_last_half.frm_left_container .frm_primary_label,.frm_form_field.frm_first_half.frm_right_container .frm_primary_label,.frm_form_field.frm_last_half.frm_right_container .frm_primary_label,.frm_form_field.frm_half.frm_right_container .frm_primary_label,.frm_form_field.frm_half.frm_left_container .frm_primary_label{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;max-width:33%;}.wp-editor-wrap *,.wp-editor-wrap *:after,.wp-editor-wrap *:before{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;}.with_frm_style .frm_grid,.with_frm_style .frm_grid_first,.with_frm_style .frm_grid_odd{clear:both;margin-bottom:0 !important;padding:5px;border-width:1px;border-style:solid;border-color:#cccccc;border-left:none;border-right:none;}.with_frm_style .frm_grid,.with_frm_style .frm_grid_odd{border-top:none;}.frm_grid .frm_error,.frm_grid_first .frm_error,.frm_grid_odd .frm_error{display:none;}.frm_grid:after,.frm_grid_first:after,.frm_grid_odd:after{visibility:hidden;display:block;font-size:0;content:\" \";clear:both;height:0;}.frm_grid_first{margin-top:20px;}.frm_grid_first,.frm_grid_odd{background-color:#ffffff;}.frm_grid{background-color:#ffffff;}.frm_grid .frm_primary_label,.frm_grid_first .frm_primary_label,.frm_grid_odd .frm_primary_label,.frm_grid .frm_radio,.frm_grid_first .frm_radio,.frm_grid_odd .frm_radio,.frm_grid .frm_checkbox,.frm_grid_first .frm_checkbox,.frm_grid_odd .frm_checkbox{float:left !important;display:block;margin-top:0;margin-left:0 !important;}.frm_grid_first .frm_radio label,.frm_grid .frm_radio label,.frm_grid_odd .frm_radio label,.frm_grid_first .frm_checkbox label,.frm_grid .frm_checkbox label,.frm_grid_odd .frm_checkbox label{visibility:hidden;white-space:nowrap;text-align:left;}.frm_grid_first .frm_radio label input,.frm_grid .frm_radio label input,.frm_grid_odd .frm_radio label input,.frm_grid_first .frm_checkbox label input,.frm_grid .frm_checkbox label input,.frm_grid_odd .frm_checkbox label input{visibility:visible;margin:2px 0 0;float:right;}.frm_grid .frm_radio,.frm_grid_first .frm_radio,.frm_grid_odd .frm_radio,.frm_grid .frm_checkbox,.frm_grid_first .frm_checkbox,.frm_grid_odd .frm_checkbox{display:inline;}.frm_grid_2 .frm_radio,.frm_grid_2 .frm_checkbox,.frm_grid_2 label.frm_primary_label{width:48% !important;}.frm_grid_2 .frm_radio,.frm_grid_2 .frm_checkbox{margin-right:4%;}.frm_grid_3 .frm_radio,.frm_grid_3 .frm_checkbox,.frm_grid_3 label.frm_primary_label{width:30% !important;}.frm_grid_3 .frm_radio,.frm_grid_3 .frm_checkbox{margin-right:3%;}.frm_grid_4 .frm_radio,.frm_grid_4 .frm_checkbox{width:20% !important;}.frm_grid_4 label.frm_primary_label{width:28% !important;}.frm_grid_4 .frm_radio,.frm_grid_4 .frm_checkbox{margin-right:4%;}.frm_grid_5 label.frm_primary_label,.frm_grid_7 label.frm_primary_label{width:24% !important;}.frm_grid_5 .frm_radio,.frm_grid_5 .frm_checkbox{width:17% !important;margin-right:2%;}.frm_grid_6 label.frm_primary_label{width:25% !important;}.frm_grid_6 .frm_radio,.frm_grid_6 .frm_checkbox{width:14% !important;margin-right:1%;}.frm_grid_7 label.frm_primary_label{width:22% !important;}.frm_grid_7 .frm_radio,.frm_grid_7 .frm_checkbox{width:12% !important;margin-right:1%;}.frm_grid_8 label.frm_primary_label{width:23% !important;}.frm_grid_8 .frm_radio,.frm_grid_8 .frm_checkbox{width:10% !important;margin-right:1%;}.frm_grid_9 label.frm_primary_label{width:20% !important;}.frm_grid_9 .frm_radio,.frm_grid_9 .frm_checkbox{width:9% !important;margin-right:1%;}.frm_grid_10 label.frm_primary_label{width:19% !important;}.frm_grid_10 .frm_radio,.frm_grid_10 .frm_checkbox{width:8% !important;margin-right:1%;}.with_frm_style .frm_inline_container.frm_grid_first label.frm_primary_label,.with_frm_style .frm_inline_container.frm_grid label.frm_primary_label,.with_frm_style .frm_inline_container.frm_grid_odd label.frm_primary_label,.with_frm_style .frm_inline_container.frm_grid_first .frm_opt_container,.with_frm_style .frm_inline_container.frm_grid .frm_opt_container,.with_frm_style .frm_inline_container.frm_grid_odd .frm_opt_container{margin-right:0;}.with_frm_style .frm_inline_container.frm_scale_container label.frm_primary_label{float:left;}.with_frm_style .frm_other_input.frm_other_full{margin-top:10px;}.with_frm_style .frm_repeat_sec{margin-bottom:20px;margin-top:20px;}.with_frm_style .frm_repeat_inline{clear:both;}.frm_form_field .frm_repeat_sec .frm_add_form_row{opacity:0;display:none;*display:inline;display:inline\\0/; -moz-transition: opacity .15s ease-in-out;-webkit-transition: opacity .15s ease-in-out;transition: opacity .15s ease-in-out;pointer-events:none;}.frm_section_heading div.frm_repeat_sec:last-child .frm_add_form_row{opacity:100;display:inline;pointer-events:auto;}.frm_form_field .frm_repeat_grid .frm_form_field label.frm_primary_label{display:none !important;}.frm_form_field .frm_repeat_grid.frm_first_repeat .frm_form_field label.frm_primary_label{display:inherit !important;}.frm_form_field.frm_two_col .frm_radio,.frm_form_field.frm_three_col .frm_radio,.frm_form_field.frm_four_col .frm_radio,.frm_form_field.frm_two_col .frm_checkbox,.frm_form_field.frm_three_col .frm_checkbox,.frm_form_field.frm_four_col .frm_checkbox{float:left;}.frm_form_field.frm_two_col .frm_radio,.frm_form_field.frm_two_col .frm_checkbox{width:48%;margin-right:4%;}.frm_form_field.frm_three_col .frm_radio,.frm_form_field.frm_three_col .frm_checkbox{width:30%;margin-right:5%;}.frm_form_field.frm_four_col .frm_radio,.frm_form_field.frm_four_col .frm_checkbox{width:22%;margin-right:4%;}.frm_form_field.frm_two_col .frm_radio:nth-child(2n+2),.frm_form_field.frm_two_col .frm_checkbox:nth-child(2n+2),.frm_form_field.frm_three_col .frm_radio:nth-child(3n+3),.frm_form_field.frm_three_col .frm_checkbox:nth-child(3n+3),.frm_form_field.frm_four_col .frm_radio:nth-child(4n+4),.frm_form_field.frm_four_col .frm_checkbox:nth-child(4n+4){margin-right:0;}.frm_form_field.frm_scroll_box .frm_opt_container{height:100px;overflow:auto;}.frm_form_field.frm_html_scroll_box{height:100px;overflow:auto;background-color:#ffffff;border-color:#cccccc;border-width:1px;border-style:solid;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;width:100%;max-width:100%;font-size:14px;padding:6px 10px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;outline:none;font-weight:normal;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset;}.frm_form_field.frm_two_col .frm_opt_container:after,.frm_form_field.frm_three_col .frm_opt_container:after,.frm_form_field.frm_four_col .frm_opt_container:after{content:\".\";display:block;clear:both;visibility:hidden;line-height:0;height:0;}.frm_form_field.frm_total input,.frm_form_field.frm_total textarea{opacity:1;background-color:transparent !important;border:none !important;font-weight:bold;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none !important;display:inline;-moz-appearance:textfield;padding:0;}.frm_form_field.frm_total input::-webkit-outer-spin-button,.frm_form_field.frm_total input::-webkit-inner-spin-button {-webkit-appearance: none;}.frm_form_field.frm_total input:focus,.frm_form_field.frm_total textarea:focus{background-color:transparent;border:none;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none;}.frm_text_block{margin-left:20px;}.frm_text_block input,.frm_text_block label.frm_primary_label{margin-left:-20px;}.frm_text_block .frm_checkbox input[type=checkbox],.frm_text_block .frm_radio input[type=radio]{margin-right:4px;}.frm_form_field.frm_capitalize input,.frm_form_field.frm_capitalize select,.frm_form_field.frm_capitalize .frm_opt_container label{text-transform:capitalize;}.frm_clearfix:after{content:\".\";display:block;clear:both;visibility:hidden;line-height:0;height:0;}.frm_clearfix{display:inline-block;}html[xmlns] .frm_clearfix{display:block;}* html .frm_clearfix{height:1%;}.with_frm_style.frm_login_form,.with_frm_style.frm_login_form form{clear:both;}.with_frm_style.frm_login_form.frm_inline_login .login-remember input{vertical-align:baseline;}.with_frm_style.frm_login_form.frm_inline_login .login-submit{float:left;}.with_frm_style.frm_login_form.frm_inline_login label{display:inline;}.with_frm_style.frm_login_form.frm_inline_login .login-username,.with_frm_style.frm_login_form.frm_inline_login .login-password,.with_frm_style.frm_login_form.frm_inline_login .login-remember{float:left;margin-right:5px;}.with_frm_style.frm_login_form.frm_inline_login form{position:relative;clear:none;}.with_frm_style.frm_login_form.frm_inline_login .login-remember{position:absolute;top:35px;}.with_frm_style.frm_login_form.frm_inline_login input[type=submit]{margin:0 !important;}.with_frm_style.frm_login_form.frm_no_labels .login-username label,.with_frm_style.frm_login_form.frm_no_labels .login-password label{display:none;}.with_frm_style .frm-open-login{float:left;margin-right:15px;}.with_frm_style .frm-open-login a{text-decoration:none;border:none;outline:none;}.with_frm_style.frm_slide.frm_login_form form{display:none;}.with_frm_style .chosen-container{font-size:14px;position:relative;display:inline-block;zoom:1;vertical-align:middle;width:100% !important;-webkit-user-select:none;-moz-user-select:none;user-select:none;*display:inline;}.with_frm_style .chosen-container .chosen-drop{background:#fff;border:1px solid #aaa;border-top:0;position:absolute;top:100%;left:-9999px;box-shadow:0 4px 5px rgba(0,0,0,.15);z-index:1010;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;width:100%;}.with_frm_style .chosen-container.chosen-with-drop .chosen-drop{left:0;}.with_frm_style .chosen-container a{cursor:pointer;}.with_frm_style .chosen-container-single .chosen-single{position:relative;display:block;overflow:hidden;padding:0 0 0 8px;height:25px;background:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #ffffff), color-stop(50%, #f6f6f6), color-stop(52%, #eeeeee), color-stop(100%, #f4f4f4));background:-webkit-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);background:-moz-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);background:-o-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);background:linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);background-clip:padding-box;box-shadow:0 0 3px white inset, 0 1px 1px rgba(0, 0, 0, 0.1);text-decoration:none;white-space:nowrap;line-height:24px;}.with_frm_style .chosen-container-single .chosen-single span{margin-right:26px;display:block;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;}.with_frm_style .chosen-container-single .chosen-single-with-deselect span{margin-right:38px;}.with_frm_style .chosen-container-single .chosen-single abbr{display:block;position:absolute;right:26px;top:6px;width:12px;height:12px;font-size:1px;background:url(\'//www.infinitymarketing.co.nz/wp-content/plugins/formidable/pro/images/chosen-sprite.png\') -42px 1px no-repeat;}.with_frm_style .chosen-container-single .chosen-single abbr:hover{background-position:-42px -10px;}.with_frm_style .chosen-container-single.chosen-disabled .chosen-single abbr:hover{background-position:-42px -10px;}.with_frm_style .chosen-container-single .chosen-single div{position:absolute;right:0;top:0;display:block;height:100%;width:18px;}.with_frm_style .chosen-container-single .chosen-single div b{background:url(\'//www.infinitymarketing.co.nz/wp-content/plugins/formidable/pro/images/chosen-sprite.png\') no-repeat 0 2px;display:block;width:100%;height:100%;}.with_frm_style .chosen-container-single .chosen-search{padding:3px 4px;position:relative;margin:0;white-space:nowrap;z-index:1010;}.with_frm_style .chosen-container-single .chosen-search input[type=\"text\"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;width:100% !important;max-width:100% !important;height:auto;background:white url(\'//www.infinitymarketing.co.nz/wp-content/plugins/formidable/pro/images/chosen-sprite.png\') no-repeat 100% -20px;background:url(\'//www.infinitymarketing.co.nz/wp-content/plugins/formidable/pro/images/chosen-sprite.png\') no-repeat 100% -20px;font-size:1em;font-family:sans-serif;line-height:normal;border-radius:0;}.with_frm_style .chosen-container-single .chosen-drop{margin-top:-1px;border-radius:0 0 4px 4px;background-clip:padding-box;}.with_frm_style .chosen-container-single.chosen-container-single-nosearch .chosen-search{position:absolute;left:-9999px;}.with_frm_style .chosen-container .chosen-results{cursor:text;overflow-x:hidden;overflow-y:auto;position:relative;margin:0 4px 4px 0;padding:0 0 0 4px;max-height:240px;word-wrap:break-word;-webkit-overflow-scrolling:touch;}.with_frm_style .chosen-container .chosen-results li:before{background:none;}.with_frm_style .chosen-container .chosen-results li{display:none;margin:0;padding:5px 6px;list-style:none;line-height:15px;-webkit-touch-callout:none;}.with_frm_style .chosen-container .chosen-results li.active-result{display:list-item;cursor:pointer;}.with_frm_style .chosen-container .chosen-results li.disabled-result{display:list-item;color:#ccc;cursor:default;}.with_frm_style .chosen-container .chosen-results li.highlighted{background-color:#3875d7;color:#fff;}.with_frm_style .chosen-container .chosen-results li.no-results{display:list-item;background:#f4f4f4;}.with_frm_style .chosen-container .chosen-results li.group-result{display:list-item;font-weight:bold;cursor:default;}.with_frm_style .chosen-container .chosen-results li.group-option{padding-left:15px;}.with_frm_style .chosen-container .chosen-results li em{font-style:normal;text-decoration:underline;}.with_frm_style .chosen-container-multi .chosen-choices{position:relative;overflow:hidden;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;margin:0;padding:0 5px;width:100%;height:auto !important;height:1%;cursor:text;}.with_frm_style .chosen-container-multi .chosen-choices li{float:left;list-style:none;}.with_frm_style .chosen-container-multi .chosen-choices li.search-field{margin:0;padding:0;white-space:nowrap;}.with_frm_style .chosen-container-multi .chosen-choices li.search-field input[type=\"text\"]{margin:1px 0;padding:0;height:25px;outline:0;border:0 !important;background:transparent !important;box-shadow:none;color:#666;font-size:100%;font-family:sans-serif;line-height:normal;border-radius:0;}.with_frm_style .chosen-container-multi .chosen-choices li.search-choice{position:relative;margin:3px 5px 3px 0;padding:3px 20px 3px 5px;border:1px solid #aaa;max-width:100%;border-radius:3px;background-color:#eee;background-size:100% 19px;background-repeat:repeat-x;background-clip:padding-box;box-shadow:0 0 2px white inset, 0 1px 0 rgba(0, 0, 0, 0.05);color:#333;line-height:13px;cursor:default;}.with_frm_style .chosen-container-multi .chosen-choices li.search-choice .search-choice-close{position:absolute;top:4px;right:3px;display:block;width:12px;height:12px;background:url(\'//www.infinitymarketing.co.nz/wp-content/plugins/formidable/pro/images/chosen-sprite.png\') -42px 1px no-repeat;font-size:1px;}.with_frm_style .chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover{background-position:-42px -10px;}.with_frm_style .chosen-container-multi .chosen-choices li.search-choice-disabled{padding-right:5px;border:1px solid #ccc;background-color:#e4e4e4;color:#666;}.with_frm_style .chosen-container-multi .chosen-choices li.search-choice-focus{background:#d4d4d4;}.with_frm_style .chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close{background-position:-42px -10px;}.with_frm_style .chosen-container-multi .chosen-results{margin:0;padding:0;}.with_frm_style .chosen-container-multi .chosen-drop .result-selected{display:list-item;color:#ccc;cursor:default;}.with_frm_style .chosen-container-active .chosen-single{border:1px solid #5897fb;box-shadow:0 0 5px rgba(0, 0, 0, 0.3);}.with_frm_style .chosen-container-active.chosen-with-drop .chosen-single{border:1px solid #aaa;-moz-border-radius-bottomright:0;border-bottom-right-radius:0;-moz-border-radius-bottomleft:0;border-bottom-left-radius:0;box-shadow:0 1px 0 #fff inset;}.with_frm_style .chosen-container-active.chosen-with-drop .chosen-single div{border-left:none;background:transparent;}.with_frm_style .chosen-container-active.chosen-with-drop .chosen-single div b{background-position:-18px 2px;}.with_frm_style .chosen-container-active .chosen-choices li.search-field input[type=\"text\"]{color:#111 !important;}.with_frm_style .chosen-disabled{opacity:0.5 !important;cursor:default;}.with_frm_style .chosen-disabled .chosen-single{cursor:default;}.with_frm_style .chosen-disabled .chosen-choices .search-choice .search-choice-close{cursor:default;}.with_frm_style .chosen-rtl{text-align:right;}.with_frm_style .chosen-rtl .chosen-single{overflow:visible;padding:0 8px 0 0;}.with_frm_style .chosen-rtl .chosen-single span{margin-right:0;margin-left:26px;direction:rtl;}.with_frm_style .chosen-rtl .chosen-single-with-deselect span{margin-left:38px;}.with_frm_style .chosen-rtl .chosen-single div{right:auto;left:3px;}.with_frm_style .chosen-rtl .chosen-single abbr{right:auto;left:26px;}.with_frm_style .chosen-rtl .chosen-choices li{float:right;}.with_frm_style .chosen-rtl .chosen-choices li.search-field input[type=\"text\"]{direction:rtl;}.with_frm_style .chosen-rtl .chosen-choices li.search-choice{margin:3px 5px 3px 0;padding:3px 5px 3px 19px;}.with_frm_style .chosen-rtl .chosen-choices li.search-choice .search-choice-close{right:auto;left:4px;}.with_frm_style .chosen-rtl.chosen-container-single-nosearch .chosen-search, .with_frm_style .chosen-rtl .chosen-drop{left:9999px;}.with_frm_style .chosen-rtl.chosen-container-single .chosen-results{margin:0 0 4px 4px;padding:0 4px 0 0;}.with_frm_style .chosen-rtl .chosen-results li.group-option{padding-right:15px;padding-left:0;}.with_frm_style .chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div{border-right:none;}.with_frm_style .chosen-rtl .chosen-search input[type=\"text\"]{padding:4px 5px 4px 20px;background:white url(\'//www.infinitymarketing.co.nz/wp-content/plugins/formidable/pro/images/chosen-sprite.png\') no-repeat -30px -20px;background:url(\'//www.infinitymarketing.co.nz/wp-content/plugins/formidable/pro/images/chosen-sprite.png\') no-repeat -30px -20px;direction:rtl;}.with_frm_style .chosen-rtl.chosen-container-single .chosen-single div b{background-position:6px 2px;}.with_frm_style .chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b{background-position:-12px 2px;}@font-face {font-family:\'s11-fp\';src:url(\'//www.infinitymarketing.co.nz/wp-content/plugins/formidable/fonts/s11-fp.eot\');src:local(\'☺\'), url(\'//www.infinitymarketing.co.nz/wp-content/plugins/formidable/fonts/s11-fp.woff\') format(\'woff\'), url(\'//www.infinitymarketing.co.nz/wp-content/plugins/formidable/fonts/s11-fp.ttf\') format(\'truetype\'), url(\'//www.infinitymarketing.co.nz/wp-content/plugins/formidable/fonts/s11-fp.svg\') format(\'svg\');font-weight:normal;font-style:normal;}.frm_icon_font,.frm_dashicon_font{text-decoration:none;text-shadow: none;font-weight:normal;}i.frm_icon_font{font-style:normal;}.frm_icon_font:before,select.frm_icon_font{font-family: \'s11-fp\' !important;font-size:16px;speak: none;-webkit-font-smoothing: antialiased;-moz-osx-font-smoothing: grayscale;-moz-transition: all .1s ease-in-out;-webkit-transition: all .1s ease-in-out;transition: all .1s ease-in-out;}.frm_icon_font,a.frm_icon_font.frm_icon_font:hover,a.frm_icon_font:hover{text-decoration:none !important;}.frm_icon_font:focus,.frm_dashicon_font:focus{box-shadow:none;-webkit-box-shadow:none;}.frm_duplicate_icon:active,.frm_move_icon:active,.frm_delete_icon:active{outline:none;}.frm_trigger .frm_icon_font{padding:0 5px;}.ab-icon.frm_dashicon_font:before{content: \"\\f324\";}.frm_logo_icon:before {content: \"\\e601\";}.frm_required_icon:before {content: \"\\e612\";}.frm_delete_icon:before {content: \"\\e610\" !important;}.frm_move_icon:before {content: \"\\e61a\";}.frm_clear_icon:before {content: \"\\e60a\";}.frm_noclear_icon:before {content: \"\\e60b\";}.frm_duplicate_icon:before {content: \"\\e61b\";}.frm_new_icon:before {content: \"\\e614\";}.frm_tooltip_icon:before {content: \"\\e611\";}.frm_forbid_icon:before {content: \"\\e636\";}.frm_check_icon:before {content: \"\\e605\";}.frm_check1_icon:before {content: \"\\e606\";}.frm_plus_icon:before {content: \"\\e62f\";}.frm_plus1_icon:before {content: \"\\e602\";}.frm_plus2_icon:before {content: \"\\e603\";}.frm_plus3_icon:before {content: \"\\e632\";}.frm_plus4_icon:before {content: \"\\e60f\";}.frm_minus_icon:before {content: \"\\e62e\";}.frm_minus1_icon:before {content: \"\\e600\";}.frm_minus2_icon:before {content: \"\\e604\";}.frm_minus3_icon:before {content: \"\\e633\";}.frm_minus4_icon:before {content: \"\\e613\";}.frm_cancel_icon:before {content: \"\\e607\";}.frm_cancel1_icon:before {content: \"\\e608\";}.frm_arrowup_icon:before {content: \"\\e60d\";}.frm_arrowup1_icon:before {content: \"\\e60e\";}.frm_arrowup2_icon:before {content: \"\\e630\";}.frm_arrowup3_icon:before {content: \"\\e62b\";}.frm_arrowup4_icon:before {content: \"\\e62c\";}.frm_arrowup5_icon:before {content: \"\\e635\";}.frm_arrowup6_icon:before {content: \"\\e62d\";}.frm_arrowdown_icon:before {content: \"\\e609\";}.frm_arrowdown1_icon:before {content: \"\\e60c\";}.frm_arrowdown2_icon:before {content: \"\\e631\";}.frm_arrowdown3_icon:before {content: \"\\e628\";}.frm_arrowdown4_icon:before {content: \"\\e629\";}.frm_arrowdown5_icon:before {content: \"\\e634\";}.frm_arrowdown6_icon:before {content: \"\\e62a\";}.frm_download_icon:before {content: \"\\e615\";}.frm_upload_icon:before {content: \"\\e616\";}.frm_menu_icon:before {content: \"\\e618\";}.frm_twitter_icon:before {content: \"\\e619\";}.frm_sms_icon:before {content: \"\\e61c\";}.frm_pencil_icon:before {content: \"\\e61d\";}.frm_pencil1_icon:before {content: \"\\e61e\";}.frm_paypal_icon:before {content: \"\\e61f\";}.frm_twilio_icon:before {content: \"\\e620\";}.frm_googleplus_icon:before {content: \"\\e621\";}.frm_mailchimp_icon:before {content: \"\\e622\";}.frm_pdf_icon:before {content: \"\\e623\";}.frm_highrise_icon:before {content: \"\\e617\";}.frm_feed_icon:before {content: \"\\e624\";}.frm_facebook_icon:before {content: \"\\e625\";}.frm_email_icon:before {content: \"\\e626\";}.frm_aweber_icon:before {content: \"\\e627\";}.frm_register_icon:before {content: \"\\e637\";}.frm_authorize_icon:before {content: \"\\e900\";}.frm_stripe_icon:before {content: \"\\e902\";}.frm_woocommerce_icon:before {content: \"\\e903\";}.frm_paste_icon:before {content: \"\\e901\";}@-webkit-keyframes passing-through {0% {opacity: 0;-webkit-transform: translateY(40px);-moz-transform: translateY(40px);-ms-transform: translateY(40px);-o-transform: translateY(40px);transform: translateY(40px);}30%, 70% {opacity: 1;-webkit-transform: translateY(0px);-moz-transform: translateY(0px);-ms-transform: translateY(0px);-o-transform: translateY(0px);transform: translateY(0px);}100% {opacity: 0;-webkit-transform: translateY(-40px);-moz-transform: translateY(-40px);-ms-transform: translateY(-40px);-o-transform: translateY(-40px);transform: translateY(-40px);}}@-moz-keyframes passing-through {0% {opacity: 0;-webkit-transform: translateY(40px);-moz-transform: translateY(40px);-ms-transform: translateY(40px);-o-transform: translateY(40px);transform: translateY(40px);}30%, 70% {opacity: 1;-webkit-transform: translateY(0px);-moz-transform: translateY(0px);-ms-transform: translateY(0px);-o-transform: translateY(0px);transform: translateY(0px);}100% {opacity: 0;-webkit-transform: translateY(-40px);-moz-transform: translateY(-40px);-ms-transform: translateY(-40px);-o-transform: translateY(-40px);transform: translateY(-40px);}}@keyframes passing-through {0% {opacity: 0;-webkit-transform: translateY(40px);-moz-transform: translateY(40px);-ms-transform: translateY(40px);-o-transform: translateY(40px);transform: translateY(40px);}30%, 70% {opacity: 1;-webkit-transform: translateY(0px);-moz-transform: translateY(0px);-ms-transform: translateY(0px);-o-transform: translateY(0px);transform: translateY(0px);}100% {opacity: 0;-webkit-transform: translateY(-40px);-moz-transform: translateY(-40px);-ms-transform: translateY(-40px);-o-transform: translateY(-40px);transform: translateY(-40px);}}@-webkit-keyframes slide-in {0% {opacity: 0;-webkit-transform: translateY(40px);-moz-transform: translateY(40px);-ms-transform: translateY(40px);-o-transform: translateY(40px);transform: translateY(40px);}30% {opacity: 1;-webkit-transform: translateY(0px);-moz-transform: translateY(0px);-ms-transform: translateY(0px);-o-transform: translateY(0px);transform: translateY(0px);}}@-moz-keyframes slide-in {0% {opacity: 0;-webkit-transform: translateY(40px);-moz-transform: translateY(40px);-ms-transform: translateY(40px);-o-transform: translateY(40px);transform: translateY(40px);}30% {opacity: 1;-webkit-transform: translateY(0px);-moz-transform: translateY(0px);-ms-transform: translateY(0px);-o-transform: translateY(0px);transform: translateY(0px);}}@keyframes slide-in {0% {opacity: 0;-webkit-transform: translateY(40px);-moz-transform: translateY(40px);-ms-transform: translateY(40px);-o-transform: translateY(40px);transform: translateY(40px);}30% {opacity: 1;-webkit-transform: translateY(0px);-moz-transform: translateY(0px);-ms-transform: translateY(0px);-o-transform: translateY(0px);transform: translateY(0px);}}@-webkit-keyframes pulse {0% {-webkit-transform: scale(1);-moz-transform: scale(1);-ms-transform: scale(1);-o-transform: scale(1);transform: scale(1);}10% {-webkit-transform: scale(1.1);-moz-transform: scale(1.1);-ms-transform: scale(1.1);-o-transform: scale(1.1);transform: scale(1.1);}20% {-webkit-transform: scale(1);-moz-transform: scale(1);-ms-transform: scale(1);-o-transform: scale(1);transform: scale(1);}}@-moz-keyframes pulse {0% {-webkit-transform: scale(1);-moz-transform: scale(1);-ms-transform: scale(1);-o-transform: scale(1);transform: scale(1);}10% {-webkit-transform: scale(1.1);-moz-transform: scale(1.1);-ms-transform: scale(1.1);-o-transform: scale(1.1);transform: scale(1.1);}20% {-webkit-transform: scale(1);-moz-transform: scale(1);-ms-transform: scale(1);-o-transform: scale(1);transform: scale(1);}}@keyframes pulse {0% {-webkit-transform: scale(1);-moz-transform: scale(1);-ms-transform: scale(1);-o-transform: scale(1);transform: scale(1);}10% {-webkit-transform: scale(1.1);-moz-transform: scale(1.1);-ms-transform: scale(1.1);-o-transform: scale(1.1);transform: scale(1.1);}20% {-webkit-transform: scale(1);-moz-transform: scale(1);-ms-transform: scale(1);-o-transform: scale(1);transform: scale(1);}}.frm_dropzone, .frm_dropzone * {box-sizing: border-box;}.frm_dropzone.dz-clickable {min-height: 150px;border: 2px dashed #dfdfdf;background:#ffffff;padding: 20px 20px;border-radius:5px;cursor: pointer;margin-top:5px;line-height:1.42857143;}.frm_dropzone.dz-clickable * {cursor: default;}.frm_dropzone.dz-clickable.frm_single_upload{max-width: 200px;}.frm_dropzone .dz-message{display:none;font-size:20px;text-align: center;margin: .5em 0 1em;}.frm_dropzone.dz-clickable.frm_single_upload .dz-message{margin: 0 0 .5em 0;}.frm_dropzone.dz-clickable .dz-message,.frm_dropzone .frm_upload_icon{display:block;}.frm_dropzone.dz-clickable .dz-message,.frm_dropzone.dz-clickable .dz-message * {cursor: pointer;}#frm_form_editor_container .frm_dropzone.dz-clickable,#frm_form_editor_container .frm_dropzone.dz-clickable *{cursor: default;}.frm_dropzone.dz-started .dz-message {display: none;}.frm_dropzone.dz-drag-hover .dz-message {opacity: 0.5;}.frm_dropzone .frm_upload_icon:before{font-size:40px;}.frm_dropzone .frm_small_text {font-size:14px;}.frm_dropzone.dz-drag-hover {border-style: solid;}.frm_dropzone .dz-preview {position: relative;display: inline-block;vertical-align: top;margin: 16px;min-height: 100px;}.frm_dropzone .dz-preview:hover {z-index: 1000;}.frm_dropzone .dz-preview:hover .dz-details {opacity: 1;}.frm_dropzone .dz-preview.dz-file-preview .dz-image {border-radius: 20px;background: #999;background: linear-gradient(to bottom, #eee, #ddd);}.frm_dropzone .dz-preview.dz-file-preview .dz-details {opacity: 1;}.frm_dropzone .dz-preview.dz-image-preview .dz-details {-webkit-transition: opacity 0.2s linear;-moz-transition: opacity 0.2s linear;-ms-transition: opacity 0.2s linear;-o-transition: opacity 0.2s linear;transition: opacity 0.2s linear;}.frm_dropzone .dz-preview .dz-remove {font-size: 14px;text-align: center;display: block;cursor: pointer;border: none;}.frm_dropzone .dz-preview .dz-remove:hover {text-decoration: underline;}.frm_dropzone .dz-preview:hover .dz-details {opacity: 1;}.frm_dropzone .dz-preview .dz-details {z-index: 20;position: absolute;top: 0;left: 0;opacity: 0;font-size: 13px;min-width: 100%;max-width: 100%;padding: 2em 1em;text-align: center;color: rgba(0, 0, 0, 0.9);line-height: 150%;}.frm_dropzone .dz-preview .dz-details .dz-size {margin-bottom: 1em;font-size: 16px;}.frm_dropzone .dz-preview .dz-details .dz-filename {white-space: nowrap;}.frm_dropzone .dz-preview .dz-details .dz-filename:hover span {border: 1px solid rgba(200, 200, 200, 0.8);background-color: rgba(255, 255, 255, 0.8);}.frm_dropzone .dz-preview .dz-details .dz-filename:not(:hover) {overflow: hidden;text-overflow: ellipsis;}.frm_dropzone .dz-preview .dz-details .dz-filename:not(:hover) span {border: 1px solid transparent;}.frm_dropzone .dz-preview .dz-details .dz-filename span,.frm_dropzone .dz-preview .dz-details .dz-size span {background-color: rgba(255, 255, 255, 0.4);padding: 0 0.4em;border-radius: 3px;}.frm_dropzone .dz-preview .dz-details .dz-filename a{cursor:pointer;}.frm_dropzone .dz-preview:hover .dz-image img {-webkit-transform: scale(1.05, 1.05);-moz-transform: scale(1.05, 1.05);-ms-transform: scale(1.05, 1.05);-o-transform: scale(1.05, 1.05);transform: scale(1.05, 1.05);-webkit-filter: blur(8px);filter: blur(8px);}.frm_dropzone .dz-preview .dz-image {border-radius: 20px;overflow: hidden;width: 120px;height: 120px;position: relative;display: block;z-index: 10;}.frm_dropzone .dz-preview .dz-image img {display: block;margin:0 auto;}.frm_dropzone .dz-preview.dz-success .dz-success-mark {-webkit-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);-moz-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);-ms-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);-o-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);}.frm_dropzone .dz-preview.dz-error .dz-error-mark {opacity: 1;-webkit-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);-moz-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);-ms-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);-o-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);}.frm_dropzone .dz-preview .dz-success-mark, .frm_dropzone .dz-preview .dz-error-mark {pointer-events: none;opacity: 0;z-index: 500;position: absolute;display: block;top: 50%;left: 50%;margin-left: -27px;margin-top: -27px;}.frm_dropzone .dz-preview .dz-success-mark svg, .frm_dropzone .dz-preview .dz-error-mark svg {display: block;width: 54px;height: 54px;}.frm_dropzone .dz-preview.dz-processing .dz-progress {opacity: 1;-webkit-transition: all 0.2s linear;-moz-transition: all 0.2s linear;-ms-transition: all 0.2s linear;-o-transition: all 0.2s linear;transition: all 0.2s linear;}.frm_dropzone .dz-preview.dz-complete .dz-progress {opacity: 0;-webkit-transition: opacity 0.4s ease-in;-moz-transition: opacity 0.4s ease-in;-ms-transition: opacity 0.4s ease-in;-o-transition: opacity 0.4s ease-in;transition: opacity 0.4s ease-in;}.frm_dropzone .dz-preview:not(.dz-processing) .dz-progress {-webkit-animation: pulse 6s ease infinite;-moz-animation: pulse 6s ease infinite;-ms-animation: pulse 6s ease infinite;-o-animation: pulse 6s ease infinite;animation: pulse 6s ease infinite;}.frm_dropzone .dz-preview .dz-progress {opacity: 1;z-index: 1000;pointer-events: none;position: absolute;height: 16px;left: 50%;top: 50%;margin-top: -8px;width: 80px;margin-left: -40px;background: rgba(255, 255, 255, 0.9);-webkit-transform: scale(1);border-radius: 8px;overflow: hidden;}.frm_dropzone .dz-preview .dz-progress .dz-upload {background: #333;background: linear-gradient(to bottom, #666, #444);position: absolute;top: 0;left: 0;bottom: 0;width: 0;-webkit-transition: width 300ms ease-in-out;-moz-transition: width 300ms ease-in-out;-ms-transition: width 300ms ease-in-out;-o-transition: width 300ms ease-in-out;transition: width 300ms ease-in-out;}.frm_dropzone .dz-preview.dz-error .dz-error-message {display: block;}.frm_dropzone .dz-preview.dz-error:hover .dz-error-message {opacity: 1;pointer-events: auto;}.frm_dropzone .dz-preview .dz-error-message {pointer-events: none;z-index: 1000;position: absolute;display: block;display: none;opacity: 0;-webkit-transition: opacity 0.3s ease;-moz-transition: opacity 0.3s ease;-ms-transition: opacity 0.3s ease;-o-transition: opacity 0.3s ease;transition: opacity 0.3s ease;border-radius: 8px;font-size: 13px;top: 29px;left: -10px;width: 140px;background: #be2626;background: linear-gradient(to bottom, #be2626, #a92222);padding: 0.5em 1.2em;color: white;}.frm_dropzone .fallback input[type=file]{display:block;}.frm_compact_text{display:none;}.frm_compact .frm_dropzone.dz-clickable{min-height:60px;padding:5px;border:none;background-color:transparent;}.frm_compact .frm_dropzone.dz-clickable.frm_single_upload{max-width:100%;}.frm_compact .frm_compact_text{display:inline;}.frm_compact .frm_dropzone.dz-clickable.frm_single_upload .dz-message,.frm_compact .frm_dropzone.dz-clickable .dz-message{font-size:14px;border:1px solid #dfdfdf;background:#fff;display: inline-block;border-radius: 4px;padding: 6px 11px;box-sizing: border-box;box-shadow: 0 1px 1px #eeeeee;vertical-align: middle;}.frm_compact .frm_dropzone .frm_upload_icon:before{font-size:22px;padding-right:7px;vertical-align: middle;}.frm_compact .frm_dropzone .frm_upload_icon{display:inline;}.frm_compact .frm_dropzone .dz-preview{min-height:20px;max-width:175px;margin:5px;}.frm_compact .frm_dropzone .frm_upload_text,.frm_compact .frm_dropzone .frm_small_text,.frm_compact .frm_dropzone .dz-preview .dz-image,.frm_compact .frm_dropzone .dz-preview .dz-details .dz-size{display:none;}.frm_compact .frm_dropzone .dz-preview.dz-error .dz-error-message{top: -40px;padding: 4px;width: auto;text-align: center;}.frm_compact .frm_dropzone .dz-preview .dz-success-mark,.frm_compact .frm_dropzone .dz-preview .dz-error-mark{margin-left: -16px;margin-top: 0;top: 6px;}.frm_compact .frm_dropzone .dz-preview:hover .dz-error-mark{display:none;}.frm_compact .frm_dropzone .dz-preview .dz-success-mark svg,.frm_compact .frm_dropzone .dz-preview .dz-error-mark svg{height:35px;width:35px;}.frm_compact .frm_dropzone .dz-preview .dz-details{opacity:1;position:relative;padding:5px;}.frm_compact .frm_dropzone .dz-preview .dz-details .dz-filename {overflow: hidden;text-overflow: ellipsis;}.frm_compact .frm_dropzone .dz-preview .dz-details .dz-filename span{border:none;background:transparent;}@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-resolution: 144dpi){.with_frm_style .chosen-rtl .chosen-search input[type=\"text\"],.with_frm_style .chosen-container-single .chosen-single abbr,.with_frm_style .chosen-container-single .chosen-single div b,.with_frm_style .chosen-container-single .chosen-search input[type=\"text\"],.with_frm_style .chosen-container-multi .chosen-choices .search-choice .search-choice-close,.with_frm_style .chosen-container .chosen-results-scroll-down span,.with_frm_style .chosen-container .chosen-results-scroll-up span{background-image:url(\'//www.infinitymarketing.co.nz/wp-content/plugins/formidable/pro/images/chosen-sprite2x.png\') !important;background-size:52px 37px !important;background-repeat:no-repeat !important;}}@media only screen and (max-width: 900px) {.frm_form_field .frm_repeat_grid .frm_form_field.frm_sixth label.frm_primary_label,.frm_form_field .frm_repeat_grid .frm_form_field.frm_seventh label.frm_primary_label,.frm_form_field .frm_repeat_grid .frm_form_field.frm_eighth label.frm_primary_label{display: block !important;}.frm_form_field .frm_repeat_grid .frm_form_field.frm_repeat_buttons.frm_seventh label.frm_primary_label{display:none !important;}}@media only screen and (max-width: 600px) {.frm_form_field.frm_four_col .frm_radio,.frm_form_field.frm_four_col .frm_checkbox{width:48%;margin-right:4%;}.frm_form_field.frm_four_col .frm_radio:nth-child(2n+2),.frm_form_field.frm_four_col .frm_checkbox:nth-child(2n+2){margin-right:0;}.frm_form_field .frm_repeat_grid.frm_first_repeat .frm_form_field.frm_repeat_buttons:not(.frm_fourth):not(.frm_sixth):not(.frm_eighth) label.frm_primary_label{display:none !important;}.frm_form_field .frm_repeat_grid .frm_form_field.frm_fifth label.frm_primary_label{display:block !important;}.frm_form_field .frm_repeat_grid .frm_form_field.frm_repeat_buttons.frm_fifth label.frm_primary_label{display:none !important;}}@media only screen and (max-width: 500px) {.frm_form_field.frm_two_col .frm_radio,.frm_form_field.frm_two_col .frm_checkbox,.frm_form_field.frm_three_col .frm_radio,.frm_form_field.frm_three_col .frm_checkbox{width: auto;margin-right: 0;float: none;display:block;}.frm_form_field input[type=file] {max-width:220px;}.with_frm_style.frm_login_form.frm_inline_login p{clear:both;float:none;}.with_frm_style.frm_login_form.frm_inline_login form{position:static;}.with_frm_style.frm_login_form.frm_inline_login .login-remember{position:static;}.with_frm_style .frm-g-recaptcha > div > div,.with_frm_style .g-recaptcha > div > div{width:inherit !important;display:block;overflow:hidden;max-width:302px;border-right:1px solid #d3d3d3;border-radius:4px;box-shadow:2px 0px 4px -1px rgba(0,0,0,.08);-moz-box-shadow:2px 0px 4px -1px rgba(0,0,0,.08);}.with_frm_style .g-recaptcha iframe,.with_frm_style .frm-g-recaptcha iframe{width:100%;}}", "yes");
INSERT INTO `wp_options` VALUES("2933", "wpseo_sitemap_nav_menu_item_cache_validator", "DPMy", "no");
INSERT INTO `wp_options` VALUES("5585", "rewrite_rules", "a:145:{s:10:\"project/?$\";s:27:\"index.php?post_type=project\";s:40:\"project/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=project&feed=$matches[1]\";s:35:\"project/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=project&feed=$matches[1]\";s:27:\"project/page/([0-9]{1,})/?$\";s:45:\"index.php?post_type=project&paged=$matches[1]\";s:19:\"sitemap_index\\.xml$\";s:19:\"index.php?sitemap=1\";s:31:\"([^/]+?)-sitemap([0-9]+)?\\.xml$\";s:51:\"index.php?sitemap=$matches[1]&sitemap_n=$matches[2]\";s:24:\"([a-z]+)?-?sitemap\\.xsl$\";s:25:\"index.php?xsl=$matches[1]\";s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:16:\"landingpage_f/?$\";s:33:\"index.php?post_type=landingpage_f\";s:46:\"landingpage_f/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_type=landingpage_f&feed=$matches[1]\";s:41:\"landingpage_f/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_type=landingpage_f&feed=$matches[1]\";s:33:\"landingpage_f/page/([0-9]{1,})/?$\";s:51:\"index.php?post_type=landingpage_f&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:35:\"project/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"project/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"project/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"project/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"project/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"project/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"project/([^/]+)/embed/?$\";s:40:\"index.php?project=$matches[1]&embed=true\";s:28:\"project/([^/]+)/trackback/?$\";s:34:\"index.php?project=$matches[1]&tb=1\";s:48:\"project/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?project=$matches[1]&feed=$matches[2]\";s:43:\"project/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?project=$matches[1]&feed=$matches[2]\";s:36:\"project/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?project=$matches[1]&paged=$matches[2]\";s:43:\"project/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?project=$matches[1]&cpage=$matches[2]\";s:32:\"project/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?project=$matches[1]&page=$matches[2]\";s:24:\"project/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"project/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"project/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"project/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"project/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"project/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:57:\"project_category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?project_category=$matches[1]&feed=$matches[2]\";s:52:\"project_category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?project_category=$matches[1]&feed=$matches[2]\";s:33:\"project_category/([^/]+)/embed/?$\";s:49:\"index.php?project_category=$matches[1]&embed=true\";s:45:\"project_category/([^/]+)/page/?([0-9]{1,})/?$\";s:56:\"index.php?project_category=$matches[1]&paged=$matches[2]\";s:27:\"project_category/([^/]+)/?$\";s:38:\"index.php?project_category=$matches[1]\";s:52:\"project_tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?project_tag=$matches[1]&feed=$matches[2]\";s:47:\"project_tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?project_tag=$matches[1]&feed=$matches[2]\";s:28:\"project_tag/([^/]+)/embed/?$\";s:44:\"index.php?project_tag=$matches[1]&embed=true\";s:40:\"project_tag/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?project_tag=$matches[1]&paged=$matches[2]\";s:22:\"project_tag/([^/]+)/?$\";s:33:\"index.php?project_tag=$matches[1]\";s:41:\"landingpage_f/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:51:\"landingpage_f/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:71:\"landingpage_f/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:66:\"landingpage_f/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:66:\"landingpage_f/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:47:\"landingpage_f/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:30:\"landingpage_f/([^/]+)/embed/?$\";s:44:\"index.php?landingpage=$matches[1]&embed=true\";s:34:\"landingpage_f/([^/]+)/trackback/?$\";s:38:\"index.php?landingpage=$matches[1]&tb=1\";s:54:\"landingpage_f/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?landingpage=$matches[1]&feed=$matches[2]\";s:49:\"landingpage_f/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?landingpage=$matches[1]&feed=$matches[2]\";s:42:\"landingpage_f/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?landingpage=$matches[1]&paged=$matches[2]\";s:49:\"landingpage_f/([^/]+)/comment-page-([0-9]{1,})/?$\";s:51:\"index.php?landingpage=$matches[1]&cpage=$matches[2]\";s:38:\"landingpage_f/([^/]+)(?:/([0-9]+))?/?$\";s:50:\"index.php?landingpage=$matches[1]&page=$matches[2]\";s:30:\"landingpage_f/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:40:\"landingpage_f/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:60:\"landingpage_f/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:55:\"landingpage_f/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:55:\"landingpage_f/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:36:\"landingpage_f/[^/]+/([^/]+)/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:39:\"index.php?&page_id=37&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");
INSERT INTO `wp_options` VALUES("8380", "_wp_session_expires_06846bf4884645eff60ce514f3096435", "2987882994", "no");
INSERT INTO `wp_options` VALUES("8806", "_site_transient_browser_d7ebeddeee1c10c06a3c4cf170141814", "a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:4:\"49.0\";s:10:\"update_url\";s:23:\"http://www.firefox.com/\";s:7:\"img_src\";s:50:\"http://s.wordpress.org/images/browsers/firefox.png\";s:11:\"img_src_ssl\";s:49:\"https://wordpress.org/images/browsers/firefox.png\";s:15:\"current_version\";s:2:\"16\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}", "no");
INSERT INTO `wp_options` VALUES("5249", "akismet_spam_count", "2", "yes");
INSERT INTO `wp_options` VALUES("10074", "_site_transient_timeout_itsec_wp_upload_dir", "1482329149", "no");
INSERT INTO `wp_options` VALUES("10075", "_site_transient_itsec_wp_upload_dir", "a:6:{s:4:\"path\";s:58:\"/home/candiclebaker/public_html/wp-content/uploads/2016/12\";s:3:\"url\";s:61:\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/12\";s:6:\"subdir\";s:8:\"/2016/12\";s:7:\"basedir\";s:50:\"/home/candiclebaker/public_html/wp-content/uploads\";s:7:\"baseurl\";s:53:\"http://www.infinitymarketing.co.nz/wp-content/uploads\";s:5:\"error\";b:0;}", "no");
INSERT INTO `wp_options` VALUES("7905", "itsec_data", "a:5:{s:5:\"build\";i:4045;s:20:\"activation_timestamp\";i:1476922040;s:17:\"already_supported\";b:0;s:15:\"setup_completed\";b:0;s:18:\"tooltips_dismissed\";b:0;}", "no");
INSERT INTO `wp_options` VALUES("7906", "itsec_free_just_activated", "1", "yes");
INSERT INTO `wp_options` VALUES("7907", "itsec_malware", "a:2:{s:7:\"enabled\";b:0;s:7:\"api_key\";s:0:\"\";}", "yes");
INSERT INTO `wp_options` VALUES("7908", "itsec_initials", "a:0:{}", "yes");
INSERT INTO `wp_options` VALUES("7909", "itsec_api_nag", "1", "yes");
INSERT INTO `wp_options` VALUES("7910", "itsec_global", "a:24:{s:18:\"notification_email\";a:1:{i:0;s:23:\"candiclebaker@gmail.com\";}s:12:\"backup_email\";a:1:{i:0;s:23:\"candiclebaker@gmail.com\";}s:15:\"lockout_message\";s:5:\"error\";s:20:\"user_lockout_message\";s:64:\"You have been locked out due to too many invalid login attempts.\";s:25:\"community_lockout_message\";s:77:\"Your IP address has been flagged as a threat by the iThemes Security network.\";s:9:\"blacklist\";b:1;s:15:\"blacklist_count\";i:3;s:16:\"blacklist_period\";i:7;s:19:\"email_notifications\";b:1;s:14:\"lockout_period\";i:15;s:18:\"lockout_white_list\";a:0:{}s:12:\"log_rotation\";i:14;s:8:\"log_type\";i:0;s:12:\"log_location\";s:72:\"/home/candiclebaker/public_html/wp-content/uploads/ithemes-security/logs\";s:14:\"allow_tracking\";b:0;s:11:\"write_files\";b:0;s:10:\"nginx_file\";s:42:\"/home/candiclebaker/public_html/nginx.conf\";s:24:\"infinitewp_compatibility\";b:0;s:11:\"did_upgrade\";b:0;s:9:\"lock_file\";b:0;s:12:\"digest_email\";b:0;s:14:\"proxy_override\";b:0;s:14:\"hide_admin_bar\";b:0;s:8:\"log_info\";s:49:\"infinity-marketing-lb5Gqvy8TmY09BxvprxWLtSkxaCE0U\";}", "yes");
INSERT INTO `wp_options` VALUES("7911", "itsec_temp_whitelist_ip", "a:3:{s:13:\"122.59.80.126\";i:1482312089;s:15:\"203.173.215.137\";i:1482310833;s:14:\"49.224.211.151\";i:1482343792;}", "no");
INSERT INTO `wp_options` VALUES("7913", "itsec-storage", "a:5:{s:6:\"backup\";a:9:{s:9:\"all_sites\";b:0;s:6:\"method\";i:1;s:8:\"location\";s:75:\"/home/candiclebaker/public_html/wp-content/uploads/ithemes-security/backups\";s:6:\"retain\";i:3;s:3:\"zip\";b:1;s:7:\"exclude\";a:3:{i:0;s:14:\"itsec_lockouts\";i:1;s:9:\"itsec_log\";i:2;s:10:\"itsec_temp\";}s:7:\"enabled\";b:1;s:8:\"interval\";i:3;s:8:\"last_run\";i:1482190310;}s:6:\"global\";a:27:{s:18:\"notification_email\";a:1:{i:0;s:23:\"candiclebaker@gmail.com\";}s:12:\"backup_email\";a:1:{i:0;s:23:\"candiclebaker@gmail.com\";}s:15:\"lockout_message\";s:5:\"error\";s:20:\"user_lockout_message\";s:64:\"You have been locked out due to too many invalid login attempts.\";s:25:\"community_lockout_message\";s:77:\"Your IP address has been flagged as a threat by the iThemes Security network.\";s:9:\"blacklist\";b:1;s:15:\"blacklist_count\";i:3;s:16:\"blacklist_period\";i:7;s:19:\"email_notifications\";b:1;s:14:\"lockout_period\";i:15;s:18:\"lockout_white_list\";a:0:{}s:12:\"log_rotation\";i:14;s:8:\"log_type\";s:8:\"database\";s:12:\"log_location\";s:72:\"/home/candiclebaker/public_html/wp-content/uploads/ithemes-security/logs\";s:8:\"log_info\";s:49:\"infinity-marketing-MO1ZsAtwLyZO8Syth3UjeAJ5JMjQNE\";s:14:\"allow_tracking\";b:0;s:11:\"write_files\";b:1;s:10:\"nginx_file\";s:42:\"/home/candiclebaker/public_html/nginx.conf\";s:24:\"infinitewp_compatibility\";b:0;s:11:\"did_upgrade\";b:0;s:9:\"lock_file\";b:0;s:12:\"digest_email\";b:0;s:14:\"proxy_override\";b:0;s:14:\"hide_admin_bar\";b:0;s:16:\"show_error_codes\";b:0;s:25:\"show_new_dashboard_notice\";b:0;s:19:\"show_security_check\";b:0;}s:19:\"network-brute-force\";a:5:{s:7:\"api_key\";s:32:\"8KwZ8dJ87C2T7ej3f8n32a65I7s9LZpV\";s:10:\"api_secret\";s:128:\"LXz2ATJ3NKm4g9q09X9lhl69UjkG93wafzRNmllQB6a5E8258KnkYpWNBn5S4rPUr9Eye3WrOk3aLtM2NMm3mhH8O3O5Xt7UNbLOMYC49yYs87L7Xu5N9xmy1yyAXQ5W\";s:10:\"enable_ban\";b:1;s:13:\"updates_optin\";b:1;s:7:\"api_nag\";b:0;}s:16:\"wordpress-tweaks\";a:11:{s:18:\"wlwmanifest_header\";b:0;s:14:\"edituri_header\";b:0;s:12:\"comment_spam\";b:0;s:11:\"file_editor\";b:1;s:14:\"disable_xmlrpc\";i:0;s:22:\"allow_xmlrpc_multiauth\";b:0;s:11:\"safe_jquery\";b:0;s:12:\"login_errors\";b:0;s:21:\"force_unique_nicename\";b:0;s:27:\"disable_unused_author_pages\";b:0;s:14:\"jquery_version\";s:6:\"1.12.4\";}s:9:\"ban-users\";a:4:{s:7:\"default\";b:0;s:16:\"enable_ban_lists\";b:1;s:9:\"host_list\";a:9:{i:0;s:12:\"198.71.240.9\";i:1;s:12:\"86.105.50.40\";i:2;s:12:\"31.168.11.81\";i:3;s:12:\"50.62.176.36\";i:4;s:14:\"184.168.27.197\";i:5;s:15:\"173.201.196.146\";i:6;s:15:\"184.168.200.102\";i:7;s:15:\"184.168.200.230\";i:8;s:13:\"50.62.177.143\";}s:10:\"agent_list\";a:0:{}}}", "no");
INSERT INTO `wp_options` VALUES("7916", "antivirus", "a:0:{}", "no");
INSERT INTO `wp_options` VALUES("7919", "itsec_active_modules", "a:7:{s:9:\"ban-users\";b:1;s:11:\"brute-force\";b:1;s:6:\"backup\";b:1;s:19:\"network-brute-force\";b:1;s:16:\"strong-passwords\";b:1;s:16:\"wordpress-tweaks\";b:1;s:13:\"404-detection\";b:1;}", "yes");
INSERT INTO `wp_options` VALUES("7879", "_site_transient_timeout_browser_a577a018a38e33733b85874abbc32db6", "1477526759", "yes");
INSERT INTO `wp_options` VALUES("9339", "_site_transient_update_core", "O:8:\"stdClass\":4:{s:7:\"updates\";a:3:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:63:\"https://downloads.wordpress.org/release/en_NZ/wordpress-4.7.zip\";s:6:\"locale\";s:5:\"en_NZ\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:63:\"https://downloads.wordpress.org/release/en_NZ/wordpress-4.7.zip\";s:10:\"no_content\";b:0;s:11:\"new_bundled\";b:0;s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:3:\"4.7\";s:7:\"version\";s:3:\"4.7\";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\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:57:\"https://downloads.wordpress.org/release/wordpress-4.7.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:57:\"https://downloads.wordpress.org/release/wordpress-4.7.zip\";s:10:\"no_content\";s:68:\"https://downloads.wordpress.org/release/wordpress-4.7-no-content.zip\";s:11:\"new_bundled\";s:69:\"https://downloads.wordpress.org/release/wordpress-4.7-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:3:\"4.7\";s:7:\"version\";s:3:\"4.7\";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:2;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:63:\"https://downloads.wordpress.org/release/en_NZ/wordpress-4.7.zip\";s:6:\"locale\";s:5:\"en_NZ\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:63:\"https://downloads.wordpress.org/release/en_NZ/wordpress-4.7.zip\";s:10:\"no_content\";b:0;s:11:\"new_bundled\";b:0;s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:3:\"4.7\";s:7:\"version\";s:3:\"4.7\";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:1482235328;s:15:\"version_checked\";s:5:\"4.6.1\";s:12:\"translations\";a:0:{}}", "no");
INSERT INTO `wp_options` VALUES("7983", "allowedthemes", "a:1:{s:18:\"infinity-marketing\";b:1;}", "no");
INSERT INTO `wp_options` VALUES("7959", "wpseo_sitemap_attachment_cache_validator", "2HzB2", "no");
INSERT INTO `wp_options` VALUES("7967", "et_automatic_updates_options", "a:2:{s:8:\"username\";s:17:\"infinitymarketing\";s:7:\"api_key\";s:40:\"9526d03d16a6a49ebb58b94b046526ed30ed28ba\";}", "yes");
INSERT INTO `wp_options` VALUES("7977", "_transient_timeout_et_divi_customizer_option_set", "1477018138", "no");
INSERT INTO `wp_options` VALUES("7978", "_transient_et_divi_customizer_option_set", "theme", "no");
INSERT INTO `wp_options` VALUES("10080", "_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca", "1482300597", "no");
INSERT INTO `wp_options` VALUES("10081", "_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca", "1482257397", "no");
INSERT INTO `wp_options` VALUES("7972", "et_account_status_last_checked", "1482257481", "yes");
INSERT INTO `wp_options` VALUES("7988", "wpseo-gsc-refresh_token", "1/cTQMGb-TzzQUPzJB5tDvxnvKz-Blwce6r08pjzZmO8I", "yes");
INSERT INTO `wp_options` VALUES("7989", "wpseo-gsc-access_token", "a:5:{s:13:\"refresh_token\";s:45:\"1/cTQMGb-TzzQUPzJB5tDvxnvKz-Blwce6r08pjzZmO8I\";s:12:\"access_token\";s:71:\"ya29.Ci-CA6ArjSWWJUmhrQDjzqwnx2_Yu-pcWjJTlkqTuQQccjLITtaGOClOokoUBSybdw\";s:7:\"expires\";d:1476982377;s:10:\"expires_in\";i:3600;s:7:\"created\";i:1476931977;}", "yes");
INSERT INTO `wp_options` VALUES("7995", "et_google_api_settings", "a:2:{s:7:\"api_key\";s:0:\"\";s:26:\"enqueue_google_maps_script\";s:2:\"on\";}", "yes");
INSERT INTO `wp_options` VALUES("8805", "_site_transient_timeout_browser_d7ebeddeee1c10c06a3c4cf170141814", "1479893916", "no");
INSERT INTO `wp_options` VALUES("8685", "_site_transient_timeout_browser_d1f91e7d7b92cc19cfba2458defafe8e", "1479619350", "no");
INSERT INTO `wp_options` VALUES("8686", "_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");
INSERT INTO `wp_options` VALUES("10082", "_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9", "1482300598", "no");
INSERT INTO `wp_options` VALUES("10083", "_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:135:\"WPTavern: State of the Word 2016: Mullenweg Pushes Calypso as Future of WordPress’ Interface, Proposes Major Changes to Release Cycle\";s: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=64185\";s: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:141:\"https://wptavern.com/state-of-the-word-2016-mullenweg-pushes-calypso-as-future-of-wordpress-interface-proposes-major-changes-to-release-cycle\";s: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:14787:\"<a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/12/sotw-2016.jpg?ssl=1\"><img src=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/12/sotw-2016.jpg?resize=1025%2C487&ssl=1\" alt=\"photo credit: WordCamp US organizing team\" class=\"size-full wp-image-64217\" /></a>photo credit: <a href=\"https://twitter.com/WordCampUS/status/805156416935882752\">WordCamp US organizing team</a>\n<p>Philadelphia welcomed 1,923 attendees to WordCamp US this weekend with an additional 2,028 enthusiasts watching via live stream. Matt Mullenweg delivered his 11th annual State of the Word address to a rapt audience ready to celebrate WordPress&#8217; progress over the past year and hear the project leader&#8217;s vision for 2017.</p>\n<p>He began by thanking sponsors and volunteers who made the event possible by covering the bulk of the $516 actual cost per person. Mullenweg said sponsors cover roughly 85-95% of the cost of WordCamps worldwide. In 2016, the events sold a total 36,000 tickets, with costs subsidized by more than 1,000 sponsors.</p>\n<p>Mullenweg said meetups are the leading indicator for WordCamps and these events have had the fastest growth the community has seen in five or six years. More than 62,566 people attended a local meetup in 58 countries and roughly one third of those were new members.</p>\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">It’s been a great year for WordCamps and meetups &#8211; 115 total WordCamps hosted in 41 different countries. <a href=\"https://twitter.com/hashtag/wcus?src=hash\">#wcus</a> <a href=\"https://t.co/yVGkT0j52C\">pic.twitter.com/yVGkT0j52C</a></p>\n<p>&mdash; WordCamp US (@WordCampUS) <a href=\"https://twitter.com/WordCampUS/status/805156784763715584\">December 3, 2016</a></p></blockquote>\n<p></p>\n<h3>WordPress Foundation to Create WordPress Community Support Subsidiary</h3>\n<p>In order to better accommodate the extraordinary growth of the global community, the WordPress Foundation will be restructuring its management of WordCamps. In 2016 the Foundation took in an estimated $4.3 million, up from $2.8 million in 2015, with 99.9% of those funds related to WordCamps. Mullenweg announced that the 501c nonprofit will move WordCamps to its own company, WordPress Community Support, forming a PBC (Public Benefit Corporation) that is fully owned by the Foundation.</p>\n<p>He explained that if certain things happened at WordCamps it could endanger the overall Foundation, so WordCamps will now be managed under their own entity where the events will have a little more flexibility in how they do things. The Foundation plans to support some like-minded nonprofits that are aligned with the overall education mission of the organization, including <a href=\"http://www.hackthehood.org/\" target=\"_blank\">Hack the Hood</a>, <a href=\"https://archive.org/index.php\" target=\"_blank\">Internet Archive</a>, and <a href=\"http://www.blackgirlscode.com/\" target=\"_blank\">Black Girls Code</a>. In 2017 the Foundation will also begin promoting hackathons to help nonprofits and NGO&#8217;s.</p>\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">The Foundation will focus on supporting like-minded non-profits, education/workshops, and hackathons that benefit non-profits/NGOs. <a href=\"https://twitter.com/hashtag/wcus?src=hash\">#wcus</a> <a href=\"https://t.co/6VfdP82KuM\">pic.twitter.com/6VfdP82KuM</a></p>\n<p>&mdash; WordCamp US (@WordCampUS) <a href=\"https://twitter.com/WordCampUS/status/805158678353608704\">December 3, 2016</a></p></blockquote>\n<p></p>\n<h3>Internationalization is Driving an Increase in Plugin Usage</h3>\n<p>Mullenweg shared a few stats about the plugin directory, which will soon be launching a new design with revamped search functionality. This year has seen a 20% increase in active plugin usage and a 34% increase in plugin downloads totaling 1.48 billion, which Mullenweg attributed to a spike in internationalization efforts over the past year. The number of translation contributors has grown from 5,000 in April 2015 to 17,000 as of November 2016.</p>\n<p>This year there were 1,598 plugins with language packs (up from 314 last year) and 1224 themes with language packs (up from 641 last year). Mullenweg noted that 2/3 of the world speaks one of 12 languages with native fluency and that WordPress covers all of these and many more. In fact, the 4.6 release shipped with support for 50 available languages. WordPress&#8217; top 10 plugins are now 82% complete in the top 12 languages.</p>\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">The top 10 plugins are 82% complete in the top 12 languages. <a href=\"https://twitter.com/hashtag/wcus?src=hash\">#wcus</a> <a href=\"https://t.co/LnpEGv0p7o\">pic.twitter.com/LnpEGv0p7o</a></p>\n<p>&mdash; WordCamp US (@WordCampUS) <a href=\"https://twitter.com/WordCampUS/status/805161007349985280\">December 3, 2016</a></p></blockquote>\n<p></p>\n<h3>Mullenweg Continues to Push Calypso as the Future of the WordPress Interface</h3>\n<p>During the <a href=\"https://wptavern.com/state-of-the-word-2015-javascript-and-api-driven-interfaces-are-the-future-of-wordpress\" target=\"_blank\">2015 State of the Word</a>, Mullenweg gave attendees a homework assignment to &#8220;learn JavaScript deeply&#8221; and <a href=\"https://youtu.be/TX6dXRL-jPU?t=59m14s\" target=\"_blank\">promised to submit a JavaScript patch before 4.7</a> came out. He submitted his first pull request to Calypso yesterday, Automattic&#8217;s from-scratch rewrite of WP admin using Node and React.</p>\n<p>WordPress.com users have widely adopted the new interface for publishing. Mullenweg shared statistics showing that 68% of posts went through Calypso since its launch, 17% via mobile, and 15% through the traditional wp-admin. Mobile app and mobile browser usage are also up. &#8220;We now need to start thinking about mobile devices as the primary way people are going to interact with WordPress in the future,&#8221; Mullenweg said.</p>\n<p>From the time it launched, Mullenweg has said that Calypso, or something like it, would be the future of the WordPress interface. He reiterated this in his 2016 address and has committed some of Automattic&#8217;s JavaScript developers from the Calypso team to contribute full-time to core.</p>\n<p>If Calypso has a chance at becoming a promising replacement for the WordPress admin, its creators will need to broaden its interoperability with the WordPress plugin ecosystem. Mullenweg announced that Calypso is now plugin aware and is open to plugins with over 1M active sites.</p>\n<p>The next step on Calypso&#8217;s roadmap is to bring in support for Automattic&#8217;s plugins &#8211; WooCommerce, Akismet, Jetpack, and VaultPress. Mullenweg said the big focus for 2017 is to make plugins Calypso-aware, starting with a handful of the most popular ones before opening it up to all plugins.</p>\n<p>&#8220;The hope is that Calypso, or something like it, is actually what becomes the interface that drives WordPress,&#8221; Mullenweg said. Since no one is currently building anything like Calypso and targeting core, it looks like the technology behind WordPress.com will be driving the evolution of WordPress in 2017.</p>\n<p>If Mullenweg&#8217;s goal is to make Calypso the primary publishing engine for core WordPress, one of the major challenges will be getting plugin developers on board with building compatibility for what is currently an Automattic product. What are the implications of contributing to greater Calypso adoption? If core brings in the Calypso interface in the future, would Automattic push to include its Reader and other WordPress.com functionality, as it has in the mobile apps? These are questions developers will need to weigh when considering whether to pursue a more application-type experience via the Calypso interface.</p>\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">What\'s next for Calypso? We\'ll start bringing <a href=\"https://twitter.com/automattic\">@Automattic</a>\'s plugins in. <a href=\"https://twitter.com/hashtag/wcus?src=hash\">#wcus</a> <a href=\"https://t.co/RL8ZduRczM\">pic.twitter.com/RL8ZduRczM</a></p>\n<p>&mdash; WordCamp US (@WordCampUS) <a href=\"https://twitter.com/WordCampUS/status/805165388006887424\">December 3, 2016</a></p></blockquote>\n<p></p>\n<h3>WordPress Recommends Hosts Offering PHP 7+ and HTTPS by Default</h3>\n<p>WordPress core continues to update its recommendations and requirements with the help of hosts who are adopting the latest technologies. The <a href=\"https://wordpress.org/about/requirements/\" target=\"_blank\">official recommendation for WordPress hosting</a> is now PHP 7 or higher. After WordPress.com switched to be 100% on PHP 7, Mullenweg said the network&#8217;s performance doubled and CPU load fell in half. Just 4% of self-hosted sites are on PHP 7, but the new recommendation should help move more hosts towards getting their customers updated.</p>\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\"><a href=\"https://t.co/VrQffeOtG0\">https://t.co/VrQffeOtG0</a> has been 100% switched over to PHP7, bringing significant performance improvements. <a href=\"https://twitter.com/hashtag/wcus?src=hash\">#wcus</a> <a href=\"https://t.co/MChiS9QBJh\">pic.twitter.com/MChiS9QBJh</a></p>\n<p>&mdash; WordCamp US (@WordCampUS) <a href=\"https://twitter.com/WordCampUS/status/805164029371158528\">December 3, 2016</a></p></blockquote>\n<p></p>\n<p>Beginning in 2017, WordPress will have progressive enhancement for certain features that are only available for encrypted sites. Mullenweg announced that WordPress.org is now tracking HTTPS adoption. So far 11.45% of active WordPress websites are on HTTPS and <a href=\"https://wptavern.com/wordpress-will-only-recommend-hosting-companies-offering-ssl-by-default-in-2017\" target=\"_blank\">the project will no longer recommend hosts that do not offer it by default</a>. &#8220;We want to bring more of the web to be secure, which is especially important in the post-Snowden era,&#8221; he said.</p>\n<h3>Trying New Things: Major Changes Coming to WordPress&#8217; Core Release Cycle</h3>\n<p>WordPress 4.7 release lead Helen Hou-Sandí joined Mullenweg on stage to highlight a few of the features and improvements that will be coming in the official release on Tuesday. The release is arguably one of the most exciting and successful updates for WordPress in some time, but Mullenweg has a new strategy for core development in 2017.</p>\n<p>&#8220;We&#8217;re at a junction for WordPress where what got us here wont get us there,&#8221; Mullenweg said, after highlighting how the software&#8217;s market share has grown from 13.1% to 27.2% in the past five years.</p>\n<p>Mullenweg proposed a new structure for WordPress releases where design and user testing will lead the way. &#8220;I&#8217;m putting back on the &#8216;product lead&#8217; hat for 2017,&#8221; he said. The upcoming year will have no set release schedule. Mullenweg is upending WordPress&#8217; predictable release cycle in favor of tackling some larger items on the to-do list. He said the focus will be on performance and fixes to existing functionality in three main focus areas: WP REST API, the Editor, and the Customizer.</p>\n<p>Mullenweg said he is particularly interested in getting first-party usage of the REST API in the admin, in hopes of having it evolve to something the project can use for the next decade. If it doesn&#8217;t, he said core will consider bringing it back into a plugin specifically for developers.</p>\n<p>Mullenweg said he feels the editor does not represent the core of WordPress publishing, a sentiment that many users agree with. He hopes to steer it toward a more block-based approach that unifies widgets and includes an interface for shortcodes.</p>\n<p>Mullenweg&#8217;s vision for the Customizer is to see all aspects of WordPress become more instant and provide the same interface and UI affordances as the editor. He announced that Ephox, the company behind TinyMCE, has agreed to work with the project to improve the core editing experience.</p>\n<p>Shifting from a time-based release cycle to one that is more project-based is a major departure from WordPress&#8217; previous release philosophy of &#8220;Deadlines are not arbitrary.&#8221; The project&#8217;s <a href=\"https://wordpress.org/about/philosophy/\" target=\"_blank\">philosophy page</a> identifies the practice of delaying releases for one more feature as a &#8220;rabbit hole&#8221; that has been tested and found to be unpleasant. The new approach to core development makes no guarantee that WordPress will have any releases in 2017.</p>\n<p>If the experiment is not a success, the project&#8217;s days of frequent and fast iteration may be over for awhile. Mullenweg is willing to risk it in hopes of being able to provide more product-based leadership that will distinguish WordPress from its proprietary competitors.</p>\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Words of wisdom from <a href=\"https://twitter.com/kristatippett\">@kristatippett</a>: \"We only learn to walk when we risk falling down&#8211;\" <a href=\"https://twitter.com/hashtag/wcus?src=hash\">#wcus</a> <a href=\"https://t.co/6t5sD6Xjbm\">pic.twitter.com/6t5sD6Xjbm</a></p>\n<p>&mdash; WordCamp US (@WordCampUS) <a href=\"https://twitter.com/WordCampUS/status/805170327726780416\">December 3, 2016</a></p></blockquote>\n<p></p>\n<p>&#8220;I think we&#8217;re trying to counter stagnation,&#8221; Mullenweg said when asked about the new approach to releases in the Q&amp;A segment. &#8220;Even though we&#8217;ve had lots of releases, certain parts of WordPress have stagnated and haven&#8217;t made the leaps that they could.&#8221;  He suggested that being part of a feature plugin team will give developers a way to be involved in more active releases and continue to build momentum for eventual inclusion of their projects in core.</p>\n<p>Mullenweg plans to identify a tech lead and a design lead and will be working with them as the overall product lead. He envisions that when one area of WordPress gets to the point where the software can ship significant user-facing improvements, a release will be born.</p>\n<p>&#8220;We&#8217;re at the point now where the steps WordPress needs to take are more significant to get the other 73% of the web it doesn&#8217;t have yet,&#8221; Mullenweg said.</p>\n<p>In a return to WordPress&#8217; poetic roots, he concluded by reading a poem called <a href=\"https://www.poets.org/poetsorg/poem/praise-song-day\" target=\"_blank\">Praise Song</a> for the Day by Elizabeth Alexander.</p>\n<p>The video of the State of the Word address will soon be available on <a href=\"https://www.youtube.com/channel/UCpJf6LGZ0a4n9Lj4aVt9spg\" target=\"_blank\">WordPress&#8217; new YouTube channel</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:\"Sun, 04 Dec 2016 18:50:17 +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:51:\"Post Status: Matt Mullenweg State of the Word, 2016\";s: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=30865\";s: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:54:\"https://poststatus.com/matt-mullenweg-state-word-2016/\";s: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:16572:\"<p>Matt Mullenweg just completed the 2016 State of the Word presentation at WordCamp US 2016.</p>\n<p>This year, Matt focused on a variety of important topics, including the state of user experience in WordPress today, goals for future interface improvements, a WordPress growth council, internationalization gains, the further proliferation of secure websites, and important changes to the WordPress development process.</p>\n<h3>WordCamp US in Philadelphia</h3>\n<p>Matt began his talk by thanking the city of Philadelphia for being a great host of the first two WordCamp US events, as well as the sponsors, organizers, and volunteers that helped make WordCamp US one of the most successful and smoothest run WordCamps ever.</p>\n<p>He also said the per person cost for WordCamp US is over $500 per person, and that only the sponsors make that happen. And next year, WordCamp US is making its way to Nashville.</p>\n<h3>WordCamps and meetups in 2016</h3>\n<p>There were 116 WordCamps in 2016, and over 36,000 attendees, 2,056 speakers, 1,036 sponsors, and 750 organizers.</p>\n<p>There were 3,193 meetup events in 58 countries. These were attended by more than 62,000 people, or nearly double WordCamps.</p>\n<p>Matt says it&#8217;s the fastest growth there has been for these events in around five or six years. WordCamp Europe actually had more people than WordCamp US this year, which Matt took as a personal challenge for Nashville.</p>\n<p>WordPress.tv publishes more than 26% of all talks, and now there is an official WordPress channel on YouTube, so more and more videos will begin to be available wherever people want to watch them.</p>\n<h3>WordCamp public benefit corporation</h3>\n<p>More than a year ago, work began to separate WordCamps from the WordPress Foundation, in order to make WordPress event organizing more flexible and to better protect the WordPress trademarks that the foundation holds.</p>\n<p>One of the things the new public benefit corporation will be able to do is support like minded non-profits, and in 2017 will be sponsoring three: Hack the Hood, the Internet Archive, and Black Girls Code.</p>\n<p>Also, the organization will start to promote hackathons for non-profits and NGOs.</p>\n<h3>WordPress&#8217;s extended family</h3>\n<p>Matt gave a shoutout to WordPress&#8217;s &#8220;cousins&#8221; like BuddyPress and bbPress, highlighting a lot of features that have gone into the software in the last year.</p>\n<h4>BuddyPress and bbPress</h4>\n<p>WordPress.org itself uses BuddyPress and bbPress. For ages, it&#8217;s used outdated versions of bbPress, and in the past year launched a new support form that uses modern bbPress and WordPress profiles use bbPress. Matt says projects like these will get new support and engagement over the next year.</p>\n<h4>HackerOne</h4>\n<p>HackerOne is a security website that allows software organizations to offer bounties to hackers for responsibly disclosing security bugs.</p>\n<h4>GlotPress</h4>\n<p>GlotPress has had a big transformation in the last year, as it is no longer standalone software on top of BackPress, but rather a plugin for WordPress. If you&#8217;ve never been to <a href=\"https://translate.wordpress.org/\">translate.WordPress.org</a>, you&#8217;ve seen GlotPress in action, and it&#8217;s pretty amazing.</p>\n<h4>WordPress.org</h4>\n<p><a href=\"https://wordpress.org\">WordPress.org</a> is a central hub for the WordPress community. Matt highlighted some of the work that&#8217;s been going on this past year around languages, support forums, and more. He also says that new work will be going into P2/O2, which are used for the <a href=\"https://make.wordpress.org\">Make WordPress</a> blogs.</p>\n<p>And he gave attention to the new WordPress plugin repository, which finally uses WordPress itself, and has a whole new design. You can see the new design in action on the new <a href=\"https://wordpress.org/plugins-wp/\">demo site</a>, which should role out to the main Plugins directory soon.</p>\n<h3>WordPress in all languages</h3>\n<p>WordPress 4.6 was available in 50 languages the day it was released. And the top 10 plugins are 82% translated in the top 12 languages used in WordPress.</p>\n<p>Language packs have been a huge help in helping translate plugins as a community project on Translate.WordPress.org, rather than having to ship translations inside the plugin itself.</p>\n<p>1,598 plugins are now using language packs, and 1,224 themes use them. This is huge for the future of WordPress working great in every language.</p>\n<p>Also, in WordPress 4.7, we&#8217;ll see per-user language choices.</p>\n<h3>Learning JavaScript Deeply</h3>\n<p>Last year&#8217;s homework for the community was to learn JavaScript deeply. He says that WordPress is 28% JavaScript now, which hasn&#8217;t changed, but he says we&#8217;ve still made a lot of progress.</p>\n<p>Matt gave himself a personal challenge to learn JavaScript, and he said that 364 days into this challenge, he submitted his first patch to Calypso (Automattic&#8217;s WordPress administration interface). He said, learning JavaScript and becoming as native with JavaScript as with PHP is going to be really important &#8212; especially as the REST API gets included in WordPress 4.7.</p>\n<h3>WordPress Growth Council</h3>\n<p>Matt recently posted about a WordPress Growth Council to help WordPress grow and maintain marketshare.</p>\n<p>He says that what got WordPress to where it is today, won&#8217;t get WordPress to where it can be tomorrow. He blogged about this <a href=\"https://ma.tt/2016/12/wp-growth-council/\">new growth council</a>, which folks can apply for, which will help guide product direction in WordPress going forward.</p>\n<p>Matt actually said in Post Status Slack recently that if WordPress doesn&#8217;t make changes to the interface and otherwise, he&#8217;d expect WordPress marketshare would begin to decline by 2018.</p>\n<h3>HTTPS &amp; PHP7</h3>\n<p>11.45% of WordPress websites are now served via HTTPS. Matt talked last year about how LetsEncrypt and PHP7 were going to be a big deal, but they&#8217;ve turned out to be, &#8220;huge.&#8221; And WordPress will now start applying progressive enhancement techniques for WordPress websites.</p>\n<p>WordPress.com is now fully on PHP7, which he says was an enormous accomplishment. He&#8217;s also announced that <a href=\"https://wordpress.org/about/requirements/\">WordPress.org will now recommend</a> PHP7 by default.</p>\n<h3>Calypso</h3>\n<p>Matt gave some updates on <a href=\"https://developer.wordpress.com/calypso/\">Calypso&#8217;s</a> adoption since it was released last year. He says that 68% of posts on WordPress.com are now written in Calypso. 17% of posts are written via a mobile device, and only 15% of users are using the WordPress admin. For reference, Calypso is the default method of publishing on WordPress.com now, so that includes the desktop website, desktop app, and mobile app.</p>\n<p>Matt says that building Calypso is like, &#8220;building a plane while it&#8217;s flying.&#8221; And while it&#8217;s hard, he says it&#8217;s worth it, but it&#8217;s like rebuilding WordPress &#8212; which took 13 years to do &#8212; in only two years.</p>\n<p>The future of Calypso includes making it &#8220;plugin aware&#8221;, so that prominent plugins (most Automattic plugins included) would be recognized and manageable via Calypso.</p>\n<p>In fact, Calypso is plugin aware today, as the merge has just happened. So now plugins can include custom code to be manageable via Calypso. This is an interesting move to me, especially since Calypso &#8212; while open source &#8212; isn&#8217;t an official WordPress project, but rather an Automattic-owned interface.</p>\n<p>Matt says that someday he&#8217;s like to see Calypso, &#8220;or something like it,&#8221; eventually to become the WordPress interface.</p>\n<h3>Core releases in 2016</h3>\n<p>WordPress 4.5-4.7 will have been released by the end of 2016. Matt says, &#8220;this is very much a year about doing things differently.&#8221; And in that spirit, he&#8217;s pre-announcing the jazz musician in the release. I&#8217;m sure Jeffro will be pleased <img src=\"https://s.w.org/images/core/emoji/72x72/1f609.png\" alt=\"😉\" class=\"wp-smiley\" /> WordPress 4.7 will be named &#8220;Vaughan&#8221;, after jazz musician Sarah &#8220;Sassy&#8221; Vaughan.</p>\n<p>Helen Hou-Sandi came to the stage to discuss WordPress 4.7 in more detail.</p>\n<h3>WordPress 4.7</h3>\n<p>WordPress 4.7 will include a variety of features, and will be released on Tuesday, December 6th.</p>\n<h4>New default theme</h4>\n<p>WordPress includes a new default theme that with a multi-section home page that&#8217;s a brand new WordPress feature. And generally Twenty Seventeen has a lot more broad base appeal for businesses and non-blogging applications than many past themes.</p>\n<h4>Theme setup process</h4>\n<p>Helen really wanted to focus on user interactions in WordPress 4.7. She used the example of her &#8220;tweet storm&#8221; about what it&#8217;s like to change a theme, which took dozens of steps and included a lot of unclear processes.</p>\n<p>Themes in 4.7 can define content that ships with the theme, such as a nav menu setup, sample page content, a password protected page, and other content that would be utilized in the theme. This will be a massive improvement in the initial theme setup experience that I love to see in 4.7.</p>\n<h4>Better menu handling</h4>\n<p>WordPress 4.7 includes better menu building that will also assist the new user experience. Now when you are building a menu in the customizer, you can add a page right from the menu screen, so that if you haven&#8217;t yet written your &#8220;about&#8221; page or whatever else, you&#8217;ll be able to create that draft straight from the menu screen, so the user doesn&#8217;t have to know exactly which flow is necessary to setup their site.</p>\n<h4>&#8220;Sleeper hits&#8221;</h4>\n<p>Helen highlights sleeper features, like thumbnail previews for PDFs and user dashboard languages so a user can use a different language than is set by the site administrator.</p>\n<h4>The WordPress REST API</h4>\n<p>To big applause, Helen noted the inclusion of the WordPress REST API Content Endpoints in 4.7. She says that she&#8217;s excited to take the momentum and excitement around the API and turn it into more real-world projects where people test and put it to practice.</p>\n<h4>Deputy leads</h4>\n<p>Jeff Paul and Aaron Jorbin were the deputy release leads for 4.7, and more than 475 contributors submitted code to 4.7. Over 200 of those contributors are first time contributors.</p>\n<h4>Sneak preview video</h4>\n<p>To end the preview of WordPress 4.7, Helen shared a sneak preview of the WordPress 4.7 video, created by friend Rami Abraham, that highlights &#8220;Carly&#8221;, who is a small business owner building her business website. The video shows a couple more great sleeper hits, like customizer preview icons to help editing, and video headers.</p>\n<h4>That&#8217;s WordPress 4.7</h4>\n<p>WordPress 4.7, I believe, is going to be one of the best releases we&#8217;ve seen in a long, long time. It&#8217;s jam packed, and while I&#8217;m sure we&#8217;ll have plenty of follow-on work, there&#8217;s been a hugely ambitious effort with tons of awesome contributors. None of it would&#8217;ve happened without Helen.</p>\n<h4>WordPress REST API and examples</h4>\n<p>After the video, Matt came back on stage.</p>\n<p>Matt highlighted some of the REST API examples, including the new <a href=\"https://www.guggenheim.org/\">Guggenheim Museum</a> website and <a href=\"http://www.vocativ.com/\">Vocativ</a>, which both use the new API, and are powered by Content Endpoints.</p>\n<h3>A look at the past and future</h3>\n<p>Matt spent a few minutes reflecting over this past, and busy, year; but also spent time discussing the past few years and what&#8217;s in store in the future.</p>\n<p>Matt recognized the &#8220;predictable&#8221; release cycle that we moved to around WordPress 3.8, and how that&#8217;s been a huge benefit for the platform in general.</p>\n<p>In the past five years, we&#8217;ve seen WordPress go from 13.1% to 27.2%, and this kind of marketshare for a CMS is &#8220;unprecedented.&#8221;</p>\n<p>He says, &#8220;What can we try next?&#8221; In other words, he wants to do things differently going forward: &#8220;What got us here, won&#8217;t get us there.&#8221; In order to do this, he&#8217;s proposing a new structure for core development.</p>\n<p>Matt said he wants to see a simpler, faster UX, while simultaneously making it more powerful. This has been my number one goal for WordPress the last few years, so I&#8217;m thrilled to see him highlight it. In the coming releases, he, &#8220;wants to see design leading the way.&#8221;</p>\n<p>In 2017, Matt says he&#8217;s going to be a heavily involved project lead again.</p>\n<h3>No set major releases in 2017</h3>\n<p>Matt made a huge announcement by saying that there will be no set releases in 2017. WordPress Core will continue to move forward, managing maintenance and other items, but will shift to three main focuses for features that will dictate the next several major releases:</p>\n<h4>Number 1) The WordPress REST API</h4>\n<p>He says we need shift from thinking about the input, to measuring the output. He wants the conversation of success metrics to get beyond the &#8220;thousands&#8221; when, &#8220;WordPress is in the tens of millions.&#8221;</p>\n<p>Matt sees powering the WordPress admin with the REST API as a core focus for 2017. In addition, this effort will include shipping authentication tools in WordPress core, so that external applications can connect to WordPress websites. He says if we can&#8217;t move forward with this goal, then we need to consider making the API a plugin again.</p>\n<h4>Number 2) The Editor</h4>\n<p>Matt wants to see a lot of work on the WordPress editing experience. Matt says he showed &#8220;block-faced editor&#8221; in a State of the Word slide a few years ago, and calls it his &#8220;white whale&#8221;.</p>\n<p>He says we need to be candid about our shortcomings with WordPress so that we can more effectively move forward. Andrew Ozz and Ella Van Isuelde have been massively influential on the editor improvements we&#8217;ve seen over the past few years, and their contributions will be huge for moving this goal forward.</p>\n<h4>Number 3) The Customizer</h4>\n<p>&#8220;The customizer is not yet fast enough, and flexible enough, to meet our current needs.&#8221; He&#8217;s excited to see all the new work going into the customizer, but knows there&#8217;s a lot of work to do to take the customizer to the next step.</p>\n<h3>How to get these goals accomplished</h3>\n<p>He says that new major versions of WordPress will not be released until these features are ready. He says that as each project is completed, there will be a major release to go around it.</p>\n<p>I&#8217;m fascinated by this new approach. It&#8217;s like taking the current feature project framework and taking it multiple levels up. It&#8217;s definitely a way to shake things up, and that may be great, considering so many people in the WordPress space enjoy complaining about the slow process that is WordPress feature development.</p>\n<p>Matt, as project lead, says he&#8217;ll personally be taking these on as the lead. And work will begin immediately to make it happen.</p>\n<p>So, I don&#8217;t know if the next release will be called WordPress 4.8, or when it will be, but I&#8217;d be shocked if it&#8217;s four months like past releases. But I guess we&#8217;ll see a lot of minor releases for all the other aspects of core development.</p>\n<p>Matt says he thinks we&#8217;ll fall while we learn to walk in this new way, and that&#8217;s okay.</p>\n<hr />\n<p>I have to admit, these are some pretty surprising announcements. I&#8217;m excited to dig more into the particulars over the coming weeks, but I do think this serves as a worthwhile and important jolt into WordPress core development. That&#8217;s not to say I think WordPress development has been bad, I think it&#8217;s been great.</p>\n<p>Matt finished by reading a poem by Elizabeth Alexander, titled, &#8220;<a href=\"https://www.poetryfoundation.org/poems-and-poets/poems/detail/52141\">Praise Song For The Day</a>&#8221; that marked a fitting end to the talk.</p>\n<p>I think the key takeaway should be like he said: &#8220;what got us here, won&#8217;t get us there.&#8221; Let&#8217;s see how this goes.</p>\n<p><em>Photo credit: Brian Richards for Post Status.</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, 03 Dec 2016 22:20:17 +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:\"Brian Krogsgard\";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:26:\"Matt: WordCamp Live Stream\";s: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=46945\";s: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/2016/12/wordcamp-live-stream/\";s: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:298:\"<p>Later today (3:45pm ET) I&#8217;ll deliver my annual State of the Word speech, which I&#8217;m very excited about. If you&#8217;d like to watch remotely, this year live stream tickets are <strong>free</strong> and <a href=\"https://2016.us.wordcamp.org/live-stream/\">you can tune in here</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, 03 Dec 2016 11:54:15 +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: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:72:\"WPTavern: DigitalCube Launches Shifter, Serverless Hosting 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=64157\";s: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/digitalcube-launches-shifter-serverless-hosting-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:3811:\"<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2016/12/shifter-logo.png?ssl=1\"><img src=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2016/12/shifter-logo.png?resize=1025%2C419&ssl=1\" alt=\"shifter-logo\" class=\"aligncenter size-full wp-image-64169\" /></a></p>\n<p><a href=\"https://en.digitalcube.jp/\" target=\"_blank\">DigitalCube</a> launched <a href=\"https://getshifter.io/\" target=\"_blank\">Shifter</a> at WordCamp US today, the first serverless hosting product for WordPress. The Japanese development company specializes in WordPress and AWS integrations. Shifter was built by the same team behind the company&#8217;s <a href=\"https://amimoto-ami.com/\" target=\"_blank\">Amimoto</a> cloud hosting platform.</p>\n<p>Shifter converts WordPress sites into a series of static HTML files and serves them up via a global CDN (AWS) for high performance hosting, eliminating the burden of software maintenance and server updates. The product targets websites that have a low frequency of updates, such as business or portfolio sites, as well as maintenance and support providers.</p>\n<p>Shifter allows site owners to turn WordPress on or off in its administration center. The service is a hybrid of a WordPress static site generator and a hosting solution. Shifter hosts the static files it creates and allows users to connect their domains. It leaves the standard WordPress management and administration workflow intact and compiles a new version of the static files anytime users update content inside WordPress. The service starts at $30/month and offers support for unlimited sites.</p>\n<a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/12/shifter-dashboard.png?ssl=1\"><img src=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/12/shifter-dashboard.png?resize=1025%2C652&ssl=1\" alt=\"Shifter dashboard\" class=\"size-full wp-image-64166\" /></a>Shifter dashboard\n<p>As the first commercial product to provide serverless WordPress hosting, Shifter offers a unique way to tackle the security concerns that plague WordPress and its plugins and themes. Because the software is used by more than 27% of all websites, it has become a big target for hackers and spammers alike. Shifter&#8217;s creators see WordPress as a prime candidate for serverless architecture.</p>\n<p>DigitalCube team members met the Philadelphia-based <a href=\"http://j2made.com/\" target=\"_blank\">J2 Design</a> company at last year&#8217;s WordCamp US and partnered with them to improve their branding, copy writing, and approach.</p>\n<p>&#8220;At that time, we were having problems in design, branding, and communication,&#8221; product liaison Shinichi Nishikawa said. &#8220;The name &#8216;Amimoto&#8217; was originally a Japanese word and was difficult for people to pronounce or remember. We saw their work and asked them if we could form a partnership.&#8221;</p>\n<p>Together the Amimoto and J2 Design teams took the project from concept to launch in about three months. They built Shifter with AWS, Docker, and the Serverless Framework. The development team behind the project also supports and manages sites such as The Japan Times, AOL Japan, and Mazda. They frequently contribute to open source projects, including WordPress, Serverless Framework, and WP-CLI.</p>\n<p>Shifter has exited beta and the company has <a href=\"https://www.kickstarter.com/projects/225627578/shifter-serverless-hosting-for-wordpress\" target=\"_blank\">launched a Kickstarter campaign</a> with a $10,000 goal to fund future development on the project&#8217;s <a href=\"https://getshifter.io/blog/development-roadmap/\" target=\"_blank\">roadmap</a>, including domain mapping, a way to visualize usage of bandwidth and storage, multi-factor authentication, advanced scheduling, and WP-CLI support.</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:\"Sat, 03 Dec 2016 03:44:56 +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: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:23:\"Matt: WP Growth Council\";s: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=46933\";s: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:40:\"https://ma.tt/2016/12/wp-growth-council/\";s: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:1594:\"<p>In the WordPress world, when we look back an 2016 I think we&#8217;ll remember it as the year that we awoke to the importance of marketing. WordPress has always grown organically through word of mouth and its passionate community, but the hundreds of millions being spent advertising against WP has started to have an impact, especially for folks only lightly familiar with us.</p>\n<p>I&#8217;ve started to hear about a number of folks across many WordPress companies and industries working on this from different angles, some approaching it from an enterprise point of view and some from a consumer point of view. There&#8217;s an opportunity for learning from each other, almost like a mastermind group. As the survey says:</p>\n<blockquote><p>Never have there been more threats to the open web and WordPress. Over three hundred million dollars has been spent in 2016 advertising proprietary systems, and even more is happening in investment. No one company in the WP world is large enough to fight this, nor should anyone need to do it on their own. We&#8217;d like to bring together organizations that would like to contribute to growing WordPress. It will be a small group, and if you or your organization are interested in being a part please fill out the survey below.</p>\n<p>By working together we can amplify our efforts to bring open source to a wider audience, and fulfill WordPress&#8217; mission to truly democratize publishing.</p></blockquote>\n<p>If this sounds interesting to you, <a href=\"http://mcm.polldaddy.com/s/wordpress-growth-council\">apply using this survey</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:\"Fri, 02 Dec 2016 16:22:51 +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:89:\"WPTavern: WordPress Will Only Recommend Hosting Companies Offering SSL by Default in 2017\";s: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=64081\";s: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-will-only-recommend-hosting-companies-offering-ssl-by-default-in-2017\";s: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:3276:\"<p>In October, <a href=\"https://twitter.com/letsencrypt/status/788449815986262016\">Let&#8217;s Encrypt</a> was managing more than 10 million active SSL certificates. That <a href=\"https://twitter.com/letsencrypt/status/802972766525865984\">number doubled to 20 million</a> in November as large  providers continue to partner with the organization to manage their customers&#8217; certificates.</p>\n<p>In 2014, Google announced that HTTPS <a href=\"https://security.googleblog.com/2014/08/https-as-ranking-signal_6.html\">is a ranking factor</a>. Earlier this year, the Google Chrome security team <a href=\"https://wptavern.com/chrome-to-add-security-warning-to-http-sites-beginning-2017\">announced</a> that Chrome 56 will mark HTTP sites that transmit passwords or credit cards as insecure.</p>\n<p><img class=\"aligncenter wp-image-60902 size-full\" src=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2016/09/chrome-http-warning.png?resize=640%2C251&ssl=1\" alt=\"chrome-http-warning\" /></p>\n<p>In 2017, managed WordPress hosting companies will have one more reason to enable SSL by default for new accounts. In a <a href=\"https://wordpress.org/news/2016/12/moving-toward-ssl/\">post on the WordPress.org blog</a>, Matt Mullenweg, co-founder of the open source WordPress project, explains what the project is going to do to encourage HTTPS by default across the web.</p>\n<p>&#8220;Early in 2017, we will only promote hosting partners that provide a SSL certificate by default in their accounts,&#8221; Mullenweg said.</p>\n<p>&#8220;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.&#8221;</p>\n<p>Unrelated to SSL, Mullenweg also commented on the significant performance improvements in PHP7 and will consider whether hosting partners use PHP7 by default for new accounts in 2017.</p>\n<p>These moves are a continued effort by Mullenweg to secure and encrypt as much of the web as possible. Earlier this year, WordPress.com <a href=\"https://en.blog.wordpress.com/2016/04/08/https-everywhere-encryption-for-all-wordpress-com-sites/\">encrypted all of its sites</a> using Let&#8217;s Encrypt.</p>\n<p><a href=\"https://letsencrypt.org/\">Let&#8217;s Encrypt</a> is an initiative which aims to encrypt 100% of the web by making trusted certificates available to everyone at no cost. It&#8217;s a 501(c)(3) nonprofit and recently launched a <a href=\"https://letsencrypt.org/2016/11/01/launching-our-crowdfunding-campaign.html\">crowdfunding campaign</a> to cover the cost of one month of operations totaling $200K.</p>\n<p>Josh Aas, ISRG Executive Director, explains the reasons behind the crowdfunding campaign, &#8220;First, there is a gap between the funds we’ve raised and what we need for next year,&#8221; Aas said.</p>\n<p>&#8220;Second, we believe individual supporters from our community can come to represent a significant diversification of our annual revenue sources, in addition to corporate sponsorship and grants.&#8221;</p>\n<p>To learn more about the campaign and to contribute, visit <a href=\"https://letsencrypt.org/2016/11/01/launching-our-crowdfunding-campaign.html\">Let&#8217;s Encrypt&#8217;s Indiegogo</a> page.</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, 01 Dec 2016 21:10:54 +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: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:27:\"Dev Blog: 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=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:\"\";}}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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1626:\"<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&#8217;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>&nbsp;</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:\"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: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: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:71:\"WPTavern: Flywheel Acquires WordPress Local Development Tool Pressmatic\";s: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=64057\";s: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/flywheel-acquires-wordpress-local-development-tool-pressmatic\";s: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:3671:\"<p>Flywheel has acquired Pressmatic, a local WordPress development application for OS X. The application was created by <a href=\"https://twitter.com/claygriffiths\" target=\"_blank\">Clay Griffiths</a>, who will be joining Flywheel to support the product as part of the acquisition.</p>\n<p><a href=\"https://pressmatic.io/\" target=\"_blank\">Pressmatic</a> launched in July 2016 with a $129 price tag but Flywheel is opening it up for free for all users. The company is rebranding the product as &#8220;Local by Flywheel&#8221; and plans to create a Windows application, add off-site backups for local sites, and sell premium support.</p>\n<p>“From the start, the application encompassed so many of Flywheel’s core values: speed, simplicity, and allowing designers and developers the freedom to do what they love,&#8221; Flywheel CEO and co-founder Dusty Davidson said. &#8220;It’s a perfect fit.”</p>\n<p>Griffiths told the Tavern that he is excited for the opportunities that Flywheel can provide for Local going forward. &#8220;I originally built Pressmatic because I saw the gap that existed for a truly great local WordPress development experience, and now with the resources and team at Flywheel we&#8217;re set to really build something great,&#8221; Griffiths said. &#8220;I certainly could have continued to go at it alone, but after meeting the team it became clear that the right answer was to partner up and really go big.&#8221;</p>\n<h3>Griffiths Plans to Continue Headway Themes Support and Development in his Spare Time</h3>\n<p>The acquisition comes just months after Griffiths, who is also the co-founder of Headway Themes, was embroiled in the controversy surrounding the company&#8217;s lack of communication and decline in support. Many potential customers were turned off to Pressmatic as the result of Griffith&#8217;s lack of support for Headway Themes&#8217; customers and its mistreatment of employees. They company publicly confirmed its financial troubles and <a href=\"https://wptavern.com/headway-themes-confirms-financial-difficulties-issues-apology-to-customers\" target=\"_blank\">apologized to customers</a> after <a href=\"https://wptavern.com/former-headway-themes-employee-goes-public-staff-has-not-been-paid-and-customers-are-not-receiving-support\" target=\"_blank\">a former employee went public</a> about not having been paid and customers not receiving support.</p>\n<p>When asked how the Pressmattic acquisition affects Headway Themes customers, Griffiths confirmed that he will continue to be involved with support and development of Headway.</p>\n<p>&#8220;This acquisition and employment will provide myself and my family much more stability than we&#8217;ve had in a long time, and will allow me to better focus on Headway in my spare time,&#8221; Griffiths said. &#8220;This includes rolling out the upcoming 4.1 release, and working hard to make sure the support and other outstanding issues are resolved for all our customers.&#8221;</p>\n<p>Pressmatic is used by hundreds of WordPress developers and is Flywheel&#8217;s first acquisition. The application was built on top of <a href=\"http://electron.atom.io/\" target=\"_blank\">Electron</a>, an app framework that enables developers to build cross-platform desktop apps with JavaScript, HTML, and CSS. It allows users to run apache or nginx, switch between PHP versions for any site, create multisite installations (including subdomain setups), and create remote tunnels to share local development. Mac users can download the new Local by Flywheel application at <a href=\"http://local.getflywheel.com\" target=\"_blank\">local.getflywheel.com</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, 01 Dec 2016 15:03:52 +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:46:\"HeroPress: WordPressing The Hard Way In Malawi\";s: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=1502\";s: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:58:\"https://heropress.com/essays/wordpressing-hard-way-malawi/\";s: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:12291:\"<img width=\"960\" height=\"480\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2016/11/113016-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: WordPress has allowed me to find income I otherwise would not have any way in hopes of earning.\" /><p>I am a self-taught graphic designer/ motion designer turned web designer and aspiring web developer from Malawi, Africa. I am a digital tinkerer who has fallen in love with and currently gone steady with WordPress. Still, the journey is rough.</p>\n<p>A little about my home country before you hear my story…</p>\n<h3>Malawi</h3>\n<p><a href=\"https://www.google.com/search?q=malawi\"><img class=\"alignright wp-image-1507\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2016/11/googleit.gif\" alt=\"Gif of guy reading book, another guy slapping it away, saying Google It\" width=\"295\" height=\"166\" /></a>Malawi, is at the time of my writing, the poorest country in the world. A tiny land locked country with a population of 17 million, AND still largely rural (about 75%) and struggling to develop.</p>\n<blockquote><p>The average entry level monthly pay for skilled jobs is about $110.</p></blockquote>\n<p>You are really fortunate if you are employed, young, working in the creative industry and earning somewhere near $300 a month. I doubt if anybody <em>actually</em> <strong>employed</strong> by someone in the design, creative and web services industry earns this much.</p>\n<p>That being said, I have been a freelance graphic designer since about 2011, doing gigs from my dorm room in college and my bedroom at home. Earnings from my freelance gigs increased my interest in entrepreneurship and I soon started entertaining the thought of starting my own creative agency or media powerhouse.</p>\n<h3>HOW I FIRST CAME INTO CONTACT WITH WORDPRESS</h3>\n<p>I first came into contact with WordPress in 2014 when a friend of mine from University were planning to start a local tech blog. Before WordPress, all I had was basic and outdated HTML knowledge I learned from high school and some knowledge in Adobe Dreamweaver.</p>\n<p>In 2014 very few websites in Malawi actually ran on WordPress as far as I remember. Most of the websites made in Malawi looked pretty archaic. With what to me was my partners expertise with WordPress Our blog looked like it came from the future. My partner knew where to get the themes (I did not know how he did it then, and still understood very little about WordPress).</p>\n<p>In a little while, ecstatic from the praise and positive feedback from the blog we decided to pursue the idea of opening our own content and media publishing outfit.</p>\n<p>Because our blog looked spectacular we got a few web redesign jobs thanks to the exposure the blog brought. We were ecstatic.</p>\n<p>Unfortunately, we both had very little administrative and business skills we could not maintain the business and we ended up going our separate ways.</p>\n<p>Fast forward post college, out of my first real job that I got in the TV industry ( terrible pay, overworked, and not being paid for about 5 months!) and failing to get more rewarding gigs as my creative agency start up side was cash strapped.</p>\n<p><img class=\"alignright wp-image-1509\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2016/11/rowan.gif\" alt=\"Rowan Atkinson looking shocked\" width=\"355\" height=\"200\" />I finally took it upon myself to learn the ins and outs of WordPress. I learned how to install WordPress on a server and did some research on customising Themes. That knowledge alone and presto: I got my first web design clients and started making earning nearly as much as I did at my first job, sometimes a little more, when I get fortunate  some times I even earn three times as much as I used to in a month.</p>\n<blockquote><p>It only took a very short while for me to realise that free WordPress themes can only go so far, especially with my limited code skills.</p></blockquote>\n<p>For most WordPress designers in Malawi, all we did was get nulled themes and customise them. This is the way most WordPress designers in developing countries survive. This is also why I would like to build my own themes from scratch, to avoid the situation where I have to use pirated themes that are not only unsafe for clients but unethical. In addition, I know learning to code will also set me apart from my competition.</p>\n<p>Which leads me to the next bit….</p>\n<h3>HOW THE LACK OF AN ONLINE PAYMENT SOLUTIONS AFFECTS DESIGNERS/DEVELOPERS IN COUNTRIES LIKE MINE</h3>\n<p>My country apparently has PayPal “available”, but the truth is you cannot get yourself a credit card to be able to join creative markets, and do online courses in order to improve your WP skills. The banks here only issue out credit cards to people who travel overseas or apparently have millions in their bank account.</p>\n<p><a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2016/11/city.png\"><img class=\"aligncenter wp-image-1510 size-large\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2016/11/city-1024x576.png\" alt=\"City Street in Malawi\" width=\"960\" height=\"540\" /></a></p>\n<p>Even so, most of the bank personnel themselves know very little about credit cards and let alone online payment solutions. It is often very frustrating to talk to bank personnel concerning this. Wire transfer and Western Union is still the most popular way to make transactions for goods and services. So many services that we would like to access: plugins, features, etc related to the WP community are far from our reach. The learning and growth often stops the moment you see the “$” sign on websites offering WP solutions and themes.</p>\n<h3>THE CHALLENGES OF BEING SELF TAUGHT IN THE DEVELOPING WORLD</h3>\n<p>As I mentioned earlier, I do not have any programming background, I have always been more of a creative and artsy kind of person. Sure I have an eye for design but in order to grow, I need to learn to code PHP, and PHP hard and it is not easy to do so as premium online courses are inaccessible.</p>\n<p>When you are in a position like mine, you are already deep in freelancing and getting a job is currently not the best option because the pay is terrible for people in your industry, and you have to keep on earning, plus make time to learn code. Getting to actually code well is a chore as you have to mind all the other obligations.</p>\n<p>Between the time to make pitches to clients, finish up graphic design projects, deal with our current load shedding program (we only have about 5 hours of power a day on average now! ) is something I am barely managing.</p>\n<p>Teaching myself code, HTML, CSS,  JavaScript, and PHP for WordPress is something I am determined to do and always in the process of. I try my best to make time to learn. I reckon this would have been easier if I studied a programming course in college but well, here I am.</p>\n<h3>WHAT THE WORDPRESS COMMUNITY LOOKS LIKE TO ME</h3>\n<p>I will be honest, I have only gotten in touch with the actual WordPress community only very recently. Of course I search for solutions from blogs about WordPress but never actually talked to or asked anyone from the community for a solution. The most personal interaction I have ever had with anyone from the WordPress community is when I talked to <a href=\"https://twitter.com/topher1kenobe\">Topher</a> when I applied to write a post for HeroPress.</p>\n<p>I often just isolated myself from any attempt to interact at all because of the glass ceiling. There are these feelings you get; these things you tell yourself when you know you can never truly harness the power of WordPress because of your lack of a way to pay for stuff online: You could never be half as good as anyone in developed countries, you will never ever get premium support, you can never be eligible for premium support. I reckon these feelings are worse for people teaching them self how to code like me.</p>\n<p>So when I came across a tweet from <a href=\"https://twitter.com/heropress\">@HeroPress</a> about a post that talked about how WordPress marginalises some, it piqued my interest. It was a post from a WordPress developer in India, and it detailed how people from developing countries could never paid the same way someone from the developed countries would for the same skills or services. I totally relate and knew right away I need to sign up to tell my story.</p>\n<blockquote><p>WordPress designers and wanna-be developers like me (who cannot access online pay systems) often feel side lined.</p></blockquote>\n<p>When it comes to classes, we stop at the freebies portion, often than not our Google Searches look like this</p>\n<p>“Free image slider plugins for WordPress” “Free WordPress tutorials”</p>\n<p>I wish more developers, or people with more global privilege would consider alternate ways for users who cannot pay for courses, themes, or plugins would make. We may not seem to be present, but we are there. I would love to see more WordPress tutors and developers open up ways to accommodate aspiring learners like me who cannot access plugins, courses and themes, to be able to give back and to participate at another level.</p>\n<p>Many wannabe developers who come from situations similar to mine often shy away from participating with the WordPress community or getting deeper with WordPress because in the ways I have mentioned above, the WordPress community feels like it belongs to those only privileged enough on the internet.</p>\n<p>WordPress has allowed me to find income I otherwise would not have any way in hopes of earning. Sure it is lower by global standards, but it makes a huge difference where I live. This is about to be my second year with WordPress, and coming across members of the community with varying backgrounds through HeroPress’ stories tells me there is hope for WordPress users like me.</p>\n<blockquote><p>I believe through sharing stories like these not only will WordPress products/services be more accessible but aspiring self-taught developers like me will also find more courage in reaching out to connect with others out there.</p></blockquote>\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: WordPressing The Hard Way In Malawi\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=WordPressing%20The%20Hard%20Way%20In%20Malawi&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fwordpressing-hard-way-malawi%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: WordPressing The Hard Way In Malawi\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fwordpressing-hard-way-malawi%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%2Fwordpressing-hard-way-malawi%2F&title=WordPressing+The+Hard+Way+In+Malawi\" rel=\"nofollow\" target=\"_blank\" title=\"Share: WordPressing The Hard Way In Malawi\"></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/wordpressing-hard-way-malawi/&media=https://heropress.com/wp-content/uploads/2016/11/113016-150x150.jpg&description=WordPressing The Hard Way In Malawi\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: WordPressing The Hard Way In Malawi\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/wordpressing-hard-way-malawi/\" title=\"WordPressing The Hard Way In Malawi\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/wordpressing-hard-way-malawi/\">WordPressing The Hard Way In Malawi</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, 30 Nov 2016 12:00: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Robert Cheleuka\";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:73:\"WPTavern: Elizabeth Shilling Awarded the Kim Parsell Memorial Scholarship\";s: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=64044\";s: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://wptavern.com/elizabeth-shilling-awarded-the-kim-parsell-memorial-scholarship\";s: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:1621:\"<p>The WordPress Foundation <a href=\"https://2016.us.wordcamp.org/2016/11/24/announcing-the-kim-parsell-memorial-scholarship-winner-elizabeth-shilling/\">has announced</a> that <a href=\"http://www.orcawebperformance.com/\">Elizabeth Shilling</a>, one of three co-founders of the <a href=\"https://womenwhowp.org/\">Women Who WP </a>meetup group, is the second recipient of the <a href=\"https://make.wordpress.org/community/2015/01/15/remembering-kim-parsell/\">Kim Parsell Memorial Scholarship</a>.</p>\n<p>The scholarship was created in 2015 to remember Kim Parsell and provide an opportunity for a woman who may not have the financial means to attend the largest WordCamp in the US.</p>\n<a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2016/11/bridget-elizabeth.jpeg?ssl=1\"><img class=\"size-full wp-image-64047\" src=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2016/11/bridget-elizabeth.jpeg?resize=1025%2C769&ssl=1\" alt=\"Bridget Willard on the left with Elizabeth Shilling on the right\" /></a>Bridget Willard on the left with Elizabeth Shilling on the right\n<p>Shilling is a former biology teacher, business owner, plugin developer, and feminist leader. According to the <a href=\"https://2016.us.wordcamp.org/2016/11/24/announcing-the-kim-parsell-memorial-scholarship-winner-elizabeth-shilling/\">announcement</a>, Shilling was chosen for her dedication to open source and being a champion for women in leadership. The scholarship covers the cost of a WordCamp ticket, flight, and lodging. If you see Shilling at WordCamp US this weekend, be sure to congratulate her.</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, 29 Nov 2016 22: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: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: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:77:\"WPTavern: PDF Image Previews Among the Improvements to Media in WordPress 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:29:\"https://wptavern.com/?p=64026\";s: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:88:\"https://wptavern.com/pdf-image-previews-among-the-improvements-to-media-in-wordpress-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1840:\"<p>Among the many enhancements in WordPress 4.7 are improvements to the media component. Previous to 4.7, users who uploaded files to the media library and changed the title could not search for them by file name. Four years since the <a href=\"https://core.trac.wordpress.org/ticket/22744\">ticket was created</a>, users will be able to search for media by filename.</p>\n<p>PDFs are <a href=\"https://make.wordpress.org/core/2016/11/15/enhanced-pdf-support-4-7/\">easier to preview</a> as the media library will create an image preview of the first page. This image is used throughout the library and media attachment screens.</p>\n<a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2016/11/PDFpreviews.png?ssl=1\"><img class=\"size-full wp-image-64027\" src=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2016/11/PDFpreviews.png?resize=864%2C317&ssl=1\" alt=\"PDF Preview Images in the WordPress Media Library\" /></a>PDF Preview Images in the WordPress Media Library\n<p>In order to generate the previews, the webhosting server needs to support Imagick, ImageMagick, and Ghostscript. If support is not detected, WordPress will fall back and save the attachment without adding a preview image.</p>\n<p>WordPress 4.7 also removes the <a href=\"https://wptavern.com/wordpress-4-7-improves-accessibility-by-removing-alternative-text-fallbacks\">caption text and the image title fallbacks</a> to generate alternative text. Developers are encouraged to read the <a href=\"https://make.wordpress.org/core/2016/11/15/enhanced-pdf-support-4-7/\">detailed notes</a> surrounding PDF previews to ensure compatibility with WordPress 4.7. There&#8217;s also a handful of other changes to media that users and developers can <a href=\"https://make.wordpress.org/core/2016/11/22/media-changes-in-4-7/\">read here</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:\"Tue, 29 Nov 2016 01:41: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: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:41:\"Dev Blog: 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=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: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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4302:\"<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&#8217;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&#8217;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>\";s: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: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:\"\";}}}}}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:45:\"WPTavern: Why Are You Thankful 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=64012\";s: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://wptavern.com/why-are-you-thankful-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:3836:\"<p>Tomorrow is Thanksgiving in the US. It&#8217;s a time of reflection and an opportunity to express gratitude for the good things in life. In <a href=\"http://kitchensinkwp.com/podcast-e143-thankgiving-wordpress-2016/\">episode 143</a> of the KitchensinkWP podcast, host Adam Silver asked his two sons why they&#8217;re grateful for WordPress.</p>\n<p>&#8220;I am thankful for WordPress because it gives you a job for the household that we live in and it makes you happy which also makes me happy and smile,&#8221; Parker said. &#8220;I am thankful for WordPress because it makes you happy and it makes me happy and it provides a roof over our heads,&#8221; Carson said.</p>\n<p>Inspired by the episode, <a href=\"https://twitter.com/josheby\">Josh Eby</a> created the <a href=\"https://twitter.com/hashtag/Thankful4WP?src=hash\">#Thankful4WP</a> hashtag on Twitter. Here are a few reasons why people are thankful for WordPress.</p>\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">My <a href=\"https://twitter.com/hashtag/Thankful4WP?src=hash\">#Thankful4WP</a> List:<br />* Life I enjoy because of WP<br />* Lifelong, <a href=\"https://twitter.com/hashtag/Iceberg?src=hash\">#Iceberg</a> friendships<br />* Passionate <a href=\"https://twitter.com/ithemes\">@ithemes</a> team<br />* Customers who support us</p>\n<p>&mdash; Cory Miller (@corymiller303) <a href=\"https://twitter.com/corymiller303/status/801458665790304256\">November 23, 2016</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">My <a href=\"https://twitter.com/hashtag/Thankful4WP?src=hash\">#Thankful4WP</a> list: the awesome community, resources, WordCamps, building websites w/ WP, the people, oh and did I mention the people? ❤️</p>\n<p>&mdash; Justine Pretorious (@jpretorious) <a href=\"https://twitter.com/jpretorious/status/801334701306875905\">November 23, 2016</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">I’m <a href=\"https://twitter.com/hashtag/Thankful4WP?src=hash\">#Thankful4WP</a> and particularly for <a href=\"https://twitter.com/hashtag/GenesisWP?src=hash\">#GenesisWP</a> because it’s afforded me opportunities I didn’t have before and awesome friendships.</p>\n<p>&mdash; Susan Ramsey (@onehappystudio) <a href=\"https://twitter.com/onehappystudio/status/801226653435396096\">November 23, 2016</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">I am <a href=\"https://twitter.com/hashtag/Thankful4WP?src=hash\">#Thankful4WP</a> &#8211; People. Connections. A New Career. Teaching. Learning. Ah-ha Moments. WordCamps. Friends. Support. Good Times.</p>\n<p>&mdash; BobWP (@bobWP) <a href=\"https://twitter.com/bobWP/status/801202449180524544\">November 22, 2016</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">I am <a href=\"https://twitter.com/hashtag/Thankful4WP?src=hash\">#Thankful4WP</a> because it gave me opportunity to leave the 9to5 job and start something of my own <a href=\"https://twitter.com/hashtag/myownbusiness?src=hash\">#myownbusiness</a> <a href=\"https://twitter.com/wfanzine\">@wfanzine</a> <a href=\"https://twitter.com/hashtag/WordPress?src=hash\">#WordPress</a></p>\n<p>&mdash; Sanjeev Mishra (@sonziv) <a href=\"https://twitter.com/sonziv/status/801164921861902336\">November 22, 2016</a></p></blockquote>\n<p></p>\n<p>I&#8217;m thankful for WordPress because of the opportunities it has provided me and I&#8217;ve met some amazing people because of it. If you&#8217;re thankful for WordPress please let us know why in the comments. From all of us at the Tavern, have a safe and enjoyable Thanksgiving.</p>\n<blockquote><p>Gratitude is a currency that we can mint for ourselves, and spend without fear of bankruptcy &#8211; Fred De Witt Van Amburgh</p></blockquote>\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, 24 Nov 2016 00:05: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: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:30:\"HeroPress: Building Confidence\";s: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=1457\";s: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/building-confidence/\";s: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:5817:\"<img width=\"960\" height=\"480\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2016/11/112316-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: The WordPress community give me confidence to talk to people & in front of people.\" /><p>I can clearly divide my life in two parts before and after marriage. Before I got married, I was staying in Chapra, a small city in Bihar. I had graduated in Botany, we only had electricity for 5-6 hours a day and no easy access to internet or computers.</p>\n<p>After my marriage, I came to Pune, a bigger city compared to Chapra and things changed for me. I was exposed to exciting world of technology, thanks to my husband who was then working at a startup. I had lot of free time so I decided to learn as much as I could just to see what I can do and started by learning MS Office, then Photoshop a bit and in the process I also learned HTML, CSS. I tried but couldn’t get much hang of JavaScript.</p>\n<p>Once I got confident that I can write decent HTML, I switched to learning CMS and first one I tried was Joomla, and for me it was very hard to understand, I had more question then I could find answers to. So on suggestion of my husband I switched to WordPress. I was able to quickly figure things out with WordPress and set up a blog for myself.</p>\n<p>In 2010, I joined WPoets as QA. In those days I had some free time.</p>\n<blockquote><p>To improve my skills I started looking into old reviews of the themes that were approved on WordPress themes repository.</p></blockquote>\n<p>This helped me understand theme file structures and various criteria to check themes for, I used skills acquired to ensure themes built by WPoets were also following these guidelines.</p>\n<p>Sometime in 2011, once I was confident that I have understood the process I joined the ‘Theme Review Team’ and started officially reviewing themes in the repository. This was a proud moment for me.  During my journey as theme reviewer I was helped and guided by Emil Uzelac, Chip Bennett &amp; Edward Caissie.</p>\n<p>In 2013, very first WordCamp was organised in Pune and I got a chance to talk about theme review process, this was my first ever public talk, and not being very good with English I choose to speak in Hindi. It was well received and many people wanted to know how they can get their themes approved. Again in 2015, I talked about what makes themes good in <a href=\"https://2015.pune.wordcamp.org/\">WordCamp Pune</a>. Thanks to WordCamps, I got to meet <a href=\"https://heropress.com/essays/making-family/\">Topher</a>, <a href=\"https://heropress.com/essays/breaking-the-silence/\">Mahangu</a> &amp; <a href=\"https://heropress.com/essays/finding-hope-darkness/\">Raghvendra</a>.</p>\n<p>Now a days, as I get less time between work and kids, instead of doing theme reviews I answer questions on WordPress.org support forum.</p>\n<blockquote><p>I&#8217;m an introvert and came from a small city so I&#8217;m always hesitant to talk to new people but the WordPress community give me confidence to talk with new people and in front of people.</p></blockquote>\n<p>This is a big achievement for me and my family feels proud of it.</p>\n<p>In WP community every one ready to support and help to move forward because of this nature I love to this community. I want to emphasize the support that I have received from WordPress community in general and members of theme review team in specific who helped me gain the knowledge necessary to do my work better. I also want to thank all the organisers of Pune WordPress Knowledge Exchange meetup group, and specially <a href=\"https://heropress.com/essays/ill-keep-looking-for-a-cms-unless-i-find-wordpress/\">Saurabh Shukla</a> who helped in improving my presentation skills for WordCamp Pune.</p>\n<p>All these happened because of WordPress community and via HeroPress platform I would like to thank everyone who makes this community rock.</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: Building Confidence\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Building%20Confidence&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fbuilding-confidence%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Building Confidence\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fbuilding-confidence%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%2Fbuilding-confidence%2F&title=Building+Confidence\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Building Confidence\"></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/building-confidence/&media=https://heropress.com/wp-content/uploads/2016/11/112316-150x150.jpg&description=Building Confidence\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Building Confidence\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/building-confidence/\" title=\"Building Confidence\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/building-confidence/\">Building Confidence</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, 23 Nov 2016 12:00:44 +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:11:\"Nisha Singh\";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:87:\"WPTavern: Automattic Clarifies .blog Landrush Process After Bait and Switch Allegations\";s: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=63947\";s: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:97:\"https://wptavern.com/automattic-clarifies-blog-landrush-process-after-bait-and-switch-allegations\";s: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:5998:\"<p>Earlier this year, Knock Knock Whois There LLC, an Automattic subsidiary in partnership with Primer Nivel, <a href=\"https://wptavern.com/automattic-to-oversee-the-sale-and-registration-of-top-level-blog-domains\">won an auction</a> for around $19 million dollars to offer top-level .blog domains. On August 18th, an email was sent to users who signed up to <a href=\"https://dotblog.wordpress.com/\">Dotblog.WordPress.com</a> notifying them that they could apply and secure a .blog domain name before November 21st.</p>\n<a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/11/ApplyForBlogDomain.png?ssl=1\"><img class=\"size-full wp-image-63953\" src=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/11/ApplyForBlogDomain.png?resize=480%2C781&ssl=1\" alt=\"Applying For a Domain Name\" /></a>Applying For a Domain Name\n<p><a href=\"http://chrisschidle.com\">Chris Schidle</a> took advantage of the opportunity and secured chris.blog for $30 per year with a $220 application fee. People who apply for a domain only receive it if no one else applies for it. If there are multiple applications, the domain goes through an auction process between November 14-17.</p>\n<p>As the auction dates drew nearer and Schidle didn&#8217;t receive any information concerning the auction, he contacted support. Support confirmed that his application was not successful and he received a refund on November 15th. After asking support about the auction process, Schidle was informed that chris.blog ended up on a list of reserved domains that were not available for registration.</p>\n<p>In a blog post entitled &#8220;<a href=\"http://chrisschidle.com/the-dot-blog-bait-and-switch/\">The .blog Bait and Switch&#8221;</a>, Schidle expressed disappointment in Automattic&#8217;s lack of communication. &#8220;Perhaps it&#8217;s not fair to call this bait and switch,&#8221; Schidle said.</p>\n<p>&#8220;Really it was bait and refund, and certainly the situation would be far worse had they chosen to not make the application fee refundable. But still, I thought I had a chance at securing the domain. That was the logical conclusion given the terms they outlined via a successful application or winning an auction.&#8221;</p>\n<p>Other applicants <a href=\"https://twitter.com/cschidle/status/799287789430849536\">shared similar experiences</a> on Twitter.</p>\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/cschidle\">@cschidle</a> i feel your pain. they also took my $250 for my app for <a href=\"https://t.co/8H0dBZfKny\">https://t.co/8H0dBZfKny</a> &#8211; surprisingly poor handling for a comm\'s company</p>\n<p>&mdash; Chris Yim (@cyim) <a href=\"https://twitter.com/cyim/status/799343938024968193\">November 17, 2016</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/cschidle\">@cschidle</a> I\'ve got stood up in the same manner for <a href=\"https://t.co/wqDOQWyF2X\">https://t.co/wqDOQWyF2X</a> Full-refund and no invitation to auction</p>\n<p>&mdash; Octavian Cioaca (@octasimo) <a href=\"https://twitter.com/octasimo/status/799295000240648192\">November 17, 2016</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/cschidle\">@cschidle</a> Same thing happened to me with <a href=\"https://t.co/1bRlWkdtmy\">https://t.co/1bRlWkdtmy</a>. Not cool.</p>\n<p>&mdash; Mark Barrera (@mark_barrera) <a href=\"https://twitter.com/mark_barrera/status/799366369733210114\">November 17, 2016</a></p></blockquote>\n<p></p>\n<p>In response to Schidel&#8217;s post, Paolo Belcastro <a href=\"https://my.blog/2016/11/17/about-reserved-domains/\">published an explanation</a> of the process behind activating some domains in the Founder’s Program while reserving others. Belcastro says that as a registrar, they&#8217;re able to activate up to 100 domain names. Some of the domains were given to <a href=\"https://my.blog/founders/\">third-parties</a> and 25 generic domains were given to WordPress.com to be shared for free with millions of users.</p>\n<p>The registrar reserved all one, two, and three-character domains from being registered. They also allowed Automattic employees to reserve a single domain each, some of which were first names.</p>\n<p>On behalf of .blog, Belcastro apologized to those who filed applications in August and later discovered the domains were not available.</p>\n<blockquote><p>Many registrars started taking pre-registrations for the Landrush period as early as last August. We do realize that some users were disappointed when they discovered that the domain names they had applied for were in fact attributed as part of the Founder’s program, or reserved, and wouldn’t be possible to register or auction at the end of Landrush.</p>\n<p>We would like to apologize to these users, but as the lists of Founder domains and Reserved ones weren’t final until just before Landrush, we couldn’t communicate them to registrars in advance (there is nothing registrars hate more than ever-changing lists of reserved domains).</p>\n<p>In addition, domains were removed as well as added to the lists, and we didn’t want to take the risk for registrars to refuse applications in September for domains that would be released in October.</p></blockquote>\n<p>To mitigate the uncertainty surrounding domain availability, fees were set up in a way so that only successful registrations would be charged. This provided a way to give full refunds to those with failed applications.</p>\n<p>Schidle appreciates the company&#8217;s apology, &#8220;It&#8217;s unfortunate that their reserved domain list wasn&#8217;t finalized prior to accepting applications, and that affected applicants like myself weren&#8217;t notified sooner (auctions were scheduled to begin on November 14th),&#8221; he said. &#8220;But I think they realize their mistake in handling that communication and their apology is appreciated.&#8221;</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:\"Sat, 19 Nov 2016 00:03: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:15;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: WordPress Passes 27% Market Share, Banks on Customizer for Continued 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:29:\"https://wptavern.com/?p=63735\";s: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/wordpress-passes-27-market-share-banks-on-customizer-for-continued-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:18465:\"<a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/11/paint-brushes.jpg?ssl=1\"><img src=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/11/paint-brushes.jpg?resize=960%2C510&ssl=1\" alt=\"photo credit: Luis Llerena\" class=\"size-full wp-image-63978\" /></a>photo credit: <a href=\"https://stocksnap.io/photo/265GAALCWG\">Luis Llerena</a>\n<p>WordPress now powers <a href=\"https://w3techs.com/technologies/details/cm-wordpress/all/all\" target=\"_blank\">27.1% of all websites on the internet</a>, up from 25% last year. While it may seem that WordPress is neatly adding 2% of the internet every year, its percentage increase fluctuates from year to year and the climb is getting more arduous with more weight to haul.</p>\n<a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/11/wordpress-market-share.png?ssl=1\"><img src=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/11/wordpress-market-share.png?resize=1025%2C256&ssl=1\" alt=\"credit: w3techs.com\" class=\"size-full wp-image-63933\" /></a>credit: <a href=\"https://w3techs.com/technologies/history_overview/content_management/all/y\">w3techs.com</a>\n<p>In January 2015, Mullenweg said the next goal for WordPress was <a href=\"https://wptavern.com/how-important-is-jetpack-on-wordpress-road-to-50-market-share\" target=\"_blank\">to achieve 50% market share</a> (the majority of websites) and he identified Jetpack as a key factor in preventing WordPress&#8217; decline, a controversial statement delivered at Pressnomics. At that time Automattic was secretly working on <a href=\"https://wptavern.com/early-reviews-show-applications-like-calypso-are-the-future-of-wordpress\" target=\"_blank\">Calypso</a>, WordPress.com&#8217;s JavaScript-powered interface, but did not unveil the project until November 2015.</p>\n<p>It&#8217;s difficult to say what effect Calypso has had on WordPress&#8217; market share, as the w3tech&#8217;s 27% stat covers mostly self-hosted sites. Following up with him a year later, Mullenweg estimates that less than 10% of those sites are hosted on WordPress.com.</p>\n<p>&#8220;It does look like about a quarter of it is using Jetpack, though, and that has grown since Calypso was released,&#8221; he said. &#8220;Remember &#8211; Calypso is for Jetpack sites as well as WP.com.&#8221;</p>\n<p>In a recent <a href=\"https://wptavern.com/wpweekly-episode-240-interview-with-matt-mullenweg-2016\" target=\"_blank\">interview on WPWeekly</a>, Mullenweg said he is also optimistic that the WooCommerce acquisition and <a href=\"https://wptavern.com/automattic-to-oversee-the-sale-and-registration-of-top-level-blog-domains\" target=\"_blank\">Automattic&#8217;s sale and management of the .blog domain</a> extension will contribute &#8220;another 5-10% each to that market share.&#8221; In fact, there is a team inside Automattic called Team 51 that works on strategies for getting the market share to 51%.</p>\n<p>&#8220;For getting to 51% and beyond &#8211; it&#8217;s more than just blogs and more than just websites,&#8221; Mullenweg said. &#8220;We need to do stores well, we need to do wikis well, we need to do real estate sites well, we need to do restaurants well &#8211; all these things that may be outside what you normally think of as a core WP experience.&#8221;</p>\n<p>In order to provide the best content-creation experience on the market, in any niche, WordPress has some major work to do. The software is in imminent danger of being eclipsed by newer competitors if its core features don&#8217;t improve, especially when it comes to customizing a new site. Jetpack cannot single-handedly solve WordPress&#8217; onboarding problem.</p>\n<h3>WordPress&#8217; Weakest Link Is Also Its Greatest Opportunity</h3>\n<p>In the past Mullenweg has identified customization as the weakest link in WordPress but also one of its most important areas for improvement, saying, &#8220;The Customizer is everything.&#8221; During the <a href=\"https://wptavern.com/state-of-the-word-2015-javascript-and-api-driven-interfaces-are-the-future-of-wordpress\" target=\"_blank\">2015 State of the Word</a> address he said, &#8220;Customization is the single biggest opportunity for improving the WordPress experience.&#8221; I asked him if he thinks the necessary improvements to make the software more competitive need to come from core itself or if commercial products could introduce game changers for the Customizer, the editor, and other problem areas of WordPress.</p>\n<p>&#8220;I think to have an impact on WordPress&#8217; growth improvements to customization have to happen in core or Calypso/Jetpack, otherwise there isn&#8217;t enough reach,&#8221; Mullenweg said. &#8220;It doesn&#8217;t matter how great a commercial product is &#8211; being behind a paywall will mean it won&#8217;t reach enough people to make a dent in WP&#8217;s growth curve.&#8221; He outlined how he sees the Customizer as a critical component of WordPress&#8217; future:</p>\n<blockquote><p>I think the needed improvements will only come from a customizer and theme system which is flexible, intuitive, and instantaneous, which might also need to break backwards compatibility, and a post editor which leverages the same language, patterns, interface, and concepts. We need to use and adopt a React / Redux approach to the javascript, like Calypso, and rename or make irrelevant concepts like Menus which are just plain confusing to people.</p></blockquote>\n<p>Customizer improvements have been a focus throughout 2016 and the feature&#8217;s small team of contributors have made major strides towards improving the underlying architecture to build upon.</p>\n<p>&#8220;It&#8217;s <em>customization</em> that is the key need here, not necessarily the existing &#8216;Customizer&#8217; interface that we have today,&#8221; <a href=\"https://make.wordpress.org/core/components/customize/\" target=\"_blank\">Customize</a> component maintainer Weston Ruter said. &#8220;The key need WordPress has is to be able to live preview more functionality in WordPress, as Helen tweeted here:&#8221;</p>\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">What if instead of opposing \"shoving more stuff into the customizer\" we supported \"adding live previews to WordPress functionality\"?</p>\n<p>&mdash; Helen 侯-Sandí (@helenhousandi) <a href=\"https://twitter.com/helenhousandi/status/778255682462183424\">September 20, 2016</a></p></blockquote>\n<p></p>\n<p><a href=\"https://wptavern.com/customizer-responsive-preview-and-selective-refresh-to-be-merged-into-wordpress-4-5\" target=\"_blank\">Selective refresh</a> was added earlier this year in 4.5, giving WordPress the ability to preview elements without full page reloads. This is one way the Customize API addresses that &#8220;instantaneous&#8221; aspect Mullenweg outlined above.</p>\n<p>&#8220;The <a href=\"https://make.xwp.co/2016/04/29/customize-posts-v0-5-released/\" target=\"_blank\">Customize Posts</a> plugin is an effort to rebuild the post editor from the ground up with live preview for all changes to post data and postmeta at the foundation,&#8221; Ruter said. &#8220;It&#8217;s a JavaScript-first approach to the post editing experience. No more waiting for a full page reload to save a draft. No more clicking a preview button to load the post in a new window. All of the changes are saved as drafts and previewed live. It&#8217;s reusing the TinyMCE editor component.&#8221;</p>\n<p>WordPress may be looking at <a href=\"https://wptavern.com/customize-posts-plugin-and-selective-refresh-are-paving-the-way-for-front-end-editing-powered-by-the-customizer\" target=\"_blank\">front-end editing powered by the Customizer</a> in the not-too-distant future. Ruter and contributors are also working towards using the Customize API to power the next generation of widgets in core, which would use JS for UI and open the door for widgets to be managed via the REST API.</p>\n<p>&#8220;Changesets, coming in 4.7, is the most far-reaching architectural improvement to the customizer since its inception,&#8221; Ruter said. &#8220;Changesets allow for live preview functionality to be de-coupled from the current Customizer interface. This architecture allows for live preview to be developed in other contexts, namely on the frontend and in REST API-driven apps and headless sites.&#8221; Ruter anticipates the REST API endpoints for managing changesets to come in 4.8.</p>\n<p>The <a href=\"https://github.com/xwp/wp-js-widgets\" target=\"_blank\">WP JS Widgets</a> project shifts widgets away from their heavy reliance on PHP and creates a JavaScript foundation in the Customizer that allows for any library to be used to build widget controls.</p>\n<p>&#8220;A control can actually be implemented using any JS technology stack,&#8221; Ruter said. &#8220;In the JS Widgets plugin I have a demonstration of widget controls in the customizer being built using the customizer Element, Backbone.js, and also React.&#8221; The plugin currently implements <a href=\"https://github.com/xwp/wp-js-widgets/tree/master/php/widgets\" target=\"_blank\">three core widgets</a> and contributors are working on more.</p>\n<p>&#8220;It&#8217;s somewhat of a &#8216;Widgets 3.0&#8217; in core, focused on what they would look like in the Customizer first,&#8221; Ruter said, &#8220;where the widget instance data is stored in a setting, and the control listens to changes to that setting and updates its UI to reflect the changes in the underlying instance data.&#8221;</p>\n<p>Although this particular project is being built to be JavaScript-library agnostic, Ruter said he thinks there would be value in exploring the use of React/Redux in a “Customizer 2.0” interface:</p>\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">It would be great to experiment with re-implementing the Customizer UI (pane, panels, sections, controls) in React. <a href=\"https://twitter.com/hashtag/wcus?src=hash\">#wcus</a></p>\n<p>&mdash; Weston Ruter ⚡ (@westonruter) <a href=\"https://twitter.com/westonruter/status/672830761872064513\">December 4, 2015</a></p></blockquote>\n<p></p>\n<h3>Taking the Customizer Beyond First Impressions</h3>\n<p>Ruter said he would have a difficult time proposing to build a client site that depended on the WordPress admin for site management and content authorship.</p>\n<p>&#8220;A lot of the work we&#8217;ve done at XWP for the past few years has been building on the Customizer to provide the editorial experiences that I think are lacking in the WP admin,&#8221; Ruter said. &#8220;We invest heavily in the customizer because we see it as the best foundation that WordPress has to offer to provide the experiences we want to deliver to our clients.&#8221;</p>\n<p>If the Customizer is so critical to WordPress&#8217; success, it&#8217;s curious that the contributor team remains relatively small and few companies are investing in the feature specifically. <a href=\"https://xwp.co/\" target=\"_blank\">XWP</a> invests heavily in Customizer development and a great deal of that is prototype work in the form of feature plugins such as Customize Snapshots, Customize Posts, and several <a href=\"https://github.com/xwp?q=wp-customize\" target=\"_blank\">other plugin projects</a>.</p>\n<p>&#8220;I don&#8217;t know for sure why more developers across the WordPress community aren&#8217;t doing more with the customizer,&#8221; said Ruter, who is CTO at XWP. &#8220;It may be in part a perception problem, where it has seemingly been stuck with a negative reputation. Or it could be a technology problem, where the Customizer is vastly different from other areas of WordPress being a JavaScript single-page application.&#8221;</p>\n<p>When the Customizer was first introduced it included support for &#8216;option&#8217; and &#8216;theme_mod,&#8217; followed by widgets and navigation menus a bit down the road. The WordPress community didn&#8217;t have a full understanding of the scope and capabilities of the Customizer for addressing some of the project&#8217;s chief concerns, including content authorship with live previews. Users simply saw a constrained UI they didn&#8217;t like using to customize themes. Most users had no concept of the Customizer providing the architectural underpinnings of other aspects of WordPress.</p>\n<p>&#8220;Part of the problem is a lack of contributors,&#8221; Ruter said. &#8220;But even more than that, the biggest problem is one of having a shared vision. When the WP community throws hate on customizer improvements with each new release, it&#8217;s somewhat demotivating.</p>\n<p>&#8220;If the community realized the vision behind and appreciated a full admin experience that had live preview and staging of changes, then that would make a huge difference,&#8221; Ruter said. He and contributors find it challenging to articulate the scope and they are considerably short-handed.</p>\n<p>&#8220;It could be a problem with getting ramped up,&#8221; he said. &#8220;But that&#8217;s been the mandate for the WP community as a whole &#8211; to learn JavaScript deeply. I say, why not learn JavaScript deeply by building on the customizer?&#8221;</p>\n<h3>GoDaddy Plans to Invest in Core Customizer Improvements</h3>\n<p>GoDaddy is a surprising company to emerge over the past couple of years as another key player on WordPress&#8217; road to 50% market share. WordPress product and service companies, along with hosts, are keenly interested in seeing the software continue its market dominance.</p>\n<p>&#8220;It&#8217;s very important to GoDaddy that WP market share increases,&#8221; Gabe Mays, head of WordPress products at GoDaddy, said. &#8220;We&#8217;re deeply invested in the success of the WordPress community, not only because many of our customers use it, but also because of what it represents.&#8221;</p>\n<p>Mays reports that approximately 1/3 of all GoDaddy sites and half of all new sites are running on WordPress. With millions of customers using the software, the company took the initiative to create a new <a href=\"https://wptavern.com/godaddy-launches-new-onboarding-experience-for-wordpress-customers\" target=\"_blank\">onboarding experience specifically for WordPress customers</a>. I asked Mays if GoDaddy is concerned about competitors like Wix and Weebly cutting into the WordPress market share.</p>\n<p>&#8220;I don&#8217;t know if &#8216;worry&#8217; is the right word, because 1) we know the problem and 2) we&#8217;re capable of addressing it,&#8221; Mays said. &#8220;As a community we either care enough to fix it or we don&#8217;t. There are negative consequences associated with the latter that pose an existential threat to the community.&#8221;</p>\n<p>Mays has been involved with the WordPress community for the past 10 years and is working with GoDaddy to improve the new user experience.</p>\n<p>&#8220;Part of the issue we’re experiencing now is that WordPress benefitted from such strong product market fit and, subsequently, such high growth that there weren’t the typical feedback mechanisms forcing us to make things like the UX better,&#8221; Mays said. &#8220;On the other hand, our competitors fought hard and iterated for every basis point of market share they have. We’re like that natural athlete that got to the top with natural talent, but now need to master the basics, get our form right, etc. to stay on top as the game changes.&#8221;</p>\n<p>GoDaddy&#8217;s new onboarding experience is a stab at improving this UX and Mays said the company has significant WordPress core improvements in the works to provide a better first-use experience.</p>\n<p>&#8220;I’m happy to say we’ll also be contributing these improvements back to core,&#8221; he said. &#8220;We&#8217;re happy to have had Aaron Campbell join us as our first core contributor earlier this year and we&#8217;re working on more ways to accelerate our core contribution efforts.&#8221;</p>\n<p>Mays said GoDaddy is planning to submit core contributions to the Customizer and related core components in the near future but would not disclose any specifics at this time.</p>\n<p>&#8220;Hosts benefit immensely from WordPress and as hosts we can collectively do a lot more to move WordPress forward,&#8221; Mays said. &#8220;We want to lead by example here and have big plans for this in 2017.&#8221;</p>\n<p>WordPress product and service companies are also deeply invested in the software&#8217;s success and eager to see its market share grow. Cory Miller, CEO of <a href=\"https://ithemes.com/\" target=\"_blank\">iThemes</a>, one of WordPress&#8217; earliest theme companies, said growth is one potential sign of WordPress&#8217; health.</p>\n<p>“As WordPress has grown, so have we with it,&#8221; Miller said. &#8220;The opposite of growth is scary — it’s stagnation or decline. Many have predicted that in WordPress for a long time, but it continues to grow and push new limits, like the defiant teenager it is.”</p>\n<p>Miller said one of his concerns with competitors in the space is that they have started to cut into the lower  or lowest end of the market, &#8220;the do-it-yourselfers that many of us count as a key part of our customer base.&#8221;</p>\n<p>&#8220;WordPress is fantastic, and so are all the innovative tools and services around it, from themes, plugins to hosting,&#8221; Miller said. &#8220;But I&#8217;m increasingly seeing the reason why many, on perhaps the bottom end of the market, say, &#8216;I don’t want to mess with updates, or worrying about security, or pulling 15 separate tools together to do what I need. I just want a simple website, I want everything in one bundle, mostly done for me, and so I’ll just go with SquareSpace or Weebly.\'&#8221;</p>\n<p>Although WordPress provides so much more in terms of community and extensibility when compared to Wix, Weebly, and Squarespace, getting started is the hardest part for new users. This is where tools like Jetpack and GoDaddy&#8217;s onboarding experience are useful for giving users what they need to succeed with WordPress.</p>\n<p>Even with a strong background in HTML and CSS, customizing a WordPress site can be challenging. Your site will never feel like your home on the web if you struggle to customize it to suit your preferences. The good news is that the WordPress project lead, contributors, hosts, and product companies are working together to improve customization in different, complementary ways in order to ensure the future of the project in an increasingly competitive market.</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, 18 Nov 2016 22:48: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: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: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:97:\"WPTavern: 2nd Global WordPress Translation Day Brings 780 Translators Together Across 133 Locales\";s: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=63915\";s: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:108:\"https://wptavern.com/2nd-global-wordpress-translation-day-brings-780-translators-together-across-133-locales\";s: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:6919:\"<p>The second <a href=\"https://wptranslationday.org/\" target=\"_blank\">Global WordPress Translation Day</a> was held November 12 and the <a href=\"https://make.wordpress.org/polyglots/2016/11/16/notes-from-the-polyglots-chats-on-november-16th/\" target=\"_blank\">stats</a> released this week show the event was an even greater success than the first one. In April, <a href=\"https://wptavern.com/global-wordpress-translation-day-draws-448-participants-from-105-countries\" target=\"_blank\">WP Translation Day connected 448 participants</a> through both online and in-person translation events. The second event brought 780 translators together, a 74% increase in participation. Attendance at the local events increased from 39 in April to 67 in November.</p>\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Looking at <a href=\"https://twitter.com/hashtag/WPTranslationDay?src=hash\">#WPTranslationDay</a> stats I can’t be more grateful to <a href=\"https://twitter.com/humanmadeltd\">@humanmadeltd</a> for supporting my time for the <a href=\"https://twitter.com/hashtag/WordPress?src=hash\">#WordPress</a> Polyglots. So lucky❤️ <a href=\"https://t.co/NwSjYOyUBX\">pic.twitter.com/NwSjYOyUBX</a></p>\n<p>&mdash; Petya Raykovska (@petyeah) <a href=\"https://twitter.com/petyeah/status/798890778692988929\">November 16, 2016</a></p></blockquote>\n<p></p>\n<p>&#8220;We really wanted to build on top of what was already there, reach more people, and bring more important topics front and center,&#8221; said Petya Raykovska, one of the members of the Polyglots Leadership Team. Participants had the opportunity to discuss the upcoming internationalization features in WordPress with core developers, including a session by Pascal Birchler and a panel led by John Blackbourn. Translators also discussed gender neutral languages in the WordPress UI, prompted by a discussion around gender neutral German.</p>\n<p>Raykovska said one of the goals of the second event was to &#8220;bring more people on screen so everyone can feel like they&#8217;re a part of a truly global event.&#8221; Local participation for the live streaming meetups increased from April.</p>\n<p>&#8220;The activities in India have kept their strong growth rate &#8211; we had eight events last time, this time they were 14, with Mumbai even having two events,&#8221; Raykovska said. &#8220;For the first time we had events in Russia and in South Africa.&#8221;</p>\n<p>Raykovska said she&#8217;s hoping the Polyglots Leadership Team will soon begin developing events in African regions, following patterns of success in Asia and Europe.</p>\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Thank you <a href=\"https://twitter.com/ResellerClub\">@ResellerClub</a> for hosting us today for <a href=\"https://twitter.com/hashtag/WPTranslationday?src=hash\">#WPTranslationday</a> <a href=\"https://t.co/vfr9l0D50V\">pic.twitter.com/vfr9l0D50V</a></p>\n<p>&mdash; WordCamp Mumbai (@WCMumbai) <a href=\"https://twitter.com/WCMumbai/status/797397743467659264\">November 12, 2016</a></p></blockquote>\n<p></p>\n<h3>Global WordPress Translation Day Expands Into South Africa</h3>\n<a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2016/11/cape-town-wptranslation-day.jpg?ssl=1\"><img src=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2016/11/cape-town-wptranslation-day.jpg?resize=1025%2C548&ssl=1\" alt=\"Cape Town WP Translation Day - credit: Jon Bossenger\" class=\"size-full wp-image-63927\" /></a>Cape Town WP Translation Day &#8211; credit: <a href=\"https://wpcapetown.co.za/2016/11/14/wordpress-global-translation-day-recap/\">Jon Bossenger</a>\n<p>South Africa has 11 languages and Raykovska said the event gave a big boost to the translation community there, with Xhosa being translated for WordPress for the first time. Xhosa is spoken by 7.6 million people, which is approximately 18% of the South African population.</p>\n<p>&#8220;Africa has a huge potential and a lot of wonderful, enthusiastic people,&#8221; she said. &#8220;There will be more WordCamps there in 2017 and hopefully more activity on the translation side.&#8221;</p>\n<p>Jon Bossenger and Hugh Lashbrooke, who co-organized the Cape Town event, had attendees translating WordPress into Xhosa, Sotho, and Setswana.</p>\n<p>&#8220;By the end of the day we had two translation files for these languages that we’ll be looking to submit requests to be added as locales for WordPress,&#8221; Bossenger said in his recap <a href=\"https://wpcapetown.co.za/2016/11/14/wordpress-global-translation-day-recap/\" target=\"_blank\">post</a>. &#8220;We’re almost halfway towards adding all 11 official languages, just in one day.&#8221;</p>\n<p>Trisha Cornelius, co-organizer the WP Johannesburg Meetup, organized the in-person translation event in Johannesburg where the team made major progress and assisted the Cape Town team in getting their languages started.</p>\n<p>&#8220;We managed to get Xhosa approved in time for us to translate some strings for our translation day event,&#8221; Cornelius said. &#8220;We translated into Afrikaans (which is at over 95% so we are pushing to get to 100%) and South African English as well. People who were at the Cape Town event have volunteered to become translators for Tswana and an attendee at our event has volunteered to become GTE for Zulu.&#8221;</p>\n<p>Cornelius said the excitement of live streaming and connecting with Cape Town and others around the world could have easily made for an event that spanned longer than three hours.</p>\n<p>&#8220;The biggest success was in showing people how easy translation is,&#8221; Cornelius said. She hopes the translations will make WordPress easier for more people in South Africa and help more people get onto the web.</p>\n<p>&#8220;South Africa has an interesting case in that we have a clear racial split between being multi-lingual and not,&#8221; Cornelius said. &#8220;The majority of our population speaks English/Afrikaans as a second language and I would love to see WordPress available in all 11 of our official languages so that WP users can choose to use WP in their mother tongue.&#8221;</p>\n<p>Cornelius said language accessibility in South Africa is less of a challenge than actual access to computers with the Internet, but they are making progress in Johannesburg to make the internet more widely available.</p>\n<p>&#8220;Especially with the prevalence of smart phones, I think having WordPress in more indigenous languages will mean that we are able to hear more of each others voices which we desperately need,&#8221; Cornelius said.</p>\n<p>Overall, the WordPress Translation Day participants translated a total of 60,426 strings, up from 40,350 in April. This includes popular plugins and themes in addition to WordPress core. A video replay of the event can be found on <a href=\"https://www.crowdcast.io/e/gwtd2\" target=\"_blank\">Crowdcast.io</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, 17 Nov 2016 23:20: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: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: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:29:\"Ping-O-Matic: Bloglines Added\";s: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:59:\"http://pingomatic.wordpress.com/2006/04/30/bloglines-added/\";s: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://blog.pingomatic.com/2006/04/30/bloglines-added/\";s: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:839:\"<p>A few days ago we added Bloglines to our list of RPC ping receivers, worked out a few issues with them, and now <a href=\"http://www.bloglines.com/about/news#103\">they&#039;ve announced their pinging service</a>.</p>\n<p>I&#039;ll be adding them to the web form soon. :)&nbsp;</p><br /><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/categories/pingomatic.wordpress.com/11/\" /> <img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/tags/pingomatic.wordpress.com/11/\" /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/pingomatic.wordpress.com/11/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/pingomatic.wordpress.com/11/\" /></a> <img alt=\"\" border=\"0\" src=\"https://pixel.wp.com/b.gif?host=blog.pingomatic.com&blog=68432&post=11&subd=pingomatic&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:\"Thu, 17 Nov 2016 22:00: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: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: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:77:\"WPTavern: WPWeekly Episode 254 – WP eCommerce, WordCamp US 2017, and Upvato\";s: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=63903&preview=true&preview_id=63903\";s: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/wpweekly-episode-254-wp-ecommerce-wordcamp-us-2017-and-upvato\";s: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:2450:\"<p>In this short episode of WordPress Weekly, <a href=\"http://marcuscouch.com/\">Marcus Couch</a> and I discuss a handful of news stories making headlines. We discuss a recent security update to the WP eCommerce plugin, Upvato disappearing only to reappear in the near future, and Nashville, TN hosting WordCamp US in 2017 and 2018. Last but not least is Marcus&#8217; plugin picks of the week.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://wptavern.com/wp-ecommerce-3-11-4-patches-sql-injection-vulnerability\">WP eCommerce 3.11.4 Patches SQL Injection Vulnerability</a><br />\n<a href=\"https://wptavern.com/upvato-backup-service-confirms-files-are-lost-plans-to-relaunch-on-new-provider\">Upvato Backup Service Confirms Files Are Lost, Plans to Relaunch on New Provider</a><br />\n<a href=\"https://wptavern.com/nashville-to-host-wordcamp-us-2017-2018\">Nashville to Host WordCamp US 2017-2018</a></p>\n<h2>Plugins Picked By Marcus:</h2>\n<p><a href=\"https://wordpress.org/plugins/show-featured-image-size-in-admin-topbar\">Show Featured Image Size in Admin TopBar</a> displays the image size for the featured image in the admin top bar. This makes it convenient to know how large features images need to be without looking it up.</p>\n<p><a href=\"https://wordpress.org/plugins/wp-mqtt/\">WP-MQTT</a> connects WordPress to the Internet of Things. This plugin can automatically send MQTT messages to compatible devices when something happens on your site. MQTT is a machine-to-machine (M2M) / Internet of Things connectivity protocol. It was designed as an extremely lightweight publish/subscribe messaging transport.</p>\n<p><a href=\"https://wordpress.org/plugins/hello-trumpy/\">Hello Trumpy</a> is a plugin aimed at making WordPress great again!</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, November 23rd 9:30 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\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href=\"https://wptavern.com/feed/podcast\" target=\"_blank\">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\">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #254:</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, 17 Nov 2016 09:20:17 +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:80:\"WPTavern: Visible Edit Shortcuts in WordPress 4.7 Makes Customizing Sites Easier\";s: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=63881\";s: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/visible-edit-shortcuts-in-wordpress-4-7-makes-customizing-sites-easier\";s: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:3913:\"<p>Earlier this year, Automattic added visual icons to the WordPress.com customizer after user testing showed users tried clicking on the parts of the page they wanted to edit, rather than searching through the menus in the customizer. In an effort to see if the <a href=\"https://core.trac.wordpress.org/ticket/27403\">same could be done</a> for the self-hosted version of WordPress, <a href=\"https://core.trac.wordpress.org/ticket/27403#comment:16\">Payton Swick open sourced</a> Automattic&#8217;s work into a plugin and <a href=\"https://github.com/Automattic/customize-direct-manipulation\">placed it on GitHub</a>.</p>\n<p>The plugin added persistent icons to show users which parts of a site can be customized when the customizer preview pane is open. After months of collaboration between Automatticians and the Customize component maintainers, the icons were merged into WordPress 4.7 and are officially called visible edit shortcuts. The icons visually inform users which elements can be edited in a theme.</p>\n<p>The icons appear when the customizer is open and directs users to settings that control an element. For example, clicking the icon next to the site tagline in the image below opens the Site Identity section of the customizer and makes the Tagline field active. Visible shortcuts are an extension of the Shift-click to edit keyboard shortcut that was added in WordPress 3.9.</p>\n<a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2016/11/CustomizerShortcutButtons.png?ssl=1\"><img class=\"size-full wp-image-63883\" src=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2016/11/CustomizerShortcutButtons.png?resize=1025%2C544&ssl=1\" alt=\"Visible Edit Shortcut Buttons\" /></a>Visible Edit Shortcut Buttons\n<p>The icon approach was largely inspired by WordPress.com which has a similar feature in its customizer. Nick Halsey, Customize component maintainer, <a href=\"https://make.wordpress.org/core/2016/11/10/visible-edit-shortcuts-in-the-customizer-preview/\">describes in detail</a> the history of the feature and what theme authors need to do to support it.</p>\n<p>Unlike many of the theme specific updates in the past where developers can add support by using add_theme_support, supporting visible edit shortcuts is more comprehensive. Theme authors will need to add support for <a href=\"https://make.wordpress.org/core/2016/02/16/selective-refresh-in-the-customizer/\">selective refresh</a>, <a href=\"https://make.wordpress.org/core/2016/03/22/implementing-selective-refresh-support-for-widgets/\">selective refresh for widgets</a>, and <a href=\"https://make.wordpress.org/core/2015/07/29/fast-previewing-changes-to-menus-in-the-customizer/\">selective refresh for menus</a>.</p>\n<p>&#8220;Edit shortcuts will be enabled by default for all themes, but are contingent on themes supporting selective refresh,&#8221; Halsey said. Additionally, a small amount of CSS may be required to properly position the icons.</p>\n<p>Adding visual elements that connect parts of a theme to the customizer should take some of the guesswork out of editing themes. Instead of spending time browsing through various customizer panels to edit a part of a site, users can click a button and the right customizer panel will open automatically with the settings you need. This can be especially useful for themes that have a lot of customizer sections.</p>\n<p>I tested visible edit shortcuts using the Twenty Seventeen theme in WordPress 4.7 beta 4 and didn&#8217;t encounter any issues. The team is strongly encouraging users to test with as many themes as possible. If you use a theme where the shortcut icons are not displayed, please contact the theme author, request that they add support, and refer them to <a href=\"https://make.wordpress.org/core/2016/11/10/visible-edit-shortcuts-in-the-customizer-preview/\">the make core blog post which explains how to do so</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, 17 Nov 2016 08:54: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: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: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:49:\"WPTavern: Nashville to Host WordCamp US 2017-2018\";s: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=63871\";s: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:60:\"https://wptavern.com/nashville-to-host-wordcamp-us-2017-2018\";s: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:5593:\"<a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/11/nashville.jpg?ssl=1\"><img src=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/11/nashville.jpg?resize=1015%2C524&ssl=1\" alt=\"photo credit: Viv Lynch Westward - (license)\" class=\"size-full wp-image-63884\" /></a>photo credit: Viv Lynch <a href=\"http://www.flickr.com/photos/68894626@N00/30070498810\">Westward</a> &#8211; <a href=\"https://creativecommons.org/licenses/by-nc-nd/2.0/\">(license)</a>\n<p><a href=\"https://2016.us.wordcamp.org/\" target=\"_blank\">WordCamp US</a> attendees are counting down the days until the event kicks off in Philadelphia in two weeks but preparations for 2017 and 2018 are already underway. Yesterday Matt Mullenweg <a href=\"https://wordpress.org/news/2016/11/wordcamp-us-2017-2018-in-nashville/\" target=\"_blank\">announced</a> that Nashville has won the bid to host WordCamp US for the next two years. According to Randy Hicks, one of the organizers, the new <a href=\"http://www.nashvillemusiccitycenter.com/\" target=\"_blank\">Music City Center</a> venue, which was finished in 2013, has been reserved from Thursday, November 30, 2017, to Sunday, December 3 but the camp will take place Friday &#8211; Sunday. The venue has confirmed the ability to host 3,000 &#8211; 5,000 attendees.</p>\n<p>&#8220;We have a brand new venue that is pretty amazing but Nashville is very centrally located to handful of other cities that all have their own WordCamps,&#8221; Hicks said. &#8220;I think there are about seven camps within 4-5 hours. The WP community around Nashville is rather strong.&#8221;</p>\n<p>Over the past few years the local WordPress community has grown and WordCamp Nashville sold 325 tickets at its 2016 event.</p>\n<p>&#8220;I&#8217;ve been coming to the meetups since the very first one and have been an organizer since about the same time as well as John Housholder,&#8221; Hicks said. &#8220;We&#8217;ve seen the community explode every year after WordCamp, but 2014 and 2015 have been huge growth years for Nashville as a whole and the meetup has reflected those numbers.&#8221;</p>\n<p>The application process included nailing down a venue, creating a budget, and gathering specific details about wifi capabilities, room capabilities, hotel availability, and date availability. Organizers from both the Nashville team and the Denver team (another finalist) agreed that the application time frame was somewhat constrained.</p>\n<p>&#8220;I thought the time frame between start and submission was pretty short, but I think that depends on who is submitting and how informed they are on their local venue,&#8221; Hicks said. &#8220;Ours was really hard to get information from.&#8221;</p>\n<p>The Denver team had a similar struggle with locking down a venue without certainty of being able to fully book the reservation.</p>\n<p>&#8220;There was what I would consider to be a semi-fanatical obsession with the first weekend in December, which was flatly unavailable at the convention center here,&#8221; said Drew Jaynes, one of the organizers who applied on behalf of Denver.</p>\n<p>&#8220;To give you some perspective, at the time that we applied, March 2016, there were two available weekends left for the Colorado Convention Center &#8211; two in all of 2017. The end of August and the middle of December. To organize an event of this size on what would be considered relatively short notice for a city as popular as Denver was essentially a fool&#8217;s errand.&#8221;</p>\n<p>The Nashville organizing team was able to secure its venue for early December dates, but a wider range of acceptable dates might be one way for WordCamp Central to improve the process for next year. This would give more cities the opportunity to submit competitive applications, as venues that can accommodate the expected size of WCUS are in high demand in popular cities.</p>\n<p>&#8220;We had a great set of communities apply so it was tough to pick just one,&#8221; WordCamp Central representative Cami Kaos said. &#8220;In the end we went with Nashville for WordCamp US 2017-2018 because it seems like a great location for attendees, they had a beautiful venue that could accommodate an event of this size as we grow, and the dynamics between both teams were a natural fit.&#8221;</p>\n<p>If you&#8217;re interested in learning more about Nashville, the organizing team has created a <a href=\"http://wpnashville.com/wcus/\" target=\"_blank\">page</a> that includes some favorite local attractions and rankings:</p>\n<ul>\n<li>Ranked within the top 10 on Cvent ’s list of Top 50 Meeting Destinations in the United States. (August 2015)</li>\n<li>Named #3 Best Convention City in the 10 Best USA Today Readers’ Choice Awards</li>\n<li>Ranked #1 Friendliest City in America by Travel and Leisure (April 2015)</li>\n<li>Listed in Collaborate Magazine’s list of the Top 12 Foodie Cities for Meetings</li>\n</ul>\n<p>Nashville is centrally located for a relatively short drive or flight from anywhere in the US and should have ample options for accommodation. The city won the bid to host the WordCamp out of six applicants and Matt Mullenweg&#8217;s announcement post indicates that there were multiple local communities capable of hosting the event in the future.</p>\n<p>&#8220;Based on the other great applications we got I’m also excited about the pipeline of communities that could host it in future years as WordCamp US travels across the United States and gives us an opportunity to learn and love a new city, as we have with Philadelphia,&#8221; Mullenweg 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:\"Wed, 16 Nov 2016 21:50:56 +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: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:55:\"HeroPress: Actually, WordPress didn’t change my life.\";s: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=1490\";s: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:66:\"https://heropress.com/essays/actually-wordpress-didnt-change-life/\";s: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:9579:\"<img width=\"960\" height=\"480\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2016/11/111616-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: If we serve the people around what we\'re doing, we ourselves will grow, develop & change alongside the people we serve.\" /><p>My story starts in high school as a girl with a technical bent, in a small country town just as computers were becoming mainstream but well before they were in everyone’s home. (I was in high school when Apple came to school and showed off this new fangled thing they called a mouse…). We were taught BASIC and Pascal and I actually really enjoyed tinkering with programming, but no one thought to say, “Dee, you look like you’re good at this, you should pursue it…” I mean, I was a girl (and girls didn’t ‘DO’ computers), and no one in the circles I moved in really had any idea where this technology revolution would take us.</p>\n<p>The truth is I wasn’t particularly ambitious, I didn’t have any kind of clue what I wanted to be ‘when I grew up’ so I allowed myself to be gently steered by my parents into leaving school before the end of my final year when I was encouraged to apply for a job in a bank.</p>\n<p>I got the job and started in the MICR processing department, encoding cheques with magnetic text, and I finished as a teller 3 years later (and boy was I terrible at balancing the books at the end of the day &#8211; I was much better at chatting to the customers!).</p>\n<p>Financial independence was the only name of that game; for me there was very little else to recommend the job, so I saved all the money I could and took off from both the bank, and my homeland (New Zealand) in very short order as a young, naive 20 year old primed to spend the next 3 years exploring the world. And by the world, I mean the US and Europe…</p>\n<p>That first mouse had come out in 1983, WordPress was founded in 2003 and in those 20 years the world changed. While it was doing that I was at various times being a nanny, working in child care centres, working in customer support, temping, and generally &#8216;working to live&#8217; in whatever way felt right at the time. However, in 1999 I packed up my bags once again, moved from New Zealand to Australia and took a place at a performing arts school where I honed my singing and performance skills and volunteered my time to our music director who was starting to experiment with sending out HTML newsletters and updates via email.</p>\n<blockquote><p>And so my personal revolution began.</p></blockquote>\n<p>On what I think was the day after I graduated from that course I walked into a full time role as that music director’s assistant and began my journey back to code. It was part of my job to edit those HTML newsletters and send them out every week. I went from there to buying books about coding for the web, experimenting on my home built PC making web pages. I’m sure like a lot of us, I remember the thrill of creating that first HTML file and seeing a ‘Hello World’ or similar heading rendered in the browser… from there I was completely hooked.</p>\n<p>By 2004 I was working full time as a webmaster, by 2005 I was running a small business creating sites on the side of my ‘real job’ and by 2009 that small business became my full time job as I left employment to pursue my Masters Degree in Digital Communication. It was in that year I met WordPress when I moved my old Movable Type blog onto it and within a very short time I was using  WP as the CMS of choice for all my client work…</p>\n<p>Then in 2011 I stumbled across WordCamps and by extension the WordPress community. THAT was the thing that changed my world.</p>\n<p>I flew on a whim from Sydney to Melbourne to attend this crazy inexpensive conference I had found after a google search for ‘WordPress Conferences’. In doing so I met welcoming people, made friends, connected, and came back to Sydney excited and hopeful about continuing this connection with the wider WP community.</p>\n<p>Building a community around WP got off to a slow start in Sydney, but from an inauspicious early WPSyd meetup in the function room of a pub (one we actually held in the dark due to a blackout) my connection and involvement took off. Before long I was helping organise that Sydney meetup and by the time I moved away from that great city it had branched into 2 meetups, and soon after, into 3. Furthermore at the end of that first year, at my second ever WordCamp, I put my hand up to help organise a WordCamp Sydney in 2012 and then as I moved interstate, WordCamp Melbourne in 2013.</p>\n<p>Here’s the point.</p>\n<p>WordPress, software, technology, the Internet will come and go, morph, and change, evolve. Maybe WordPress will last forever, maybe it will morph into something else, maybe one day it will look completely different than it did when I first started (actually, that’s true now…) the thing that doesn’t change is the humanity around it.</p>\n<blockquote><p>WordPress and any other software package exists to serve people.</p></blockquote>\n<p>The thing that I have learned, not only through WordPress but in life, is that if we too serve the people around what we’re doing, we ourselves will grow, develop and change alongside the people we serve, and the tools we use to serve them.</p>\n<p>In organising meetups, WordCamps, and community events around WordPress,  I have found that at the end of the day it isn’t actually WordPress that matters… it’s those connections, it’s the friendships. It’s the network of work, referrals, support, help, encouragement that has kept me wired into this community and committed to helping other people find that connection and growth for themselves. Even as my career in WP has moved through coding, into team support, into project management, there too it has been the people and my connections to them in the community that have helped fuel that transition.</p>\n<p>I believe that the place I’ve found and the opportunities I have had owe as much to my own desire and ambition as they do to the help, support and belief of the community around me; sometimes even more than I’ve felt in myself. In all of this I feel as though I’m living proof that by helping, connecting, and resourcing other people, I myself have been helped, resourced and connected into places I’d have never dreamed of all those years ago as a teenager playing with that first mouse… experimenting with that BASIC code.</p>\n<p>Arnold Schwarzenegger said “Help others and give something back. I guarantee you will discover that while public service improves the lives and the world around you, its greatest reward is the enrichment and new meaning it will bring your own life.” and I completely agree.</p>\n<p>Ricky Martin said “A hero is someone who is willing to help others in his or her best capacity.” Here are two very different people giving voice to exactly what I’ve found in working and serving in this great community of diverse people. This is the kind of heroism I see around WordPress, at meetups and WordCamps; it’s the kind of hero whom I want to raise up, and at the end of the day, this is the kind of hero I hope that I am.</p>\n<p>Best of all, it’s the kind of hero that absolutely ANY of us can be.</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: Actually, WordPress didn’t change my life.\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Actually%2C%20WordPress%20didn%E2%80%99t%20change%20my%20life.&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Factually-wordpress-didnt-change-life%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Actually, WordPress didn’t change my life.\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Factually-wordpress-didnt-change-life%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%2Factually-wordpress-didnt-change-life%2F&title=Actually%2C+WordPress+didn%E2%80%99t+change+my+life.\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Actually, WordPress didn’t change my life.\"></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/actually-wordpress-didnt-change-life/&media=https://heropress.com/wp-content/uploads/2016/11/111616-150x150.jpg&description=Actually, WordPress didn’t change my life.\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Actually, WordPress didn’t change my life.\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/actually-wordpress-didnt-change-life/\" title=\"Actually, WordPress didn’t change my life.\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/actually-wordpress-didnt-change-life/\">Actually, WordPress didn’t change my life.</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, 16 Nov 2016 12:00:21 +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:\"Dee Teal\";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:30:\"Dev Blog: WordPress 4.7 Beta 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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4576\";s: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/2016/11/wordpress-4-7-beta-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1990:\"<p>WordPress 4.7 Beta 4 is now available!</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.7, try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"https://wordpress.org/wordpress-4.7-beta4.zip\">download the beta here</a> (zip).</p>\n<p>For more information on what’s new in 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>, and <a href=\"https://wordpress.org/news/2016/11/wordpress-4-7-beta-3/\">Beta 3</a> blog posts, along with <a href=\"https://make.wordpress.org/core/tag/4-7+dev-notes/\">in-depth developer guides on make/core</a>. We’ve made <a href=\"https://core.trac.wordpress.org/log/trunk/src?action=stop_on_copy&mode=stop_on_copy&rev=39262&stop_rev=39201&limit=200&verbose=on&sfp_email=&sfph_mail=\">about 60 changes</a> in the last few days for beta 4, including tweaks to Twenty Seventeen, custom CSS, and the REST API content endpoints.</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></p>\n<p><strong>If you think you’ve found a bug</strong>, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://make.wordpress.org/core/reports/\">file one on WordPress Trac</a>, where you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</p>\n<p><em>We are almost there<br />\nPlease test your plugins and themes<br />\nRC coming soon<br />\n</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:\"Wed, 16 Nov 2016 01:51:52 +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:\"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:\"\";}}}}}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:44:\"Dev Blog: WordCamp US 2017-2018 in Nashville\";s: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=4571\";s: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:70:\"https://wordpress.org/news/2016/11/wordcamp-us-2017-2018-in-nashville/\";s: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:995:\"<p><img class=\"aligncenter\" src=\"https://i0.wp.com/wpdotorg.files.wordpress.com/2008/07/27492741871_c6fcebcad3_k-e1479248587522.jpg?resize=632%2C253&ssl=1\" /></p>\n<p>The title says it all. We had some great applications for cities to host <a href=\"http://us.wordcamp.org/\">WordCamp US</a> after we finish up in Philadelphia this year, and the city chosen for 2017-2018 is <strong>Nashville, Tennessee</strong>.</p>\n<p>Based on the other great applications we got I&#8217;m also excited about the pipeline of communities that could host it in future years as WordCamp US travels across the United States and gives us an opportunity to learn and love a new city, as we have with Philadelphia.</p>\n<p>By the way, if you haven&#8217;t yet, now is a great time to <a href=\"https://wordpressdotorg.polldaddy.com/s/wordpress-2016-survey\">take the Annual WordPress Survey</a> and ask your friends to as well.</p>\n<p><a href=\"https://www.flickr.com/photos/143951935@N07/27492741871\">Photo Credit</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:\"Tue, 15 Nov 2016 23:24:17 +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: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:90:\"WPTavern: Upvato Backup Service Confirms Files Are Lost, Plans to Relaunch on New Provider\";s: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=63862\";s: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/upvato-backup-service-confirms-files-are-lost-plans-to-relaunch-on-new-provider\";s: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:4274:\"<p>Upvato creator Freddy Lundekvam has confirmed that all user files entrusted to the service have been permanently lost, as his previous storage provider is unable to recover them. After receiving a series of emails from the provider reminding him that payment was due, the provider terminated his account seven days after the invoice was overdue.</p>\n<p>Lundekvam said ordinarily he would expect his sites and servers to go offline in response to an unpaid invoice but this particular provider, which he would not identify, simply terminated his account.</p>\n<p>&#8220;I contacted the provider in good faith, knowing that any decent provider has complete backups of everything they terminate for X time after they terminate it,&#8221; Lundekvam said. &#8220;Apparently, with this &#8216;crappy&#8217; company, terminated means literally terminated. All decent backup providers have backups of their backups, and any provider with such a setup knows very well that terminating the backups at the same time as you terminate the original files is a HUGE mistake, after all, you have those backups in place just in case something is terminated wrongly or the system corrupts something. We can simply conclude with the fact that this provider didn&#8217;t do backups of their users&#8217; data and therefore would never be able to recover anything they have lost.&#8221;</p>\n<p>Although Lundekvam mentioned Amazon Glacier in a <a href=\"https://wptavern.com/upvato-backup-service-terminated-by-storage-provider-files-may-not-be-recoverable\" target=\"_blank\">previous interview</a> as an example of how cheap storage space is, he confirmed that Amazon was not the provider in question here. &#8220;Amazon was quickly ironed out in the launch phase due to the heavy adjustments it needed to make it work exactly the way we wanted it to,&#8221; he said.</p>\n<p>Lundekvam said he sincerely believed this backup provider was reliable and was disappointed to find out otherwise after trusting users&#8217; data with the company. Despite the misfortune and embarrassment of the current situation, he is determined to relaunch Upvato with a new provider that offers redundant backups.</p>\n<h3>Upvato to Relaunch with Improved Version that Allows Users to Define Backup Destination</h3>\n<p>Lundekvam said the new version will be launched &#8220;as soon as possible.&#8221; His team is considering firing up the current (old) version and then migrating as originally planned instead of relaunching with the new version. The improvements include a better backup algorithm and new functionality.</p>\n<p>&#8220;The very new version will allow the user to define their own destination / choice of backup location, whether that be on Upvato&#8217;s servers, their own FTP / SFTP server, Dropbox, Amazon, and other providers we&#8217;re looking into implementing,&#8221; Lundekvam said. &#8220;This would make Upvato function as a mere gateway that detects and keeps your backups in sync at your favorite destination, while at the same time presenting the same awesome visual experience on the website to display the sales ad associated with the item.&#8221;</p>\n<p>Lundekvam remains committed to keeping the core service free indefinitely and may add commercial upgrades if costs exceed what he is able to contribute on his own.</p>\n<p>&#8220;As long as I am able to sustain Upvato on my own, then it will remain ad-free and completely free to use,&#8221; he said. &#8220;But of course there are plans to monetize the website if we at some point need help keeping the lights on. That might be ad-generated revenue, or a premium service for premium functionality. But regardless of what we do then, the core functionality of Upvato &#8211; backing up your Envato files &#8211; will always remain free to use.&#8221;</p>\n<p>In response to commenters who suspected the service of fraud and users who may be wary of continuing with the service, Lundekvam said, &#8220;Upvato is not a fraud in any way. It&#8217;s really entirely up to the user if they want to give us a second chance or not. We are a completely free service that intends to do the very best we can do make sure that we stay a reliable, good way to store and backup your Envato files.&#8221;</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, 15 Nov 2016 22:48: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: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:25;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: WordPress 4.7 Improves Accessibility by Removing Alternative Text Fallbacks\";s: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=63819\";s: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/wordpress-4-7-improves-accessibility-by-removing-alternative-text-fallbacks\";s: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:1252:\"<p>When images are uploaded in WordPress 4.6.1 that have an empty alt text value, WordPress tries to generate one based on the caption text or the image title. If the image title is non descriptive as is common with photos uploaded from digital cameras, the alt text can be meaningless.</p>\n<p>In WordPress 4.7, the caption text and the image title fallbacks have been removed. The fallbacks were originally introduced to ensure every image included alternative text. Over time however, this practice has proven to be a poor user experience for people who use screen readers.</p>\n<p>Since the fallbacks are removed, users will need to explicitly set a value for the alt text field. <a href=\"https://make.wordpress.org/core/2016/11/11/improving-accessibility-of-image-alternative-text-in-4-7/\">According to Joe McGill</a>, the change will not affect content already published but will be the expected behavior in WordPress 4.7 and beyond.</p>\n<p>If you&#8217;re not sure what text to use to describe an image, check <a href=\"http://webaim.org/techniques/alttext/#basics\">out this article </a>on Webaim. It explains when alt text should be displayed and provides useful tips on how to describe an image.</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, 15 Nov 2016 18:51: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: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:64:\"WPTavern: Wedding Bride: A Free One-Page WordPress Wedding Theme\";s: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=60375\";s: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:74:\"https://wptavern.com/wedding-bride-a-free-one-page-wordpress-wedding-theme\";s: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:2864:\"<p><a href=\"https://wordpress.org/themes/wedding-bride/\" target=\"_blank\">Wedding Bride</a> is a new theme from Alex Itsios, co-founder of <a href=\"https://ketchupthemes.com/\" target=\"_blank\">Ketchup Themes</a>. The Cyprus-based theme company has <a href=\"https://wordpress.org/themes/author/alexitsios/\" target=\"_blank\">16 themes on WordPress.org</a>. Wedding themes are a relatively small niche in the directory with fewer than 20 listings. This new arrival stands out from the pack with its bold colors and customizability.</p>\n<p>Many WordPress wedding themes in the official directory seem like a wedding site forced into a blog-oriented design, with lingering post meta in areas where it serves no purpose. This particular niche is where a focused, one-page design really shines. Wedding Bride features event-specific front page sections for the couple to share their story but also allows for (optional) extra pages and a blog.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2016/08/wedding-bride-screenshot.png?ssl=1\"><img src=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2016/08/wedding-bride-screenshot.png?resize=880%2C660&ssl=1\" alt=\"wedding-bride-screenshot\" class=\"aligncenter size-full wp-image-60380\" /></a></p>\n<p>All of the theme&#8217;s options can be found in the Customizer where users can upload a header image, personalize the header overlay, and add various content sections &#8211; all of which are optional. It also includes an option to make the navigation menu sticky or have it scroll with the page (default).</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/08/wedding-bride-theme-1.png?ssl=1\"><img src=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/08/wedding-bride-theme-1.png?resize=1025%2C405&ssl=1\" alt=\"wedding-bride-theme\" class=\"aligncenter size-full wp-image-63806\" /></a></p>\n<p>Wedding Bride users can customize the background color and/or image. Unfortunately, the theme does not include a color picker to customize the pink accent color, but this can be changed with a little CSS. Blog pages include a sidebar and it supports four widget areas in the footer. The contact form section was created for use with <a href=\"https://wordpress.org/plugins/contact-form-7/\" target=\"_blank\">Contact Form 7</a>.</p>\n<p>Check out the <a href=\"http://www.platotheme.com/wedding-version/\" target=\"_blank\">live demo</a> to see the theme in action. <a href=\"https://wordpress.org/themes/wedding-bride/\" target=\"_blank\">Wedding Bride</a> is Alex Itsios&#8217; 16th theme on WordPress.org and his first foray into the wedding niche. If you&#8217;re looking for a theme that allows you to quickly create a wedding website with all the essential details on one page, you can download it for free from WordPress.org via your admin themes browser.</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, 15 Nov 2016 06:28: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: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:65:\"WPTavern: WP eCommerce 3.11.4 Patches SQL Injection Vulnerability\";s: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=63743\";s: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:76:\"https://wptavern.com/wp-ecommerce-3-11-4-patches-sql-injection-vulnerability\";s: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:1138:\"<p>Over the weekend, the WP eCommerce team released version 3.11.4 of its <a href=\"https://wordpress.org/plugins/wp-e-commerce/\">e-commerce plugin</a>. The update patches an SQL injection vulnerability that was responsibly disclosed by Mika Epstein, a member of the WordPress.org plugin review team.</p>\n<p><a href=\"https://wpecommerce.org/news/wp-ecommerce-3-11-4-security-update/\">According to Justin Sainton</a>, lead developer of WP eCommerce, the team was notified of the vulnerability on November 11th and patched within an hour. The update was available on WordPress.org the following day.</p>\n<p>&#8220;This vulnerability only affects users who use eWay as their payment gateway, have Gold Cart activated, and are using the as-of-yet-unreleased Theme Engine 2.0,&#8221; Sainton said.</p>\n<p>&#8220;We believe the number of users affected is likely close to zero, due to these conditions.&#8221;</p>\n<p>Users are highly encouraged to update as soon as possible. Created in 2006, WP eCommerce is one of the oldest plugins in the directory and is actively installed on more than 40K sites.</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, 15 Nov 2016 00:34:17 +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: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:92:\"WPTavern: Upvato Backup Service Terminated by Storage Provider, Files May Not be Recoverable\";s: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=63352\";s: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:102:\"https://wptavern.com/upvato-backup-service-terminated-by-storage-provider-files-may-not-be-recoverable\";s: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:5185:\"<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/01/upvato-featured.png?ssl=1\"><img src=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/01/upvato-featured.png?resize=1025%2C471&ssl=1\" alt=\"upvato-featured\" class=\"aligncenter size-full wp-image-50622\" /></a></p>\n<p><a href=\"https://www.upvato.com/\" target=\"_blank\">Upvato</a>, the service that specializes in backing up Envato Market files, has shut down without warning. Freddy Lundekvam, a full time programmer and frequent user of Envato products, created the service after losing 10 files to Envato&#8217;s policy of reserving the right to take down and remove any file at its or the author&#8217;s sole discretion. Losing files is a <a href=\"https://forums.envato.com/t/half-of-my-items-removed/27143/3\" target=\"_blank\">common frustration among Envato users</a>, as the company cannot guarantee the ongoing availability of products due to situations like copyright complaints and technical issues.</p>\n<p>Upvato made it easy for users to automatically backup their purchases, cataloguing them with screenshots, descriptions, titles, and author information. The service offered unlimited backups and Lundekvam encouraged users to connect their Envato accounts to keep their files safe. A few weeks ago, Upvato users started to suspect that the service was shutting down.</p>\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Anyone using <a href=\"https://twitter.com/hashtag/Upvato?src=hash\">#Upvato</a> for their themes etc from <a href=\"https://twitter.com/envato\">@envato</a> &#8211; I think you have just been duped!</p>\n<p>&mdash; Andrew Wilkinson (@parysnet) <a href=\"https://twitter.com/parysnet/status/793135773998514176\">October 31, 2016</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">What happened to <a href=\"https://twitter.com/hashtag/upvato?src=hash\">#upvato</a>? Looks like it died silently and nobody noticed. Zero commentary from the usual webdev pundits.</p>\n<p>&mdash; sunil (@sunilwilliams) <a href=\"https://twitter.com/sunilwilliams/status/791535374971523072\">October 27, 2016</a></p></blockquote>\n<p></p>\n<p>&#8220;I&#8217;m beginning to think this was not all above board,&#8221; one WP Tavern commenter <a href=\"https://wptavern.com/new-upvato-service-offers-free-backups-for-envato-market-products#comment-202262\" target=\"_blank\">said</a> after discovering that the site disappeared. &#8220;[Upvato] seamlessly copied all my themes to their server and then shut down with no warning!&#8221;</p>\n<p>Lundekvam, whose website can no longer be reached, replied to my first inquiry. After experiencing problems with Upvato&#8217;s provider, he is not hopeful that he can recover the files.</p>\n<p>&#8220;Our provider&#8217;s automated systems terminated everything related to Upvato,&#8221; Lundekvam said. &#8220;I am so frustrated and upset that you won&#8217;t believe it, but I am doing what I can do recover the files and or get a backup up and running. But it seems like the provider isn&#8217;t and wasn&#8217;t really a reliable backup provider at all, and as it is right now, it looks really dark for a possible chance to recover the files.&#8221;</p>\n<p>Lundekvam would not specify who his provider was, but had referenced Amazon Glacier in a <a href=\"https://wptavern.com/new-upvato-service-offers-free-backups-for-envato-market-products\" target=\"_blank\">previous interview</a> as an example of cheap storage space at a mere $7/month.</p>\n<p>&#8220;Such things shouldn&#8217;t happen with a backup provider like Upvato, and I am extremely surprised that it happened with our backup provider, causing it to affect Upvato,&#8221; he said. He also confirmed that he does not plan to shut the service down permanently.</p>\n<p>&#8220;If I am unable to recover the backup and files, then no, I am not shutting down,&#8221; Lundekvam said.&#8221; I would, and have to, install Upvato with a new provider and start over. Please rest assured that Upvato is coming back up. Regarding the concerned users, I am deeply sorry for the downtime and, possibly, loss of Envato files. It hurts that it happened, as this is in no way how I want Upvato to be seen or represented.&#8221;</p>\n<p>Lundekvam would not respond to subsequent inquiries. Upvato has had ample time to share this news via other outlets but the service did not have a Twitter account and its website has vanished, leaving users without any information. Lundekvam had said in previous interviews that he did not have plans to monetize Upvato in the immediate future. His motivation was to &#8220;make something cool and useful that people might want and need.&#8221;</p>\n<p>Unfortunately, since he treated Upvato as a side project and did not have further backups in place, an unexpected problem with his provider has wiped out the files users trusted with the service. In an ironic twist, the service has inadvertantly replicated the exact situation that users hoped to avoid with Envato. Lundekvam has not responded to further inquiries on the status of the recovery process, but we will update when any new information is available.</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, 14 Nov 2016 21:01: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: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: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:34:\"Matt: Flying Lotus, Never Catch Me\";s: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=46928\";s: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://ma.tt/2016/11/flying-lotus-never-catch-me/\";s: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:357:\"<p></p>\n<p>Music videos are themselves an art form, and it&#8217;s always interesting to me how an artist chooses to transform the interpretation of their song with the video. I&#8217;ve listened to this song since it came out but haven&#8217;t seen the video until now, and it will definitely make me listen to it differently. Featuring Kendrick Lamar.</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, 13 Nov 2016 18:49:52 +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: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:58:\"WPTavern: New WordPress Plugin Serves Pre-Compressed Emoji\";s: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=63682\";s: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:69:\"https://wptavern.com/new-wordpress-plugin-serves-pre-compressed-emoji\";s: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:3475:\"<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2016/11/compressed-emoji.png?ssl=1\"><img src=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2016/11/compressed-emoji.png?resize=627%2C250&ssl=1\" alt=\"compressed-emoji\" class=\"aligncenter size-full wp-image-63714\" /></a></p>\n<p>WordPress emoji are served from s.w.org, but they are not compressed. This impacts the SVG loading time, depending on how many emoji you are using, and can even throw warnings on Google&#8217;s <a href=\"https://developers.google.com/speed/pagespeed/insights/\" target=\"_blank\">PageSpeed Insights</a> tool. Turkey-based WordPress developer <a href=\"https://profiles.wordpress.org/m_uysl/\" target=\"_blank\">Mustafa Uysal</a> has just released <a href=\"https://wordpress.org/plugins/compressed-emoji/\" target=\"_blank\">Compressed Emoji</a>, a plugin that makes use of the <a href=\"https://developer.wordpress.org/reference/hooks/emoji_svg_url/\" target=\"_blank\">emoji_svg_url</a> filter introduced in 4.6. This filter allows developers to change the URL for where emoji SVG images are hosted.</p>\n<p>When the plugin is activated, the compression offers savings in the range of 3kb ~ 1.3kb (roughly %60) per emoji.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2016/11/emoji-compressed-comparison.png?ssl=1\"><img src=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2016/11/emoji-compressed-comparison.png?resize=1025%2C511&ssl=1\" alt=\"emoji-compressed-comparison\" class=\"aligncenter size-full wp-image-63717\" /></a></p>\n<p>Uysal said he hopes WordPress.org will consider compressing emoji in the future, especially since approximately 10% of the web is using WordPress 4.6. Compressing emoji is a small way to speed up a sizeable chunk of the web. A <a href=\"https://core.trac.wordpress.org/ticket/37374\" target=\"_blank\">ticket</a> was created on Trac four months ago, requesting cache headers for emoji files and compression. According to Gary Pendergast, the change is something that can be made outside of the WordPress core development cycle, so he closed the ticket and <a href=\"https://make.wordpress.org/systems/2016/07/20/there-are-no-cache-instructions/\" target=\"_blank\">passed the suggestion on to the Systems team</a>. Cache headers were added by the team, but compression was not implemented in that update.</p>\n<p>&#8220;The current plan is to move everything to a new CDN,&#8221; Gary Pendergast reported after chatting with the Systems team. &#8220;The current CDN is a bit outdated &#8211; they don’t support HTTP/2, for example. They need to do some more testing, but it’s high on the todo list.&#8221;</p>\n<p>In the meantime, users who want compressed emoji can use Uysal&#8217;s plugin. It compressed the files using <a href=\"https://github.com/svg/svgo\" target=\"_blank\">SVGO</a>, an open source Node.js-based tool for optimizing SVG vector graphics files. The tool removes unnecessary things like metadata, comments, hidden elements, and default or non-optimal values from the SVG files without affecting their rendering. Another advantage is it doesn&#8217;t require an internet connection for those who are developing locally.</p>\n<p><a href=\"https://wordpress.org/plugins/compressed-emoji/\" target=\"_blank\">Compressed Emoji</a> is available in the WordPress plugin directory and is also open for contributions on <a href=\"https://github.com/mustafauysal/compressed-emoji\" target=\"_blank\">GitHub</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, 11 Nov 2016 23:49: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: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:30:\"Dev Blog: WordPress 4.7 Beta 3\";s: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=4566\";s: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/2016/11/wordpress-4-7-beta-3/\";s: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:3091:\"<p>WordPress 4.7 Beta 3 is now available!</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.7, try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"https://wordpress.org/wordpress-4.7-beta3.zip\">download the beta here</a> (zip).</p>\n<p>For more information on what’s new in 4.7, check out the <a href=\"https://wordpress.org/news/2016/10/wordpress-4-7-beta-1/\">Beta 1</a> and <a href=\"https://wordpress.org/news/2016/11/wordpress-4-7-beta-2/\">Beta 2</a> blog posts, along with <a href=\"https://make.wordpress.org/core/tag/4-7+dev-notes/\">in-depth field guides on make/core</a>. Some of the changes in Beta 3 include:</p>\n<ul>\n<li><strong>REST API:</strong> The <code>unfiltered_html</code> capability is now respected and <code>rest_base</code> has been added to response objects of <code>wp/v2/taxonomies</code> and <code>wp/v2/types</code>, while <code>get_allowed_query_vars()</code> and the <code>rest_get_post</code> filter have been removed.</li>\n<li><strong>Roles/Capabilities:</strong> Added meta-caps for comment, term, and user meta, which are currently only used in the REST API.</li>\n<li><strong>I18N:</strong> Added the ability to change user&#8217;s locale back to site&#8217;s locale. (<a href=\"https://core.trac.wordpress.org/ticket/38632\">#38632</a>)</li>\n<li><strong>Custom CSS:</strong> Renamed the <code>unfiltered_css</code> meta capability to <code>edit_css</code> and added revisions support to the <code>custom_css</code> post type.</li>\n<li><strong>Edit shortcuts:</strong> Theme authors should take a look at <a href=\"https://make.wordpress.org/core/2016/11/10/visible-edit-shortcuts-in-the-customizer-preview/\">the developer guide to the customizer preview&#8217;s visible edit shortcuts</a> and update their themes to take advantage of them if not already implementing selective refresh.</li>\n<li><strong>Various bug fixes:</strong> We’ve made <a href=\"https://core.trac.wordpress.org/log/trunk/src?action=stop_on_copy&mode=stop_on_copy&rev=39200&stop_rev=39143&limit=200&verbose=on&sfp_email=&sfph_mail=\">over 50 changes</a> in the last week.</li>\n</ul>\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></p>\n<p><strong>If you think you’ve found a bug</strong>, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://make.wordpress.org/core/reports/\">file one on WordPress Trac</a>, where you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</p>\n<p><em>Building the future</em><br />\n<em>A global community</em><br />\n<em>Stronger together</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:\"Fri, 11 Nov 2016 03:30:52 +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:\"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:\"\";}}}}}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:52:\"WPTavern: Andy Baio Relaunches Waxy.org on 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=63685\";s: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://wptavern.com/andy-baio-relaunches-waxy-org-on-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:3333:\"<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/11/waxy.png?ssl=1\"><img src=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/11/waxy.png?resize=1025%2C415&ssl=1\" alt=\"waxy\" class=\"aligncenter size-full wp-image-63701\" /></a></p>\n<p>After 14 years of blogging with MovableType, Andy Baio has <a href=\"http://waxy.org/2016/11/redesigning-waxy-2016-edition/\" target=\"_blank\">relaunched Waxy.org on WordPress</a>. Baio&#8217;s media and technology blog has been a continual source of original content about life on the internet and how it affects our culture. The migration includes 472 posts and 15,891 entries from his sideblog <a href=\"http://waxy.org/category/links/\" target=\"_blank\">Waxy Links</a>.</p>\n<p>Waxy.org played a small part in WordPress.org&#8217;s early history. In 2005 Baio broke the story about <a href=\"http://waxy.org/2005/03/wordpress_websi/\" target=\"_blank\">WordPress quietly hosting search engine spam articles</a> in order to help cover some of the site&#8217;s expenses. The exposure and subsequent removal of <a href=\"http://random.waxy.org/html/google_wordpress.html\" target=\"_blank\">the articles</a> temporarily decimated WordPress.org&#8217;s pagerank but Matt Mullenweg&#8217;s <a href=\"https://ma.tt/2005/04/a-response/\" target=\"_blank\">response</a> to the situation brought more transparency to how the open source project was being funded. Baio interviewed Mullenweg for the piece and considered it his first foray into serious journalism.</p>\n<p>In his post about the site&#8217;s redesign Baio concedes that blogs are &#8220;not really part of the cultural conversation anymore&#8221; but said he thinks there&#8217;s still potential in the medium.</p>\n<p>&#8220;There a few reasons why I’m sad about the decline of independent blogging, and why I think they’re still worth fighting for,&#8221; Baio said. &#8220;Ultimately, it comes down to two things: ownership and control.&#8221;</p>\n<p>Baio explained why it&#8217;s important for him to control his own space on the web, as opposed to putting content at the mercy of third-party platforms whose futures are not guaranteed:</p>\n<blockquote><p>Last week, Twitter announced they’re shutting down Vine. Twitter, itself, may be acquired and changed in some terrible way. It’s not hard to imagine a post-Verizon Yahoo selling off Tumblr. Medium keeps pivoting, trying to find a successful revenue model. There’s no guarantee any of these platforms will be around in their current state in a year, let alone ten years from now.</p>\n<p>Here, I control my words. Nobody can shut this site down, run annoying ads on it, or sell it to a phone company. Nobody can tell me what I can or can’t say, and I have complete control over the way it’s displayed. Nobody except me can change the URL structure, breaking 14 years of links to content on the web.</p></blockquote>\n<p><a href=\"http://waxy.org/\" target=\"_blank\">Waxy.org</a> is now responsive and uses a custom theme built using Automattic&#8217;s <a href=\"http://components.underscores.me/\" target=\"_blank\">Components starter-theme generator</a>. Baio will continue exploring odd corners of the internet on his blog and plans to share his thoughts about the challenges of navigating the ecosystem of independent publishers.</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, 10 Nov 2016 23:45: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: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: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:57:\"WPTavern: bbPress 2.5.11 Adds WordPress 4.7 Compatibility\";s: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=63694\";s: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://wptavern.com/bbpress-2-5-11-adds-wordpress-4-7-compatibility\";s: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:2494:\"<p>The bbPress development team has <a href=\"https://bbpress.org/blog/2016/11/bbpress-2-5-11-maintenance-release/\">released 2.5.11</a> to add support <a href=\"https://make.wordpress.org/core/2016/11/07/changed-loading-order-for-current-user-in-4-7/\">for a technical change</a> in WordPress 4.7. Users are highly encouraged to update to bbPress 2.5.11 <strong>before</strong> updating to WordPress 4.7. In 4.7, the loading order for the current user in the function stack was changed to accommodate <a href=\"https://make.wordpress.org/core/2016/11/07/user-admin-languages-and-locale-switching-in-4-7/\">user locale switching</a>.</p>\n<p>Previously, BuddyPress and bbPress displayed a custom notice when a user was initialized without using WP-&gt;init(). In addition to patching the issue in <a href=\"https://buddypress.trac.wordpress.org/ticket/7305\">BuddyPress</a> and <a href=\"https://bbpress.trac.wordpress.org/ticket/2309\">bbPress</a>, a new <a href=\"https://core.trac.wordpress.org/ticket/23016\">wp_roles_init filter</a> was added to WordPress that allows plugins to add custom roles when they&#8217;re initialized.</p>\n<p>The changes mentioned above are technical in nature so I asked John James Jacoby, lead developer of bbPress, what the update really means. &#8220;bbPress loads its roles on-the-fly, in a similar way to how post-types and taxonomies are registered,&#8221; Jacoby told the Tavern.</p>\n<p>&#8220;With locales and roles now having a reversed load order, bbPress needed some code changes to work for both WordPress 4.6 and 4.7 without causing any problems for third-party bbPress plugins and non-English installations.&#8221;</p>\n<p>This particular improvement has personal historical meaning to Jacoby, &#8220;This change to WordPress core in 4.7 is a long time coming,&#8221; he said.</p>\n<p>&#8220;It was the very first bug I ever reported in WordPress&#8217; IRC channel back in 2008, when I was working on a large multi-lingual multisite installation. It&#8217;s how I met Peter Westwood and Jen Mylo, and it was their kindness that made it clear that WordPress was the platform for me.&#8221;</p>\n<p>Jacoby also notes that per-forum moderators, favorites, and subscriptions have been rewritten in bbPress 2.6. During testing, performance enhancements were discovered and submitted to WordPress core and have been implemented across the forums on WordPress.org. Work continues on bbPress 2.6 which is expected to ship in 2017.</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, 10 Nov 2016 22:33:44 +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: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:81:\"WPTavern: WPWeekly Episode 253 – BuddyPress 2.8, WordCamp US, and PressNomics 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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wptavern.com?p=63684&preview=true&preview_id=63684\";s: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:86:\"https://wptavern.com/wpweekly-episode-253-buddypress-2-8-wordcamp-us-and-pressnomics-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:3135:\"<p>In this episode of WordPress Weekly, <a href=\"http://marcuscouch.com/\">Marcus Couch</a> and I discuss the news of the week. WordCamp US live stream tickets will be free this year and development of BuddyPress 2.8 kicks off. We talk about the revamped guidelines for the WordPress plugin directory and how they should help streamline the review process.</p>\n<p>Last but not least, we discuss an important update to bbPress. Because of some recent life changes, the recording time for WordPress weekly will now be on Wednesdays at 3PM Eastern, 12PM Pacific.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://wptavern.com/buddypress-2-8-development-kicks-off-2016-survey-now-open-for-developers\">BuddyPress 2.8 Development Kicks Off, 2016 Survey Now Open for Developers</a><br />\n<a href=\"https://wptavern.com/wordcamp-us-live-stream-tickets-now-available\">WordCamp US Live Stream Tickets Now Available</a><br />\n<a href=\"https://wptavern.com/take-the-2016-wordpress-user-survey\">Take the 2016 WordPress User Survey</a><br />\n<a href=\"https://wptavern.com/wordpress-plugin-team-publishes-revamped-guidelines-for-plugin-directory\">WordPress Plugin Team Publishes Revamped Guidelines for Plugin Directory</a><br />\n<a href=\"https://wptavern.com/pressnomics-5-scheduled-for-april-6-8-2017-in-phoenix-az\">PressNomics 5 Scheduled for April 6-8, 2017 in Phoenix, AZ</a><br />\n<a href=\"https://bbpress.org/blog/2016/11/bbpress-2-5-11-maintenance-release/\">bbPress 2.5.11 – Maintenance Release</a></p>\n<h2>Plugins Picked By Marcus:</h2>\n<p><a href=\"https://wordpress.org/plugins/grid-canvas-pinterest/\">Grid Canvas &#8211; Pinterest Image Creator </a>automatically detects all the images in a post and adds them to a grid layout. It comes with plenty of predefined grid layouts to choose from and there are more coming soon. You can also select the image size that is most optimal for different social networks.</p>\n<p><a href=\"https://wordpress.org/plugins/disable-password-changed-notifications/\">Disable Password Changed Notifications</a> by Pippin Williamson disables the notification email sent to site administrators when users change their passwords.</p>\n<p><a href=\"https://wordpress.org/plugins/wp-private-comment-notes/\">WP Private Comment Notes</a> allows WordPress admins and or moderators to add and manage private notes for comments. Additionally, each note can be shared with the user who left the original comment.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, November 16th 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\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href=\"https://wptavern.com/feed/podcast\" target=\"_blank\">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\">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #253:</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, 10 Nov 2016 20:53:21 +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:91:\"WPTavern: WordPress Community Team Proposes New Selection Process for 2017 Summit 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=63604\";s: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:102:\"https://wptavern.com/wordpress-community-team-proposes-new-selection-process-for-2017-summit-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:4890:\"<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2015/07/testing.jpg?ssl=1\"><img src=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2015/07/testing.jpg?resize=960%2C474&ssl=1\" alt=\"testing\" class=\"aligncenter size-full wp-image-46092\" /></a></p>\n<p>WordCamp Europe 2017 is set to <a href=\"https://wptavern.com/wordcamp-europe-2017-will-host-the-next-wordpress-community-summit\" target=\"_blank\">host the next community summit</a> in Paris. This will be the first time the event has been held outside of the United States, a change that makes it more accessible for contributors who are unable to obtain a visa to enter the U.S.</p>\n<p>Attaching the summit to WordCamp Europe was the next logical step, as the event brings together project contributors from around the world. Europe is one of the fastest growing regions for the WordPress community in terms of events, with a <a href=\"https://wptavern.com/europe-tops-wordcamp-growth-in-2015-with-70-increase-in-events\" target=\"_blank\">70% increase in WordCamps in 2015</a>. There were 20 WordCamps held in October and 50% of those were hosted in European cities.</p>\n<p>The past three community summits have been invitation-only in order to ensure those present were active contributors to WordPress and to enable a format that facilitates face-to-face discussions on key issues facing the project and the community. This inevitably leaves many valuable contributors on the outside. In an effort to mitigate the sense of exclusivity around the event, the WordPress Community Team is <a href=\"https://make.wordpress.org/community/2016/11/03/wordpress-community-summit-2017/\" target=\"_blank\">proposing a new selection process for 2017</a>:</p>\n<blockquote><p>If we have to limit our attendance to have productive, collaborative discussions at the Summit, then choosing the participants becomes a challenge if we don’t know what the teams are going to discuss ahead of time. Therefore, this year I suggest we try something new:</p>\n<p>Let’s ask teams to decide on the challenging, controversial, or sensitive issues they want to discuss at the summit before the summit is held. Then, once the teams know what they want to talk over in person, they can nominate and select the people needed to represent all points of view in each of those discussions. This way, the event stays small, hard topics get discussed, but the selection process is more transparent and functional.</p></blockquote>\n<p>Rocio Valdivia, who posted the proposal on behalf of the team, roughly outlined how the selection process would work. She suggested each make.wordpress.org project team would create and publish a list of topics/issues for discussion at the summit and submit them by December 20th. Teams would then select representatives to attend the summit. Two members of those selected would be assigned to help with the organization and logistics of the summit, including tasks such as finding sponsors, travel assistance, and communication.</p>\n<p>&#8220;The intention of this approach is to propose a more open and team-focus Community Summit with transparent participation from all active contributors and reps of each team,&#8221; Valdivia said. &#8220;This way we can hopefully anticipate barriers and cross-team difficulties that might come up, and avoid them.&#8221;</p>\n<p>This approach is different from past events where attendees were not part of the organizational aspects but it gives contributors more ownership of the event and their teams&#8217; specific goals. Details and logistics would be worked out later in the year with the help of the WCEU organizers.</p>\n<p>The Community Team is asking for feedback on the <a href=\"https://make.wordpress.org/community/2016/11/03/wordpress-community-summit-2017/\" target=\"_blank\">proposal</a> before implementing a plan of action for the new selection process. As the open source project has grown, WordPress has hundreds of contributors spread across its three dozen core <a href=\"https://make.wordpress.org/core/components/\" target=\"_blank\">components</a>. So far contributors have weighed in on the initial proposed number of team representatives and the deadline for preparing topics.</p>\n<p>There was also some concern in the Community Team&#8217;s meeting on Slack as to whether the new selection process will perpetuate the pattern of the same people being invited to the summit every time simply because they are most active in the project. Allowing teams to nominate their representatives based on the anticipated topics will make the selection process more focused on which contributors are best suited to work on pressing issues. Moving the location to Europe will also give regional contributors the opportunity to bring fresh ideas and perspectives, especially regarding the challenges of multilingual publishing with 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:\"Thu, 10 Nov 2016 06:48: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:\"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: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:47:\"bbPress: bbPress 2.5.11 – 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:29:\"https://bbpress.org/?p=178971\";s: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://bbpress.org/blog/2016/11/bbpress-2-5-11-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1075:\"<p>bbPress 2.5.11 is out, and is a maintenance release for all previous 2.x versions. 2.5.11 includes support for the soon to be released WordPress 4.7. If you&#8217;re planning on updating to WordPress 4.7 right away, you&#8217;ll want to update to bbPress 2.5.11 immediately.</p>\n<p>If you&#8217;re using any version of bbPress 2.x and have not yet updated, please take a moment to update your bbPress installations to 2.5.11. If you&#8217;re using WordPress&#8217;s built-in updater, it should only take a click or two. If you need help, please reach out in our <a href=\"https://bbpress.org/forums/\">support forums</a> and someone will be happy to assist you.</p>\n<p>These fixes have also been ported over to 2.6, which we continue to run here at bbPress.org and BuddyPress.org.</p>\n<hr />\n<p>Speaking of bbPress 2.6, per-forum moderators, favorites, and subscriptions are fully refactored and working pretty great. Our findings have also helped push performance improvements upstream to WordPress core, and are already employed across the forums on WordPress.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:\"Thu, 10 Nov 2016 00:27: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:17:\"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:\"\";}}}}}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:103:\"WPTavern: A New Way to Search, Preview, and Install Themes in the Customizer Removed From WordPress 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:29:\"https://wptavern.com/?p=63634\";s: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/a-new-way-to-search-preview-and-install-themes-in-the-customizer-removed-from-wordpress-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4376:\"<p>Astute testers may have noticed a new feature in WordPress 4.7 beta 1 that enabled users to search, preview, and install themes from within the customizer. This feature was part of <a href=\"https://make.wordpress.org/core/2016/10/24/customize-update-2016-10-23/\">five feature projects</a> related to the customizer that were approved for merge last month. Its goal is to <a href=\"https://make.wordpress.org/core/2016/10/03/feature-proposal-a-new-experience-for-discovering-installing-and-previewing-themes-in-the-customizer/\">unify the theme browsing and customizing experience</a>.</p>\n<a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2016/11/CustomizerThemeBrowserFlow.png?ssl=1\"><img class=\"size-full wp-image-63638\" src=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2016/11/CustomizerThemeBrowserFlow.png?resize=1025%2C793&ssl=1\" alt=\"Customizer Theme Browser Flow\" /></a>Customizer Theme Browser Flow\n<p>It was removed in WordPress 4.7 beta 2. Helen Hou-Sandí, WordPress 4.7 release lead, <a href=\"https://core.trac.wordpress.org/ticket/37661#comment:121\">reverted the change</a> after <a href=\"https://core.trac.wordpress.org/ticket/37661#comment:113\">collecting feedback. </a>Some of the reasons for reverting the feature include:</p>\n<ul>\n<li>Displaying on mobile devices is broken.</li>\n<li>Inability to close the feature/filter accordion.</li>\n<li>Checkmarks are overlayed on top of the search form.</li>\n<li>The full-screen plus reload experience isn&#8217;t polished.</li>\n</ul>\n<p><a href=\"https://core.trac.wordpress.org/ticket/37661#comment:121\">According to Hou-Sandí</a>, there is not enough time left in the development cycle to polish the design and make it sufficient for WordPress 4.7. Nick Halsey, who helps maintain the Customizer component, <a href=\"https://core.trac.wordpress.org/ticket/37661#comment:127\">expressed displeasure</a> with the decision.</p>\n<p>&#8220;Abruptly deciding to pull something without allowing any opportunity to improve things or even bring it up in a weekly dev chat is ridiculous,&#8221; Halsey said.</p>\n<p>&#8220;Had I been asked to provide patches for outstanding bugs (one of which never even received a ticket), I would have gladly done so sooner &#8211; this was my highest priority for core for the past 4 months.&#8221;</p>\n<p>Halsey goes on to say that the revert is disrespectful and insulting to him and that he is unlikely to further contribute to the project until it is back in trunk. Samuel Sidler, <span class=\"st\">Apollo Team Lead at Automattic</span>, <a href=\"https://core.trac.wordpress.org/ticket/37661#comment:124\">responded to Halsey </a>supporting Hou-Sandí&#8217;s decision.</p>\n<p>&#8220;Making a decision to pull a highly visible feature is hard, but, as you know, it&#8217;s ultimately one that the release lead should make as it&#8217;s <em>their release</em> and they have the best overall view,&#8221; Sidler said.</p>\n<p>Weston Ruter, who also helps maintain the Customizer component, asked if the revert could be reversed if patches to outstanding issues were created.</p>\n<p>&#8220;No &#8211; if this were a matter of problems that have defined solutions already then the course of action would not have been a revert,&#8221; Hou-Sandí <a href=\"https://core.trac.wordpress.org/ticket/37661#comment:130\">responded</a>. &#8220;I know that it would feel better to have something more than &#8216;my gut and the guts of others say no&#8217;, but if there was more definition to the problems then we may not have been in a position where reverting from this release was the only sane thing to do.&#8221;</p>\n<p>The <a href=\"https://core.trac.wordpress.org/ticket/37661\">feature has been punted</a> and the milestone was changed from WordPress 4.7 to a Future Release.</p>\n<h2>A Window Into How WordPress Development Works</h2>\n<p>The quotes I published above are only part of the story. I highly encourage you to start with <a href=\"https://core.trac.wordpress.org/ticket/37661#comment:113\">this post</a> and read every response in full. It&#8217;s a great opportunity to see a WordPress release lead in action and how and why certain decisions in WordPress development are made. Those interested in the feature&#8217;s progress can follow along by <a href=\"https://core.trac.wordpress.org/ticket/37661\">monitoring this ticket</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, 09 Nov 2016 23:41: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: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:49:\"HeroPress: Uncomfortable doesn’t mean walk away\";s: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=1466\";s: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/uncomfortable-doesnt-mean-walk-away/\";s: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:23144:\"<img width=\"960\" height=\"480\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2016/11/110916-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: Uncomfortable often means there is something amazing to be learnt.\" /><p>I am not a developer. Confession? It feels like it sometimes. In my mind’s eye I see a roomful of skittish WordPress marketers with dark-ringed eyes, disclosing the number of times they pretended to understand something technical when it made about as much sense to them as the moon landing. Frustrated they can’t code it themselves. Maybe it’s just me in that room.</p>\n<p>I am a words person – a creative, a copywriter, and a marketer. My heart beats faster over ancient English literature, clever mailers, alliteration, storytelling and subject lines, and the shapeshifting challenge of building an authentic brand in a world of smoke, mirrors, and shmoozing.</p>\n<p>Topher asked me to write my WordPress story and when I thought about what I’ve learnt over the past two years what came to mind was: <strong>uncomfortable doesn’t mean walk away</strong>.</p>\n<p>Far from being something to categorically flee or avoid, discomfort is a signpost to watch out for – something to embrace and step bravely towards. Obviously there are exceptions – but in my experience discomfort often means lean in, listen closely, change something.</p>\n<p>I’ve chosen to share a few of the ways I’ve encountered uncomfortable in my WordPress journey so far, and why I’m grateful.</p>\n<h3>A bit of background</h3>\n<p>Perhaps we are all creatures of habit on some level, but I really am. For example, when backpacking with my best friend in 2008 from Istanbul down to Cairo – through Syria and Jordan, including places that are now literally non-existent – she and I noticed that if we found a good restaurant I’d suggest returning the following night while she always wanted to try new spots.</p>\n<p>When I find something I like, it makes perfect sense to me to stick with it, sometimes to a fault. Until fairly recently I would have described myself as someone who didn’t thrive on change. This partly explains why by the age of twenty nine my entire life had played out in one city.</p>\n<a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2016/11/IMG_5951-min.jpg\"><img class=\"size-large wp-image-1470\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2016/11/IMG_5951-min-1024x768.jpg\" alt=\"Marina as a child with mother\" width=\"960\" height=\"720\" /></a>My beautiful mum, brother and I. My mum is a superhuman and I miss her daily.\n<p>Birth, preschool to postgraduate studies, the first nine years of my career, family, friends, life – all in one patch.</p>\n<p>I have been privileged to do some excellent travelling to amazing places – European beach holidays and ski trips (obviously I broke my arm), teaching English for four weeks in South Korea, a cruise in Alaska, a church trip to Singapore and Malaysia, Vancouver to visit family – but my sense of home and place was unwaveringly Cape Town.</p>\n<p>At the beginning of 2014 I decided to emigrate. The delay between the idea occurring to me and resigning was less than two weeks. With a British passport through my English mum and a mild obsession with all things British, London was it. It seemed wise to secure a job first but my gut said I should have faith and move regardless so I resigned from Yuppiechef.com <a href=\"https://www.yuppiechef.com/spatula/10-thoughts-about-community-management-and-social-media/\">where I’d been for nearly five years</a>, sold my car, and booked a one way ticket.</p>\n<p>At this point, it would be fair to say WordPress was not even really on my radar. It powered Yuppiechef’s blog so I’d used it in that capacity and <a href=\"https://marinapape.com/\">my own blog</a> was on WordPress.com – but it was pretty much just a thing to do with the internet that helped people publish stuff.</p>\n<p>A week before I set off I was having sushi with friends and got chatting to a mouthy American who worked for WooThemes. Hearing of my pending departure and getting a sense of my strengths and what I loved to do, he suggested I consider applying. Less than a week later I accepted an offer to join Woo’s then-tiny marketing team. I’m still amazed at the speed with which it all happened – and will be forever amused by Mark and Warren’s confidence in me as a total WordPress n0ob (maybe they didn’t realise!).</p>\n<a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2016/11/IMG_8001-min.jpg\"><img class=\"size-large wp-image-1471\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2016/11/IMG_8001-min-1024x768.jpg\" alt=\"I love MailChimp. Freddy lives on my desk beside some Woo stickers\" width=\"960\" height=\"720\" /></a>I love MailChimp. Freddy lives on my desk beside some Woo stickers\n<p>And so my WordPress journey began in London on 1 July 2014, fresh off the boat and working remotely for the first time. I logged online from a coffee shop – specifically Timberyard, which has become a familiar friend – and dived headfirst into a world I hadn’t realised would be so technical. And digital. Marketing a digital product is a very different kettle of fish to kitchen products. And working remotely as an extrovert?</p>\n<p>In my first week I was sent to WordCamp Brighton where I innocently asked someone the difference between .org and WordPress.com. This was the first prickle of my first uncomfortable hurdle: being okay with not knowing everything.</p>\n<h3>It really is okay not to know everything.</h3>\n<p>It sounds stupid to even write that one needs to be okay with not knowing everything – of course one can’t, but at Yuppiechef.com I sure knew a lot more about a lot more. There, my lack of technical understanding wasn’t a thing, marketing was lauded, and our brand was at the forefront of what set us apart. <a href=\"http://ventureburn.com/2013/03/the-yuppiechef-cult-how-a-startup-sparked-a-religion/\">People wrote about how the following for Yuppiechef was cult-like</a>, and I’d helped create that.</p>\n<p>Joining Woo I was a tiny fish all over again, and I was swimming in a world with languages I didn’t understand.</p>\n<blockquote><p>Everyone is a genius. But if you judge a fish by its ability to climb a tree, it will live its whole life believing that it is stupid. – unknown (but attributed to Einstein)</p></blockquote>\n<p>It was a little bit terrifying to be a marketer in this tech-celebratory world. And it took me a long time to accept I have something significant to offer at WooCommerce (and now Automattic) and feel confident enough to add my voice to conversations. Why? I guess I am proud. In the early days I was constantly tempted to pretend to know more than I do (for the record this is a bad idea) and developed a hefty dose of imposter syndrome, which worsened when Automattic acquired WooCommerce. I found myself wondering if they would have hired me.</p>\n<p>For a few months, the fear I felt kept me from bringing to the table the valuable things I did know.</p>\n<a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2016/11/IMG_7373-min.jpg\"><img class=\"size-large wp-image-1472\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2016/11/IMG_7373-min-1024x768.jpg\" alt=\"Standing by a concrete wall with a vast ocean scene behind.\" width=\"960\" height=\"720\" /></a>With my team in Cape Town earlier this year. Nicole, Aviva, me, Gareth and Kevin &lt;3.\n<p>It’s scary admitting a lack of understanding, it takes strong relationships with colleagues (which take time to build, especially remotely) to raise your hand and be vulnerable. But the problem is that not doing so ends up blocking and robbing the contribution you could make. It silences your voice. It is not possible to be a master of all trades: yes I need a working understanding of our products, but I don’t need to become a Javascript developer. One body, many parts, all valuable.</p>\n<p>This learning curve was uncomfortable for me. At various points I have wanted to bail, or take a year to learn how to code fulltime. But I am really glad I haven’t because marketing is vital and that is what I can do. And do very well (when I’m not looking over my shoulder).</p>\n<p>It’s okay to be an expert in what you love, not what other people love. It’s why we have teams. It’s what makes the world interesting.</p>\n<a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2016/11/IMG_3576-min.jpg\"><img class=\"size-large wp-image-1473\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2016/11/IMG_3576-min-1024x768.jpg\" alt=\"Classroom filled with people\" width=\"960\" height=\"720\" /></a>The first WordPress London meetup I attended. It was pretty awesome.\n<h3>Remote relationships take longer to build but they sure run deep.</h3>\n<p>My degree was in Psychology and it remains an active interest. ENFJ is proudly in my Twitter bio, I love taking personality tests and calling out and connecting with the underbellies and depths of fellow human beings.</p>\n<blockquote><p>&#8220;<strong>My friends are my estate</strong>. Forgive me then the avarice to hoard them.&#8221; – Emily Dickinson</p></blockquote>\n<p>If you’re familiar with Gallups Strengthfinder, I’m a Relator to the bone. People often ask how I have the discipline to work from home but that’s pocket change compared to the relational challenge. Showing up to work and being productive hasn’t been the thing I’ve found difficult – it’s trying to build relationship digitally with people far away and in different timezones.</p>\n<p>Plus I find there is a certain type of rapport, creativity, and energy that is really hard to create remotely when it comes to brainstorming and collaborating. The buzz of having an idea and someone else adding to it IRL, growing it into something greater. This was not a comfortable thing, but again choosing to stay has proven invaluable.</p>\n<p><strong>Remote relationships take longer to build, but they sure run deep</strong>. The bonding that happens when you come together for meetups and WordCamps is extraordinary. I have grown to properly know and love my colleagues (not all 500+ Automatticians yet but certainly my immediate team) and a bunch of awesome WordPress people I’ve met.</p>\n<a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2016/11/IMG_8319-min.jpg\"><img class=\"size-large wp-image-1474\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2016/11/IMG_8319-min-1024x768.jpg\" alt=\"On-screen grid of faces in a google hangout\" width=\"960\" height=\"720\" /></a>Well hello Woo people. Here’s us hanging out on Air.\n<p>It’s tiring flying to meetups, and you miss home, but it’s now becoming hard to leave them. My heart sometimes feels like it is scattered in little bits: a fragment with Scotty and the Dekode crew in Norway, another few with Louise in Kwazulu Natal, Cobus and Dom in Cape Town and chunks with Nicole and Aviva stateside. It’s fragmenting, but what a privilege.</p>\n<p>To keep me grounded day to day, I’ve helped start and now am involved in running a non-profit coworking space, which has opened up a whole new web of relationships in London. If you’re ever in town, pop into <a href=\"http://www.arkcoworking.com/\">ARK Coworking</a> for a pour over coffee.</p>\n<p>Working remotely is different. But it’s a pretty niche kind of special to have a web of people around the world that you would otherwise be totally unconnected to.</p>\n<a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2016/11/IMG_4183-min.jpg\"><img class=\"size-full wp-image-1475\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2016/11/IMG_4183-min.jpg\" alt=\"People standing astride bikes, flashing gang symbols.\" width=\"749\" height=\"549\" /></a>The Woo biker gang on a marketing meetup near Lake Michigan, 2015\n<p>Which brings me to another uncomfortable hurdle brought squarely to me by WordPress: the challenge of responding well to diversity and difference.</p>\n<h3>Thinking something for a long time doesn’t mean it’s true.</h3>\n<p>Part of <a href=\"https://automattic.com/creed/\">Automattic’s creed</a> is to never stop learning. Being part of WordPress has brought me into close proximity with a more varied, vocal, challenging, and diverse group than I could have made up.</p>\n<p>The thing about being a human is you only ever get to be one of them. One in over seven billion. How much about other people and parts of the world you don’t live in do you know, really? How much do I? Being part of WordPress has opened my eyes to diversity in a way that is hard to describe. Emigrating helped too, but it is very possible to live in a bubble wherever you go.</p>\n<blockquote><p>A long habit of not thinking a thing wrong gives it a superficial appearance of being right. – Thomas Paine</p></blockquote>\n<p>Just because something has always been a certain way, doesn’t make it right. Being part of WordPress, and Automattic, has helped me greatly in learning how to hold what I believe to be right and true gently, and have equal respect for other people’s right and true.</p>\n<p>I ran the WooCommerce London meetup for two years which brought me into contact with a very mixed group; I was part of Automattic’s diversity workshop at the GM which was educational to say the least; when my friend Rosie started a <a href=\"http://mouthywomen.work/\">blog</a> to highlight out how mouthy women get told they’re too masculine, I got behind her heart and soul.</p>\n<a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2016/11/Screen-Shot-2016-11-03-at-13.21.46-min.png\"><img class=\"wp-image-1476 size-full\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2016/11/Screen-Shot-2016-11-03-at-13.21.46-min.png\" alt=\"Stewart Ritchie sharing at the WooCommerce London meetup. Photo: Gabor Javorsky.\" width=\"601\" height=\"447\" /></a>Stewart Ritchie sharing at the WooCommerce London meetup. Photo: Gabor Javorsky.\n<p>The most poignant example of this for me was much closer to home. I wrote some copy a while ago as the backstory of Woo’s ninja mascot, Hiro and included in it a bunch of references to Japanese culture that, though well intentioned, turned out to be not okay. It had been up for ages before someone with a different enough perspective flagged it. Ouch.</p>\n<p>I went home after a long day of tears and much Slack messaging and confided in my Malaysian flatmate about it, half expecting him to comfort me and say the whole thing really wasn’t such a big deal and that it didn’t bother him. Instead his only comment was: “<em>That’s good. It will make your company better.</em>”</p>\n<p>We live, we learn. We wound, we grow.</p>\n<p>John Maeda, who recently joined Automattic as Head of Design and Inclusion, calls such oversights in our thinking ‘lacunae’. Being part of the worldwide community of WordPress has brought a number of my own lacunae into sharp focus. It’s also made me more able to exist peacefully alongside people whose views I don’t share. I’m a human, they’re a human. Two in seven billion.</p>\n<p>Now, the idea of stepping away and retreating to a more homogenous, same-y group of people who tend to agree with me is not just unattractive, it’s scary.</p>\n<p>WordPress helps me be open-minded and it’s vehicle for doing this is individuals who are willing to speak up. Let’s help each other, as kindly and graciously as we can.</p>\n<h3>Marketing a WordPress product is difficult.</h3>\n<p>I’ve found marketing WooCommerce challenging for two reasons.</p>\n<p>First there is the classic digital marketer’s problem of how to build relationship with customers you never get to meet. All we have are words online and if we’re lucky some rituals and routines we can inject life into (I wrote about this strategy <a href=\"https://woocommerce.com/2015/11/4-customer-rituals/\">here</a>).</p>\n<p>Over the past two years there have been a number of times I have thrown my hands up in the air and wanted to market something that is just easier to sell (coffee, an awesome gadget, luxury jewelry).</p>\n<p>On top of that eCommerce is a competitive space and selling WordPress can be a little complex messaging-wise, especially for non-coders and those not familiar with WordPress:</p>\n<p><em>Friend: Do I even have WooCommerce yet?</em><br />\n<em> Me: Yes it’s there in your downloads folder.</em><br />\n<em> Friend: <span>&lt;silence&gt;</span>.</em></p>\n<p>Every time I see another seductive Squarespace ad or the daily Shopify case study lands in my inbox (<em>How person x built y and changed the destiny of the human race</em>) – part of me can only see how far we have to go.</p>\n<p>But, I am enjoying fighting the good fight to democratise eCommerce with WordPress. I believe in what we’re doing, and in open source, and even though our competitors have bigger marketing teams and 24/7 phone support I feel a fierce loyalty to Woo.</p>\n<p>I don’t believe marketing has the emphasis it deserves in the WordPress space, but it’s coming to the fore. Great products don’t market themselves. The weaker thing will win if that is what is in front of people. I’m excited to be in this space.</p>\n<h3>Saying less is more. Narrow focus is healthy.</h3>\n<p>As someone who loves to joke around, natter, and come up with ideas, something I have learnt the hard way is that volume of words and number of ideas is not no an indicator of the quality of your contribution.</p>\n<p>It feels nice to be busy, but what is the deliverable?</p>\n<p>Having another great idea is not always helpful. Sometimes what I need to do is shut up and work. The manager versus maker ratio tends to leave a lot of cooks in the kitchen. Ideas are a dime a dozen. Pushing a few strategic things over the line, with your eyes on a goal everyone has agreed on, now that’s a better way.</p>\n<p>Staying focused working remotely can be hard. Fortunately, we have a great system of setting OKRs that my team is particularly diligent at sticking to. There are so. Many. Conversations. Going on all of the time. Focus is a healthy and freeing thing.</p>\n<a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2016/11/IMG_4139-min.jpg\"><img class=\"size-large wp-image-1477\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2016/11/IMG_4139-min-1024x768.jpg\" alt=\"Marina and Louise, heads together, grinning\" width=\"960\" height=\"720\" /></a>My Woo bestie, Louise. Here we are in San Francisco in 2014. I went back to South Africa for her wedding this year :).\n<h3>Inclusion is a very important thing.</h3>\n<p>A final thing I am learning through WordPress, and which has made my uncomfortable for sure, is the importance of inclusion. I touched on this a little already, but it’s something that I have now got my teeth into and am not going to let go of. Inclusion is a thing.</p>\n<p>Something that is great about WordPress is that intrinsically inclusive, it’s open to all.</p>\n<p>It isn’t only about big shiny success stories where people are making thousands of dollars. It’s people all over the world, fighting to make WordPress available in all languages; it’s faithful meetup organisers sharing knowledge with those who are just starting out; it’s the GPL; it’s having childcare at WordCamps; it’s using <em>y’all</em> or <em>folks</em> not <em>guys</em> to greet an audience.</p>\n<p>WordPress is not slick, sometimes things get a bit messy and there are heated discussions on forums and in backchannels. But WordPress is also a lot like how the world should be – democratic, going out of it’s way to make room and include, and with more than just the bottom line driving decisions.</p>\n<h3>Conclusion</h3>\n<p>That’s it from me. I hope sharing just a few of the ways WordPress has made me uncomfortable– what I learnt, and why I am glad I didn’t just bail – will be encouraging.</p>\n<p>Perhaps you are facing some tough things related to work or beyond. Maybe someone has expressed an opinion or belief that has made you uncomfortable. I’d encourage you to pause and take some time to think over whatever it is before acting.</p>\n<blockquote><p>Uncomfortable often means there is something amazing to be learnt.</p></blockquote>\n<p>Let’s be brave, open, and keep on learning together through this wonderful thing called WordPress.</p>\n<p><a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2016/11/IMG_4832-min.jpg\"><img class=\"alignnone size-large wp-image-1478\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2016/11/IMG_4832-min-1024x768.jpg\" alt=\"Pin board with hundreds of photos all over it.\" width=\"960\" height=\"720\" /></a></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: Uncomfortable doesn’t mean walk away\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Uncomfortable%20doesn%E2%80%99t%20mean%20walk%20away&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Funcomfortable-doesnt-mean-walk-away%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Uncomfortable doesn’t mean walk away\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Funcomfortable-doesnt-mean-walk-away%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%2Funcomfortable-doesnt-mean-walk-away%2F&title=Uncomfortable+doesn%E2%80%99t+mean+walk+away\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Uncomfortable doesn’t mean walk away\"></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/uncomfortable-doesnt-mean-walk-away/&media=https://heropress.com/wp-content/uploads/2016/11/110916-150x150.jpg&description=Uncomfortable doesn’t mean walk away\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Uncomfortable doesn’t mean walk away\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/uncomfortable-doesnt-mean-walk-away/\" title=\"Uncomfortable doesn’t mean walk away\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/uncomfortable-doesnt-mean-walk-away/\">Uncomfortable doesn’t mean walk away</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, 09 Nov 2016 12:00:54 +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:11:\"Marina Pape\";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:83:\"WPTavern: BuddyPress 2.8 Development Kicks Off, 2016 Survey Now Open for 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=63402\";s: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/buddypress-2-8-development-kicks-off-2016-survey-now-open-for-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:3278:\"<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2014/09/buddypress-logo-blue.png?ssl=1\"><img src=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2014/09/buddypress-logo-blue.png?resize=839%2C398&ssl=1\" alt=\"buddypress-logo-blue\" class=\"aligncenter size-full wp-image-30655\" /></a></p>\n<p>Development for BuddyPress 2.8 kicked off during <a href=\"https://bpdevel.wordpress.com/2016/11/05/dev-chat-summary-for-november-2-2016/\" target=\"_blank\">last week&#8217;s meeting</a> and the target release date was set for January 25. In line with the project&#8217;s <a href=\"https://wptavern.com/buddypress-2-7-development-kicks-off-project-shifts-focus-to-developers-and-site-builders\" target=\"_blank\">recent change of course</a>, the upcoming release will be another one focused on developers and site builders.</p>\n<p>Long time contributor <a href=\"https://profiles.wordpress.org/slaFFik\" target=\"_blank\">Slava Abakumov</a> is leading 2.8 with a focus on reducing the 650+ tickets in BuddyPress Trac by 50%. He will coordinate contributors in working on a UI for developer features that were added in the 2.6 and 2.7 releases, which introduced an API for Group Types. Abakumov wants to dive deeper into security and plans to perform a security audit of the plugin.</p>\n<p>The BuddyPress core team will shape development for 2017 based on feedback from this year&#8217;s <a href=\"https://buddypress.org/2016/11/2016-buddypress-survey-site-builders-developers/\" target=\"_blank\">survey</a>, which opened November 1. It includes 36 questions aimed at site builders and developers, as opposed to previous years where the survey was <a href=\"https://buddypress.org/2014/01/2014-buddypress-survey/\" target=\"_blank\">open to users and anyone connected with the software</a>.</p>\n<p>The project&#8217;s change of direction is evident in the questions this year, which are decidedly developer-focused. According to the BuddyPress core team, these questions were prepared for the project&#8217;s primary audience of site builders and developers, &#8220;an explicit recognition of what BuddyPress has become, and how people use it.&#8221;</p>\n<p>In addition to the usual demographical questions, respondents are asked about their PHP versions, site setups, and local development environments. A new question asks when developers test their sites and extensions against upcoming releases. The survey also asks which template files developers customize when creating themes (with no option to indicate that you&#8217;re not a theme developer). Participants are asked to weigh in on BuddyPress&#8217; problem areas and to give feedback on the most frequent feature requests they receive from community members and clients.</p>\n<p>In 2013 the survey received 178 responses, 338 responses in 2014, and 211 in 2015. Given that the target audience is much narrower in 2016, the number of participants may decline again. However, the core team hopes responses will be more concentrated with the kind of information they find useful. The <a href=\"https://buddypress.org/2016/11/2016-buddypress-survey-site-builders-developers/\" target=\"_blank\">survey</a> will be open through November 20, 2016 and results will be posted before the end of the year.</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, 08 Nov 2016 18:17: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:\"\";}}}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: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:55:\"WPTavern: WordCamp US Live Stream Tickets 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:29:\"https://wptavern.com/?p=63030\";s: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:66:\"https://wptavern.com/wordcamp-us-live-stream-tickets-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2838:\"<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2016/08/wordcamp-us.png?ssl=1\"><img src=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2016/08/wordcamp-us.png?resize=1025%2C490&ssl=1\" alt=\"wordcamp-us\" class=\"aligncenter size-full wp-image-59619\" /></a></p>\n<p><a href=\"https://2016.us.wordcamp.org\" target=\"_blank\">WordCamp US</a> is less than a month away and attendees are finalizing their travel plans. In August, organizers were <a href=\"https://wptavern.com/wordcamp-us-calls-for-volunteers-organizers-estimate-3000-attendees\" target=\"_blank\">estimating 3,000 attendees</a> on the ground but official numbers are not yet available as tickets continue to sell. A maximum capacity has not been published, because organizers have a great deal of flexibility to expand the event to thousands more if necessary.</p>\n<p>&#8220;The entire side of the PA Convention Center is ours, and we’re not using all of the spaces that they have,&#8221; WordCamp US co-organizer Alx Block said. &#8220;The sky is the limit.&#8221;</p>\n<p>Last week a world-class lineup of <a href=\"https://2016.us.wordcamp.org/speakers/\" target=\"_blank\">speakers</a> was confirmed from a record number of applicants. The team received 600 submissions (up from 231 last year) and accepted less than 10% of them, according to Block.</p>\n<p>&#8220;I think that WCUS last year really excited a lot of people, and they were interested in being a part of it,&#8221; Block said. &#8220;We also had quite a bit more time on the speaker applications, since in 2015 we planned the entire conference in just about three months.&#8221;</p>\n<p>One exciting change this year is that <a href=\"https://2016.us.wordcamp.org/2016/11/02/wordcamp-us-live-stream/\" target=\"_blank\">live stream tickets</a> will be free for those who are not able to attend the event. There&#8217;s no limit on the number of people who can watch live.</p>\n<p>&#8220;We really felt like there shouldn’t be a barrier to entry in attending WCUS,&#8221; Block said. &#8220;It’s the community’s conference, and everyone should be able to &#8216;attend&#8217; no matter where they physically are. We have some incredible sponsors, and making the live stream free felt like the best move.&#8221;</p>\n<p>Last year&#8217;s live stream tickets included swag from the event, and WCUS 2016 will have commemorative t-shirts for sale in the swag store. In addition to the live stream, all of the sessions will be recorded and uploaded to WordPress.tv. If you are joining by live stream, make sure to <a href=\"https://2016.us.wordcamp.org/tickets/\" target=\"_blank\">reserve your ticket</a> in advance. You can also <a href=\"https://2016.us.wordcamp.org/live-stream/attendee-test/\" target=\"_blank\">test your computer for compatibility</a> ahead of 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:\"Mon, 07 Nov 2016 21:47: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: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:45:\"WPTavern: Take the 2016 WordPress User Survey\";s: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=63524\";s: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://wptavern.com/take-the-2016-wordpress-user-survey\";s: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:1483:\"<p>With <a href=\"https://2016.us.wordcamp.org/\">WordCamp US</a> a little less than a month away, it&#8217;s time to take the <a href=\"https://wordpressdotorg.polldaddy.com/s/wordpress-2016-survey\">2016 WordPress user survey</a>. The survey is quick and easy to fill out with only a few questions to answer. Results are anonymized and will be shared at this year&#8217;s State of the Word presentation.</p>\n<p>Results from last year&#8217;s survey were not shared during Matt Mullenweg&#8217;s State of the Word presentation. During the <a href=\"https://2015.us.wordcamp.org/2015/12/05/state-of-the-word-live-blog/\">question and answer</a> portion, Mullenweg was asked about the results.</p>\n<p>&#8220;Lots of data to go over, but basically more people are using WordPress, app development is growing, lots of people are making their living with WordPress, and other great trends are showing up,&#8221; Mullenweg responded. &#8220;We’ll try to do a blog post about it.&#8221;</p>\n<p>A post highlighting the results from the 2015 survey has yet to be published.</p>\n<p>In 2014, 33K people took the survey and of those 33K, 7,539 or 25% said they make their living from WordPress. Over 90% of respondents said they built more than one site.</p>\n<p>If you use WordPress, please take a few minutes to complete the survey. Also, <a href=\"https://2016.us.wordcamp.org/tickets/\">tickets are still available</a> to attend WordCamp US December 2-4.</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, 07 Nov 2016 17:55: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: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:42;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:23:\"HeroPress: Finally 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://heropress.com/?p=1481\";s: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:34:\"https://heropress.com/finally-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2741:\"<p>I&#8217;ve been wanting to get SSL on HeroPress for a long time, but couldn&#8217;t for a variety of reasons. Well, it&#8217;s finally there! That means the <a href=\"https://heropress.com/plugin/\">HeroPress Widget</a> will finally work properly on sites running SSL, I could someday do a Give campaign, etc.</p>\n<p>One downside is that it broke our connection to WordPress Planet. It&#8217;s fixed now, but while it was down there were two essays that didn&#8217;t make it to the News widget in WordPress, and that made a big difference.  Here they are, using WordPress&#8217; cool oembed tools. Check&#8217;em out and leave a comment if you&#8217;re willing.</p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://heropress.com/essays/fell-wordpress-helped/\">I fell. WordPress helped me up.</a></p></blockquote>\n<p></p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://heropress.com/essays/conquering-obstacles-happiness/\">Conquering My Obstacles To Happiness</a></p></blockquote>\n<p></p>\n<p>&nbsp;</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: Finally SSL!\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Finally%20SSL%21&via=heropress&url=https%3A%2F%2Fheropress.com%2Ffinally-ssl%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Finally SSL!\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Ffinally-ssl%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%2Ffinally-ssl%2F&title=Finally+SSL%21\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Finally SSL!\"></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/finally-ssl/&media=http://heropress.com/wp-content/plugins/rtsocial/images/default-pinterest.png&description=Finally SSL!\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Finally SSL!\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/finally-ssl/\" title=\"Finally SSL!\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/finally-ssl/\">Finally SSL!</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, 07 Nov 2016 16:02: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:\"\";}}}}}i:43;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:105:\"Post Status: Learning WordPress development and how employers should look at candidates — 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=30291\";s: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://poststatus.com/learning-wordpress-development-employers-look-candidates-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:2050:\"<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 &#8212; the CTO of Human Made &#8212; and Brian Krogsgard.</p>\n<p><span>In this episode, Joe and Brian talk about how they learned WordPress development, how employers should look at candidates for skill hiring, and various resources they find valuable for learning WordPress.</span></p>\n<!--[if lt IE 9]><script>document.createElement(\'audio\');</script><![endif]-->\n<a href=\"https://audio.simplecast.com/52463.mp3\">https://audio.simplecast.com/52463.mp3</a>\n<p><a href=\"http://audio.simplecast.com/52463.mp3\">Direct Download</a></p>\n<h3>Links</h3>\n<ul>\n<li><a href=\"http://justbuildwebsites.com/\">Just Build Websites</a></li>\n<li><a href=\"https://www.lynda.com/in/WordPress\">Lynda.com WordPress tutorials</a></li>\n<li><a href=\"https://wpinonemonth.com/\">WP in One Month</a></li>\n<li><a href=\"http://wordpress.stackexchange.com/\">WordPress Development Stack Exchange</a></li>\n<li><a href=\"http://wordpress.tv/2013/04/22/brian-krogsgard-going-for-it-how-to-become-a-respected-wordpress-developer/\">How to Become a Respected WordPress Developer</a></li>\n</ul>\n<h3>Sponsor: Gravity Forms</h3>\n<p>This episode is sponsored by Gravity Forms. <a href=\"http://www.gravityforms.com/\">Gravity Forms</a> makes the best web forms on the planet. Over a million WordPress sites are already using Gravity Forms. Is yours? For more information, check out their <a href=\"http://www.gravityforms.com/\">website</a> and thank you to Gravity Forms for being a Post Status partner.</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, 07 Nov 2016 14:38:13 +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: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:82:\"WPTavern: WordPress Plugin Team Publishes Revamped Guidelines for Plugin Directory\";s: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=63410\";s: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-plugin-team-publishes-revamped-guidelines-for-plugin-directory\";s: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:3100:\"<a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/02/writing.jpg?ssl=1\"><img src=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/02/writing.jpg?resize=1025%2C472&ssl=1\" alt=\"photo credit: Green Chameleon\" class=\"size-full wp-image-51302\" /></a>photo credit: <a href=\"https://stocksnap.io/photo/8Y0EDX4VP9\">Green Chameleon</a>\n<p>Two months ago, revised guidelines for the WordPress Plugin Directory were <a href=\"https://wptavern.com/wordpress-plugin-team-revamps-guidelines-invites-feedback-on-github\" target=\"_blank\">opened up on GitHub for public feedback</a>. This transparent and open process of updating the guidelines resulted in more than a dozen contributors submitting pull requests with improvements to the language and content. The <a href=\"https://developer.wordpress.org/plugins/wordpress-org/detailed-plugin-guidelines/\" target=\"_blank\">revamped guidelines</a> have now replaced the previous ones with language and expectations that are clearer and easier to understand.</p>\n<p>&#8220;In addition to rewriting the guidelines, we took the time to codify the expectations of developers and cost of not abiding by the guidelines, as well as a reminder that we do remove plugins for security issues,&#8221; plugin team member Mika Epstein said in the <a href=\"https://make.wordpress.org/plugins/2016/11/01/revised-guidelines-are-live/\" target=\"_blank\">announcement</a>. &#8220;We are doing our best to be transparent of what we expect from you and, in return, what you can expect from us.&#8221;</p>\n<p>After several incidents this year where unclear guidelines contributed to confusion on issues like <a href=\"https://wptavern.com/wordpress-plugin-directory-cracks-down-on-incentivized-reviews-despite-lack-of-official-guideline\" target=\"_blank\">incentivized reviews</a> and <a href=\"https://wptavern.com/the-wordpress-plugin-directory-will-no-longer-accept-frameworks\" target=\"_blank\">developers submitting frameworks</a>, the plugin team made the jump to update the five-year-old document. Although there are not major changes, some of the guidelines were considerably expanded for clarity. This includes #9: &#8220;The plugin and its developers must not do anything illegal, dishonest, or morally offensive.&#8221; The list was updated with several more examples of infractions that would land under this category.</p>\n<p>&#8220;It’s a massive undertaking to re-write guidelines in the public eye in a way that won’t pull the rug out from anyone,&#8221; Epstein said. &#8220;Our goal was to clarify, not totally change, but also to address the needs of an ever changing technology.&#8221;</p>\n<p>Because the plugin directory was created to serve the WordPress project and its users, it doesn&#8217;t function like many other popular directories and marketplaces. Clear language and expectations are important, especially with WordPress&#8217; growing international user base. The newly updated guidelines should cut down on incidents where the plugin team has to enforce guidelines that were not explicitly documented.</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, 07 Nov 2016 06:03: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: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:45;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:28:\"BuddyPress: BuddyPress 2.7.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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://buddypress.org/?p=260750\";s: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:48:\"https://buddypress.org/2016/11/buddypress-2-7-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:888:\"<p>BuddyPress 2.7.2 is now available. This is a maintenance release and a recommended upgrade for all BuddyPress installations.</p>\n<p>BP 2.7.2 fixes a bug which ignored deprecated code being used in existing installations. For more information, see <a href=\"https://buddypress.trac.wordpress.org/query?group=status&milestone=2.7.2\">the 2.7.2 milestone</a> on <a href=\"https://buddypress.trac.wordpress.org/\">BuddyPress Trac</a>.</p>\n<p>Update to BuddyPress 2.7.2 today in your WordPress Dashboard, or by <a href=\"https://wordpress.org/plugins/buddypress/\">downloading from the wordpress.org plugin repository</a>.</p>\n<p>Questions or comments? Check out <a href=\"https://codex.buddypress.org/releases/version-2-7-2/\">2.7.2 changelog</a>, or stop by <a href=\"https://buddypress.org/support/\">our support forums</a> or <a href=\"https://buddypress.trac.wordpress.org/\">Trac</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, 05 Nov 2016 16:30: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: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: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:68:\"WPTavern: PressNomics 5 Scheduled for April 6-8, 2017 in Phoenix, AZ\";s: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=63490\";s: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:77:\"https://wptavern.com/pressnomics-5-scheduled-for-april-6-8-2017-in-phoenix-az\";s: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:1928:\"<p><a href=\"https://pressnomics.com/\">PressNomics</a>, an annual conference devoted to the economics of WordPress <a href=\"https://pressnomics.com/2016/11/pressnomics-5-april-6th-8th-2017/\">has announced</a> that the fifth iteration of the event will take place April 6-8, 2017 at Tempe Mission Palms Hotel, in Phoenix, AZ. The event is organized by Joshua Strebel of <a title=\"http://page.ly\" href=\"http://page.ly\">Pagely</a>, a managed WordPress hosting company that recently celebrated its <a href=\"https://pagely.com/blog/2016/09/managed-wordpress-hosting-7yrs/\">seventh birthday</a>.</p>\n<p>A hallmark of the event is its contributions to charity. Since PressNomics one, the event has raised more than $40K for various charities including, <a href=\"http://www.stjude.org\">St. Jude Children&#8217;s Research Hospital</a>, <a href=\"http://curesearch.org\">CureSearch.org</a>, <a href=\"https://bensbells.org/\">BensBells</a>, and Big Brothers and Big Sisters.</p>\n<p>In addition to the conference, there will be a social Saturday where attendees can participate in a golf tournament or go on an excursion to explore the Art&#8217;s and Culture of the area. The social activities will be available as a separate purchase of $50 when buying your tickets. To take full advantage of the event, organizers suggest that attendees fly in on Wednesday, April 5th and leave on Sunday, April 9th.</p>\n<p>Tickets have yet to go on sale and the speaker lineup is in the process of being finalized. If you want to be one of the first to know when tickets go on sale, you&#8217;re encouraged to sign up to the <a href=\"https://pressnomics.com/\">event&#8217;s email list</a>. For insight into what it&#8217;s like to attend PressNomics, check out my <a href=\"https://wptavern.com/envato-stats-tips-for-getting-things-done-and-more-at-pressnomics-3\">review of PressNomics 3 </a>held in January of 2015.</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, 04 Nov 2016 18:53: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:\"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: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:30:\"Dev Blog: WordPress 4.7 Beta 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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4552\";s: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/2016/11/wordpress-4-7-beta-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:4195:\"<p>WordPress 4.7 Beta 2 is now available!</p>\n<p><strong>This software is still in development,</strong> so we don’t recommend you run it on a production site. Consider setting up a test site just to play with the new version. To test WordPress 4.7, try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (you’ll want “bleeding edge nightlies”). Or you can <a href=\"https://wordpress.org/wordpress-4.7-beta2.zip\">download the beta here</a> (zip).</p>\n<p>Notable changes since WordPress 4.7 Beta 1:</p>\n<ul>\n<li><strong>Twenty Seventeen:</strong> The theme wasn&#8217;t being installed on upgrades &#8211; sorry about that! Now you should see it if you&#8217;re upgrading an existing site. There are also plenty of fixes, especially for the header and small screen views.</li>\n<li><strong>Edit shortcuts:</strong> These are always visible while editing (hide them on bigger screens by collapsing the controls) and should now work properly in Firefox. (<a href=\"https://core.trac.wordpress.org/ticket/27403\">#27403</a> and <a href=\"https://core.trac.wordpress.org/ticket/38532\">#38532</a>)</li>\n<li><strong>REST API endpoints:</strong> There have been a number of changes over the past week; your attention is requested on the following:\n<ul>\n<li>The <code>DELETE</code> response format has changed and may need to be accounted for. (<a href=\"https://core.trac.wordpress.org/ticket/38494\">#38494</a>)</li>\n<li>Enabled querying by multiple post statuses. (<a href=\"https://core.trac.wordpress.org/ticket/38420\">#38420</a>)</li>\n<li>Return an error when JSON decoding fails. (<a href=\"https://core.trac.wordpress.org/ticket/38547\">#38547</a>)</li>\n</ul>\n</li>\n<li><strong>More developer notes</strong>\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2016/10/28/fine-grained-capabilities-for-taxonomy-terms-in-4-7/\">Fine grained capabilities for taxonomy terms</a></li>\n<li><a href=\"https://make.wordpress.org/core/2016/10/29/wp_taxonomy-in-4-7/\"><code>WP_Taxonomy</code></a></li>\n<li><a href=\"https://make.wordpress.org/core/2016/11/02/wp_list_sort-and-wp_list_util-in-4-7/\"><code>wp_list_sort()</code> and <code>WP_List_Util</code></a></li>\n<li><a href=\"https://make.wordpress.org/core/2016/11/03/post-type-templates-in-4-7/\">Post type templates</a></li>\n<li><a href=\"https://make.wordpress.org/core/2016/11/03/new-post-type-labels-in-4-7/\">New post type labels</a></li>\n<li><a href=\"https://make.wordpress.org/core/2016/11/03/attributes-for-resource-hints-in-4-7/\">Attributes for resource hints</a></li>\n</ul>\n</li>\n<li><strong>Various bug fixes:</strong> We’ve made <a href=\"https://core.trac.wordpress.org/log/trunk/src?action=stop_on_copy&mode=stop_on_copy&rev=39142&stop_rev=38995&limit=200&verbose=on&sfp_email=&sfph_mail=\">almost 150 changes</a> in the last week.</li>\n</ul>\n<p>For more of what’s new in version 4.7, <a href=\"https://wordpress.org/news/2016/10/wordpress-4-7-beta-1/\">check out the Beta 1 blog post</a>.</p>\n<p>If you want a more in-depth view of what major changes have made it into 4.7, <a href=\"https://make.wordpress.org/core/tag/4-7/\">check out posts tagged with 4.7 on the main development blog</a>, or look at a <a href=\"https://core.trac.wordpress.org/query?status=closed&resolution=fixed&milestone=4.7&group=component&order=priority\">list of everything</a> that’s changed. There will be more developer notes to come, so keep an eye out for those as well.</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></p>\n<p><strong>If you think you’ve found a bug</strong>, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://make.wordpress.org/core/reports/\">file one on WordPress Trac</a>, where you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</p>\n<p>Happy testing!</p>\n<p><em>Ya es la hora</em><br />\n<em> Time for another beta</em><br />\n请您帮下忙!</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:\"Fri, 04 Nov 2016 17:39: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: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:\"\";}}}}}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: A Preview of the Custom CSS Editor Added to the Customizer in WordPress 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:29:\"https://wptavern.com/?p=63481\";s: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/a-preview-of-the-custom-css-editor-added-to-the-customizer-in-wordpress-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3295:\"<p>WordPress 4.7 is a little more than a <a href=\"https://wordpress.org/about/roadmap/\">month away</a> and is going to be packed with new features and improvements. In particular, <a href=\"https://make.wordpress.org/core/2016/10/24/customize-update-2016-10-23/\">five feature projects</a> related to the customizer were approved for merge and will be part of the release. One of the feature projects is the custom <a href=\"https://make.wordpress.org/core/2016/10/11/feature-proposal-better-theme-customizations-via-custom-css-with-live-previews/\">CSS editor</a> that enables users to <a href=\"https://wptavern.com/the-days-of-creating-child-themes-for-simple-css-changes-may-soon-be-over\">make CSS changes to a theme</a> without having to create a <a href=\"https://codex.wordpress.org/Child_Themes\">child theme</a>.</p>\n<a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2016/11/WP47CustomizerCSSEditor.png?ssl=1\"><img class=\"size-full wp-image-63483\" src=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2016/11/WP47CustomizerCSSEditor.png?resize=1025%2C394&ssl=1\" alt=\"CSS Editor in The WordPress 4.7 Customizer\" /></a>CSS Editor in The WordPress 4.7 Customizer\n<p>In WordPress 4.7, there&#8217;s a new section in the customizer labeled Additional CSS. Clicking the label displays a blank pane with a short description of what users can do. Clicking the help icon displays a short explanation of what CSS is with a link to a <a href=\"https://codex.wordpress.org/Know_Your_Sources#CSS\">help document</a> on the Codex. The Additional CSS pane is more like a text area than an editor.</p>\n<p>Unlike Jetpack&#8217;s Edit CSS module, the editor in the customizer lacks line numbers, colored text, and other conveniences. However, these are features that are likely to be added in future iterations.</p>\n<a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2016/11/JetpacksEditCSSModule.png?ssl=1\"><img class=\"size-full wp-image-63484\" src=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2016/11/JetpacksEditCSSModule.png?resize=601%2C423&ssl=1\" alt=\"Jetpack\'s Edit CSS Module\" /></a>Jetpack&#8217;s Edit CSS Module\n<p>There are a couple of things to keep in mind before using Additional CSS. First, it does not have revision support enabled. Weston Ruter, WordPress core committer, <a href=\"https://core.trac.wordpress.org/ticket/35395#comment:76\">says</a> revision support is disabled by default and requires a plugin.</p>\n<p>Second, changes are theme specific and are not global. Luke Cavanagh <a href=\"https://core.trac.wordpress.org/ticket/35395#comment:83\">has inquired</a> on whether an option will be added in the future to enable global CSS changes which could come in handy for making tweaks for active plugins.</p>\n<p>During testing, I didn&#8217;t encounter any issues with writing or pasting CSS code into the Additional CSS area. I encourage you to download and install <a href=\"https://wordpress.org/news/2016/10/wordpress-4-7-beta-1/\">WordPress 4.7 beta 1</a> and try it out for yourself and let us know your thoughts. If you think you&#8217;ve encountered a bug while using WordPress 4.7 beta 1, please report it on the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta section</a> of the support forums.</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, 04 Nov 2016 08:57:44 +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: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:28:\"BuddyPress: BuddyPress 2.7.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:32:\"https://buddypress.org/?p=260677\";s: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:48:\"https://buddypress.org/2016/11/buddypress-2-7-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:842:\"<p>BuddyPress 2.7.1 is now available. This is a maintenance release and a recommended upgrade for all BuddyPress installations.</p>\n<p>BP 2.7.1 fixes bugs in several components. For more information, see <a href=\"https://buddypress.trac.wordpress.org/query?group=status&milestone=2.7.1\">the 2.7.1 milestone</a> on <a href=\"https://buddypress.trac.wordpress.org/\">BuddyPress Trac</a>.</p>\n<p>Update to BuddyPress 2.7.1 today in your WordPress Dashboard, or by <a href=\"https://wordpress.org/plugins/buddypress/\">downloading from the wordpress.org plugin repository</a>.</p>\n<p>Questions or comments? Check out <a href=\"https://codex.buddypress.org/releases/version-2-7-1/\">2.7.1 changelog</a>, or stop by <a href=\"https://buddypress.org/support/\">our support forums</a> or <a href=\"https://buddypress.trac.wordpress.org/\">Trac</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:\"Thu, 03 Nov 2016 21:12:09 +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:\"\";}}}}}}}}}}}}}}}}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:\"Tue, 20 Dec 2016 18:09:58 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Mon, 05 Dec 2016 11:15:16 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:11:\"HIT lax 249\";s:16:\"content-encoding\";s:4:\"gzip\";}}s:5:\"build\";s:14:\"20130911040210\";}", "no");

/* INSERT TABLE DATA: wp_postmeta */
INSERT INTO `wp_postmeta` VALUES("1", "2", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("628", "497", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("627", "496", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("626", "496", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("625", "495", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("624", "495", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("623", "494", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("622", "494", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("621", "493", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("620", "493", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("619", "492", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("618", "492", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("617", "491", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("616", "491", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("615", "490", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("614", "490", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("613", "489", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("612", "489", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("611", "488", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("610", "488", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("609", "487", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("608", "487", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("607", "486", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("606", "486", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("605", "485", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("604", "485", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("603", "484", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("602", "484", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("601", "483", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("600", "483", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("599", "482", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("598", "482", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("597", "481", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("596", "481", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("595", "480", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("594", "480", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("593", "479", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("592", "479", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("591", "478", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("590", "478", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("589", "477", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("588", "477", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("587", "476", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("586", "476", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("585", "475", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("584", "475", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("583", "474", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("582", "474", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("581", "473", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("580", "473", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("579", "472", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("578", "472", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("577", "471", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("576", "471", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("575", "470", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("574", "470", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("573", "469", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("572", "469", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("571", "468", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("570", "468", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("569", "467", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("568", "467", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("567", "466", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("566", "466", "_et_pb_predefined_layout", "on");
INSERT INTO `wp_postmeta` VALUES("68", "37", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("69", "37", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("70", "37", "_et_pb_post_hide_nav", "default");
INSERT INTO `wp_postmeta` VALUES("71", "37", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wp_postmeta` VALUES("72", "37", "_et_pb_side_nav", "off");
INSERT INTO `wp_postmeta` VALUES("73", "37", "_et_pb_use_builder", "on");
INSERT INTO `wp_postmeta` VALUES("74", "37", "_et_pb_old_content", "");
INSERT INTO `wp_postmeta` VALUES("75", "37", "_edit_lock", "1469077525:1");
INSERT INTO `wp_postmeta` VALUES("76", "39", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("77", "39", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("78", "39", "_et_pb_post_hide_nav", "default");
INSERT INTO `wp_postmeta` VALUES("79", "39", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wp_postmeta` VALUES("80", "39", "_et_pb_side_nav", "off");
INSERT INTO `wp_postmeta` VALUES("81", "39", "_et_pb_use_builder", "on");
INSERT INTO `wp_postmeta` VALUES("82", "39", "_et_pb_old_content", "");
INSERT INTO `wp_postmeta` VALUES("83", "39", "_edit_lock", "1461906684:1");
INSERT INTO `wp_postmeta` VALUES("84", "41", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("85", "41", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("86", "41", "_et_pb_post_hide_nav", "default");
INSERT INTO `wp_postmeta` VALUES("87", "41", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wp_postmeta` VALUES("88", "41", "_et_pb_side_nav", "off");
INSERT INTO `wp_postmeta` VALUES("89", "41", "_et_pb_use_builder", "");
INSERT INTO `wp_postmeta` VALUES("90", "41", "_et_pb_old_content", "");
INSERT INTO `wp_postmeta` VALUES("91", "41", "_edit_lock", "1469078877:1");
INSERT INTO `wp_postmeta` VALUES("92", "43", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("93", "43", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("94", "43", "_et_pb_post_hide_nav", "default");
INSERT INTO `wp_postmeta` VALUES("95", "43", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wp_postmeta` VALUES("96", "43", "_et_pb_side_nav", "off");
INSERT INTO `wp_postmeta` VALUES("97", "43", "_et_pb_use_builder", "on");
INSERT INTO `wp_postmeta` VALUES("98", "43", "_et_pb_old_content", "");
INSERT INTO `wp_postmeta` VALUES("99", "43", "_edit_lock", "1482202079:1");
INSERT INTO `wp_postmeta` VALUES("100", "45", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("101", "45", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("102", "45", "_et_pb_post_hide_nav", "default");
INSERT INTO `wp_postmeta` VALUES("103", "45", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wp_postmeta` VALUES("104", "45", "_et_pb_side_nav", "off");
INSERT INTO `wp_postmeta` VALUES("105", "45", "_et_pb_use_builder", "on");
INSERT INTO `wp_postmeta` VALUES("106", "45", "_et_pb_old_content", "");
INSERT INTO `wp_postmeta` VALUES("107", "45", "_edit_lock", "1456725149:1");
INSERT INTO `wp_postmeta` VALUES("108", "47", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("109", "47", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("110", "47", "_et_pb_post_hide_nav", "default");
INSERT INTO `wp_postmeta` VALUES("111", "47", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wp_postmeta` VALUES("112", "47", "_et_pb_side_nav", "off");
INSERT INTO `wp_postmeta` VALUES("113", "47", "_et_pb_use_builder", "");
INSERT INTO `wp_postmeta` VALUES("114", "47", "_et_pb_old_content", "");
INSERT INTO `wp_postmeta` VALUES("115", "47", "_edit_lock", "1456450980:1");
INSERT INTO `wp_postmeta` VALUES("116", "49", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("117", "49", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("118", "49", "_et_pb_post_hide_nav", "default");
INSERT INTO `wp_postmeta` VALUES("119", "49", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wp_postmeta` VALUES("120", "49", "_et_pb_side_nav", "off");
INSERT INTO `wp_postmeta` VALUES("121", "49", "_et_pb_use_builder", "");
INSERT INTO `wp_postmeta` VALUES("122", "49", "_et_pb_old_content", "");
INSERT INTO `wp_postmeta` VALUES("123", "49", "_edit_lock", "1456451013:1");
INSERT INTO `wp_postmeta` VALUES("124", "51", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("125", "51", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("126", "51", "_menu_item_object_id", "43");
INSERT INTO `wp_postmeta` VALUES("127", "51", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("128", "51", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("129", "51", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("130", "51", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("131", "51", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("133", "52", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("134", "52", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("135", "52", "_menu_item_object_id", "39");
INSERT INTO `wp_postmeta` VALUES("136", "52", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("137", "52", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("138", "52", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("139", "52", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("140", "52", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("142", "53", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("143", "53", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("144", "53", "_menu_item_object_id", "37");
INSERT INTO `wp_postmeta` VALUES("145", "53", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("146", "53", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("147", "53", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("148", "53", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("149", "53", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("151", "54", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("152", "54", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("153", "54", "_menu_item_object_id", "2");
INSERT INTO `wp_postmeta` VALUES("154", "54", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("155", "54", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("156", "54", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("157", "54", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("158", "54", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("227", "37", "_et_monarch_override", "");
INSERT INTO `wp_postmeta` VALUES("394", "337", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("169", "2", "_edit_lock", "1480487573:1");
INSERT INTO `wp_postmeta` VALUES("170", "2", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("171", "2", "_et_pb_post_hide_nav", "default");
INSERT INTO `wp_postmeta` VALUES("172", "2", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wp_postmeta` VALUES("173", "2", "_et_pb_side_nav", "off");
INSERT INTO `wp_postmeta` VALUES("174", "2", "_et_pb_use_builder", "on");
INSERT INTO `wp_postmeta` VALUES("175", "2", "_et_pb_old_content", "<p>This is an example of a WordPress page, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many pages like this one or sub-pages as you like and manage all of your content inside of WordPress.</p>");
INSERT INTO `wp_postmeta` VALUES("360", "317", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:75;s:6:\"height\";i:60;s:4:\"file\";s:36:\"2016/04/InfinityMarketing_paypal.png\";s:5:\"sizes\";a:0:{}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:{}}}");
INSERT INTO `wp_postmeta` VALUES("358", "307", "_wp_attachment_image_alt", "Infinity Marketing Background");
INSERT INTO `wp_postmeta` VALUES("359", "317", "_wp_attached_file", "2016/04/InfinityMarketing_paypal.png");
INSERT INTO `wp_postmeta` VALUES("178", "66", "_wp_attached_file", "2016/02/discover.png");
INSERT INTO `wp_postmeta` VALUES("179", "66", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:20:\"2016/02/discover.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"discover-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:20:\"discover-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"discover-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:20:\"discover-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:20:\"discover-800x675.png\";s:5:\"width\";i:800;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:20:\"discover-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;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:{}}}");
INSERT INTO `wp_postmeta` VALUES("361", "317", "_edit_lock", "1459480183:1");
INSERT INTO `wp_postmeta` VALUES("362", "319", "_wp_attached_file", "2016/02/Venus-Logo.png");
INSERT INTO `wp_postmeta` VALUES("363", "319", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1240;s:6:\"height\";i:1240;s:4:\"file\";s:22:\"2016/02/Venus-Logo.png\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Venus-Logo-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:22:\"Venus-Logo-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"Venus-Logo-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"Venus-Logo-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"bloom_image\";a:4:{s:4:\"file\";s:22:\"Venus-Logo-610x610.png\";s:5:\"width\";i:610;s:6:\"height\";i:610;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:22:\"Venus-Logo-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:23:\"Venus-Logo-1080x675.png\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:22:\"Venus-Logo-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:24:\"Venus-Logo-1080x1080.png\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;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:{}}}");
INSERT INTO `wp_postmeta` VALUES("185", "66", "_wp_attachment_image_alt", "Discover the power of marketing");
INSERT INTO `wp_postmeta` VALUES("186", "73", "_wp_attached_file", "2016/02/Connect.png");
INSERT INTO `wp_postmeta` VALUES("187", "73", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:19:\"2016/02/Connect.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"Connect-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:19:\"Connect-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"Connect-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"Connect-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:19:\"Connect-800x675.png\";s:5:\"width\";i:800;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"Connect-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;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:{}}}");
INSERT INTO `wp_postmeta` VALUES("364", "319", "_wp_attachment_image_alt", "Venus Network Logo");
INSERT INTO `wp_postmeta` VALUES("365", "323", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("366", "323", "_edit_lock", "1469096794:1");
INSERT INTO `wp_postmeta` VALUES("367", "323", "_et_monarch_override", "");
INSERT INTO `wp_postmeta` VALUES("368", "323", "_et_post_bg_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("369", "323", "_et_post_bg_layout", "light");
INSERT INTO `wp_postmeta` VALUES("370", "323", "_et_pb_show_title", "on");
INSERT INTO `wp_postmeta` VALUES("371", "323", "_et_pb_post_hide_nav", "default");
INSERT INTO `wp_postmeta` VALUES("372", "323", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wp_postmeta` VALUES("373", "323", "_et_pb_side_nav", "off");
INSERT INTO `wp_postmeta` VALUES("374", "323", "_et_pb_use_builder", "on");
INSERT INTO `wp_postmeta` VALUES("375", "323", "_et_pb_old_content", "");
INSERT INTO `wp_postmeta` VALUES("376", "323", "_yoast_wpseo_primary_category", "9");
INSERT INTO `wp_postmeta` VALUES("377", "323", "_et_social_shares_twitter", "a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2016-12-10 05:09:40\";}");
INSERT INTO `wp_postmeta` VALUES("378", "323", "_et_social_shares_facebook", "a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2016-12-10 05:09:08\";}");
INSERT INTO `wp_postmeta` VALUES("379", "323", "_et_social_shares_googleplus", "a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2016-12-10 05:09:28\";}");
INSERT INTO `wp_postmeta` VALUES("380", "323", "_et_social_shares_pinterest", "a:3:{s:12:\"force_update\";b:0;s:6:\"counts\";i:1;s:8:\"last_upd\";s:19:\"2016-12-10 05:09:19\";}");
INSERT INTO `wp_postmeta` VALUES("381", "323", "_et_social_shares_linkedin", "a:3:{s:12:\"force_update\";b:1;s:6:\"counts\";i:0;s:8:\"last_upd\";s:19:\"2016-12-10 05:09:34\";}");
INSERT INTO `wp_postmeta` VALUES("382", "327", "_wp_attached_file", "2016/04/Passion-and-Drive.jpg");
INSERT INTO `wp_postmeta` VALUES("383", "327", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:2856;s:6:\"height\";i:1393;s:4:\"file\";s:29:\"2016/04/Passion-and-Drive.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Passion-and-Drive-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:\"Passion-and-Drive-300x146.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:146;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"Passion-and-Drive-768x375.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"Passion-and-Drive-1024x499.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:499;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"bloom_image\";a:4:{s:4:\"file\";s:29:\"Passion-and-Drive-610x298.jpg\";s:5:\"width\";i:610;s:6:\"height\";i:298;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:29:\"Passion-and-Drive-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:30:\"Passion-and-Drive-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:29:\"Passion-and-Drive-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:30:\"Passion-and-Drive-1080x527.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:527;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:4:\"X-T1\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1418187761\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"50.5\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("192", "73", "_wp_attachment_image_alt", "Connect on Facebook");
INSERT INTO `wp_postmeta` VALUES("344", "279", "_wp_attachment_image_alt", "Network NZ");
INSERT INTO `wp_postmeta` VALUES("345", "161", "_wp_attachment_image_alt", "Candice");
INSERT INTO `wp_postmeta` VALUES("346", "39", "_oembed_64c997eaa29e60ea428af99f39c48859", "{{unknown}}");
INSERT INTO `wp_postmeta` VALUES("347", "39", "_oembed_ac429c99b7c4284d68018a56f5394a73", "{{unknown}}");
INSERT INTO `wp_postmeta` VALUES("348", "39", "_oembed_170619ecabab610fcb4bf88f41737529", "{{unknown}}");
INSERT INTO `wp_postmeta` VALUES("349", "39", "_oembed_65e19ec35bd88280df48a6fe76de37bc", "{{unknown}}");
INSERT INTO `wp_postmeta` VALUES("350", "39", "_oembed_108bba7dcdc383c3edeaf9d7e9171f12", "{{unknown}}");
INSERT INTO `wp_postmeta` VALUES("351", "39", "_oembed_a8dbb989c6aa140619b38a8257259394", "{{unknown}}");
INSERT INTO `wp_postmeta` VALUES("352", "39", "_oembed_e8317133bd4ca51a15297ff351e8b601", "{{unknown}}");
INSERT INTO `wp_postmeta` VALUES("353", "39", "_oembed_9fc51a695c09c72302d8e42b8f2aec5f", "{{unknown}}");
INSERT INTO `wp_postmeta` VALUES("354", "39", "_oembed_b04d24dacf9019b115aa39c38ac6e433", "{{unknown}}");
INSERT INTO `wp_postmeta` VALUES("355", "39", "_oembed_6342bbdf2d9368894f12111fcd7dd2d8", "{{unknown}}");
INSERT INTO `wp_postmeta` VALUES("356", "307", "_wp_attached_file", "2016/02/HeaderBackground_blue.jpg");
INSERT INTO `wp_postmeta` VALUES("357", "307", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:324;s:4:\"file\";s:33:\"2016/02/HeaderBackground_blue.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"HeaderBackground_blue-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:\"HeaderBackground_blue-300x49.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:49;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"HeaderBackground_blue-768x124.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:124;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"HeaderBackground_blue-1024x166.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:166;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"bloom_image\";a:4:{s:4:\"file\";s:32:\"HeaderBackground_blue-610x99.jpg\";s:5:\"width\";i:610;s:6:\"height\";i:99;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:33:\"HeaderBackground_blue-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:34:\"HeaderBackground_blue-1080x324.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:33:\"HeaderBackground_blue-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:34:\"HeaderBackground_blue-1080x175.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:175;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:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("205", "98", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("206", "98", "_edit_lock", "1469077750:1");
INSERT INTO `wp_postmeta` VALUES("207", "98", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("208", "98", "_et_pb_post_hide_nav", "default");
INSERT INTO `wp_postmeta` VALUES("209", "98", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wp_postmeta` VALUES("210", "98", "_et_pb_side_nav", "off");
INSERT INTO `wp_postmeta` VALUES("211", "98", "_et_pb_use_builder", "on");
INSERT INTO `wp_postmeta` VALUES("212", "98", "_et_pb_old_content", "");
INSERT INTO `wp_postmeta` VALUES("213", "100", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("214", "100", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("215", "100", "_menu_item_object_id", "98");
INSERT INTO `wp_postmeta` VALUES("216", "100", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("217", "100", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("218", "100", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("219", "100", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("220", "100", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("343", "279", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:3780;s:6:\"height\";i:3780;s:4:\"file\";s:34:\"2016/02/Network-NZ-Transparent.png\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"Network-NZ-Transparent-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:34:\"Network-NZ-Transparent-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"Network-NZ-Transparent-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"Network-NZ-Transparent-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"bloom_image\";a:4:{s:4:\"file\";s:34:\"Network-NZ-Transparent-610x610.png\";s:5:\"width\";i:610;s:6:\"height\";i:610;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:34:\"Network-NZ-Transparent-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:35:\"Network-NZ-Transparent-1080x675.png\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:34:\"Network-NZ-Transparent-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"Network-NZ-Transparent-1080x1080.png\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;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:{}}}");
INSERT INTO `wp_postmeta` VALUES("231", "113", "_wp_attached_file", "2016/02/discover-v2.png");
INSERT INTO `wp_postmeta` VALUES("232", "113", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:23:\"2016/02/discover-v2.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"discover-v2-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:23:\"discover-v2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:23:\"discover-v2-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:23:\"discover-v2-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;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:{}}}");
INSERT INTO `wp_postmeta` VALUES("233", "113", "_wp_attachment_image_alt", "Discover the power of marketing");
INSERT INTO `wp_postmeta` VALUES("272", "195", "_wp_attachment_image_alt", "Infinity Marketing");
INSERT INTO `wp_postmeta` VALUES("273", "218", "_wp_attached_file", "2016/02/Coaching_sml.jpg");
INSERT INTO `wp_postmeta` VALUES("274", "218", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:24:\"2016/02/Coaching_sml.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Coaching_sml-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;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:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("236", "117", "_wp_attached_file", "2016/02/Connect-1.png");
INSERT INTO `wp_postmeta` VALUES("237", "117", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:21:\"2016/02/Connect-1.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"Connect-1-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:21:\"Connect-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:21:\"Connect-1-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:21:\"Connect-1-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;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:{}}}");
INSERT INTO `wp_postmeta` VALUES("238", "118", "_wp_attached_file", "2016/02/Contact-1.png");
INSERT INTO `wp_postmeta` VALUES("239", "118", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:21:\"2016/02/Contact-1.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"Contact-1-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:21:\"Contact-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:21:\"Contact-1-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:21:\"Contact-1-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;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:{}}}");
INSERT INTO `wp_postmeta` VALUES("240", "119", "_wp_attached_file", "2016/02/Services-1.png");
INSERT INTO `wp_postmeta` VALUES("241", "119", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:22:\"2016/02/Services-1.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Services-1-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:22:\"Services-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:22:\"Services-1-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:22:\"Services-1-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;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:{}}}");
INSERT INTO `wp_postmeta` VALUES("242", "37", "_yoast_wpseo_focuskw_text_input", "Marketing for small businesses");
INSERT INTO `wp_postmeta` VALUES("243", "37", "_yoast_wpseo_focuskw", "Marketing for small businesses");
INSERT INTO `wp_postmeta` VALUES("244", "37", "_yoast_wpseo_linkdex", "48");
INSERT INTO `wp_postmeta` VALUES("245", "2", "_et_monarch_override", "");
INSERT INTO `wp_postmeta` VALUES("246", "43", "_et_monarch_override", "");
INSERT INTO `wp_postmeta` VALUES("247", "39", "_et_monarch_override", "");
INSERT INTO `wp_postmeta` VALUES("248", "141", "_et_pb_module_type", "et_pb_cta");
INSERT INTO `wp_postmeta` VALUES("249", "141", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("250", "144", "_wp_attached_file", "2016/02/Candice-Infinity-Marketing-Banner-.jpg");
INSERT INTO `wp_postmeta` VALUES("251", "144", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:600;s:4:\"file\";s:46:\"2016/02/Candice-Infinity-Marketing-Banner-.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"Candice-Infinity-Marketing-Banner--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:45:\"Candice-Infinity-Marketing-Banner--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:46:\"Candice-Infinity-Marketing-Banner--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:47:\"Candice-Infinity-Marketing-Banner--1024x307.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:307;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"bloom_image\";a:4:{s:4:\"file\";s:46:\"Candice-Infinity-Marketing-Banner--610x183.jpg\";s:5:\"width\";i:610;s:6:\"height\";i:183;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:46:\"Candice-Infinity-Marketing-Banner--400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:47:\"Candice-Infinity-Marketing-Banner--1080x600.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:46:\"Candice-Infinity-Marketing-Banner--400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:47:\"Candice-Infinity-Marketing-Banner--1080x324.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D800\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1457111556\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:6:\"0.0002\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("252", "144", "_wp_attachment_image_alt", "Infinity Marketing");
INSERT INTO `wp_postmeta` VALUES("253", "146", "_wp_attached_file", "2016/02/Candice-About_round.png");
INSERT INTO `wp_postmeta` VALUES("254", "146", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:300;s:6:\"height\";i:297;s:4:\"file\";s:31:\"2016/02/Candice-About_round.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Candice-About_round-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:\"Candice-About_round-300x297.png\";s:5:\"width\";i:300;s:6:\"height\";i:297;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:31:\"Candice-About_round-300x250.png\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:31:\"Candice-About_round-300x284.png\";s:5:\"width\";i:300;s:6:\"height\";i:284;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:{}}}");
INSERT INTO `wp_postmeta` VALUES("255", "157", "_wp_attached_file", "2016/02/About-Infinity.jpg");
INSERT INTO `wp_postmeta` VALUES("256", "157", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:900;s:4:\"file\";s:26:\"2016/02/About-Infinity.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"About-Infinity-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:26:\"About-Infinity-300x135.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:135;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"About-Infinity-768x346.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:346;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"About-Infinity-1024x461.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"bloom_image\";a:4:{s:4:\"file\";s:26:\"About-Infinity-610x275.jpg\";s:5:\"width\";i:610;s:6:\"height\";i:275;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:26:\"About-Infinity-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:27:\"About-Infinity-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:26:\"About-Infinity-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:27:\"About-Infinity-1080x486.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:486;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D800\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1457112281\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:8:\"0.000125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("257", "146", "_wp_attachment_image_alt", "About Infinity Marketing");
INSERT INTO `wp_postmeta` VALUES("258", "157", "_wp_attachment_image_alt", "About Infinity Marketing");
INSERT INTO `wp_postmeta` VALUES("259", "161", "_wp_attached_file", "2016/02/cropped-Candice-About_round.png");
INSERT INTO `wp_postmeta` VALUES("260", "161", "_wp_attachment_context", "site-icon");
INSERT INTO `wp_postmeta` VALUES("261", "161", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:39:\"2016/02/cropped-Candice-About_round.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"cropped-Candice-About_round-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:39:\"cropped-Candice-About_round-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:39:\"cropped-Candice-About_round-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:39:\"cropped-Candice-About_round-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-270\";a:4:{s:4:\"file\";s:39:\"cropped-Candice-About_round-270x270.png\";s:5:\"width\";i:270;s:6:\"height\";i:270;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-192\";a:4:{s:4:\"file\";s:39:\"cropped-Candice-About_round-192x192.png\";s:5:\"width\";i:192;s:6:\"height\";i:192;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-180\";a:4:{s:4:\"file\";s:39:\"cropped-Candice-About_round-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"site_icon-32\";a:4:{s:4:\"file\";s:37:\"cropped-Candice-About_round-32x32.png\";s:5:\"width\";i:32;s:6:\"height\";i:32;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:{}}}");
INSERT INTO `wp_postmeta` VALUES("262", "165", "_wp_attached_file", "2016/02/candice-5.jpg");
INSERT INTO `wp_postmeta` VALUES("263", "165", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:467;s:6:\"height\";i:700;s:4:\"file\";s:21:\"2016/02/candice-5.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"candice-5-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:21:\"candice-5-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:21:\"candice-5-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:21:\"candice-5-467x675.jpg\";s:5:\"width\";i:467;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:21:\"candice-5-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;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:{}}}");
INSERT INTO `wp_postmeta` VALUES("264", "165", "_wp_attachment_image_alt", "About Candice");
INSERT INTO `wp_postmeta` VALUES("265", "167", "_wp_attached_file", "2016/02/About-Candice-.jpg");
INSERT INTO `wp_postmeta` VALUES("266", "167", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:243;s:6:\"height\";i:409;s:4:\"file\";s:26:\"2016/02/About-Candice-.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"About-Candice--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:26:\"About-Candice--178x300.jpg\";s:5:\"width\";i:178;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:26:\"About-Candice--243x250.jpg\";s:5:\"width\";i:243;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:26:\"About-Candice--243x284.jpg\";s:5:\"width\";i:243;s:6:\"height\";i:284;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:{}}}");
INSERT INTO `wp_postmeta` VALUES("267", "167", "_wp_attachment_image_alt", "About Candice");
INSERT INTO `wp_postmeta` VALUES("268", "179", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("269", "98", "_et_monarch_override", "");
INSERT INTO `wp_postmeta` VALUES("270", "195", "_wp_attached_file", "2016/03/Infinity.png");
INSERT INTO `wp_postmeta` VALUES("271", "195", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:310;s:6:\"height\";i:250;s:4:\"file\";s:20:\"2016/03/Infinity.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"Infinity-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:20:\"Infinity-300x242.png\";s:5:\"width\";i:300;s:6:\"height\";i:242;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:20:\"Infinity-310x250.png\";s:5:\"width\";i:310;s:6:\"height\";i:250;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:{}}}");
INSERT INTO `wp_postmeta` VALUES("275", "219", "_wp_attached_file", "2016/02/Hands-on_sml.jpg");
INSERT INTO `wp_postmeta` VALUES("276", "219", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:24:\"2016/02/Hands-on_sml.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Hands-on_sml-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;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:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("277", "220", "_wp_attached_file", "2016/02/Individual-Projects_sml.jpg");
INSERT INTO `wp_postmeta` VALUES("278", "220", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:35:\"2016/02/Individual-Projects_sml.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"Individual-Projects_sml-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;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:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("279", "221", "_wp_attached_file", "2016/02/Other-Services_sml.jpg");
INSERT INTO `wp_postmeta` VALUES("280", "221", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:30:\"2016/02/Other-Services_sml.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Other-Services_sml-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;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:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("281", "218", "_wp_attachment_image_alt", "Coaching Packages");
INSERT INTO `wp_postmeta` VALUES("282", "219", "_wp_attachment_image_alt", "Hands-on Packages");
INSERT INTO `wp_postmeta` VALUES("283", "220", "_wp_attachment_image_alt", "Individual-Projects");
INSERT INTO `wp_postmeta` VALUES("284", "221", "_wp_attachment_image_alt", "Other-Services");
INSERT INTO `wp_postmeta` VALUES("285", "226", "_wp_attached_file", "2016/02/Connect.jpg");
INSERT INTO `wp_postmeta` VALUES("286", "226", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:19:\"2016/02/Connect.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"Connect-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;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:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("287", "227", "_wp_attached_file", "2016/02/Contact.jpg");
INSERT INTO `wp_postmeta` VALUES("288", "227", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:19:\"2016/02/Contact.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"Contact-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;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:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("289", "228", "_wp_attached_file", "2016/02/Services.jpg");
INSERT INTO `wp_postmeta` VALUES("290", "228", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:20:\"2016/02/Services.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"Services-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;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:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("291", "226", "_wp_attachment_image_alt", "Connect");
INSERT INTO `wp_postmeta` VALUES("292", "228", "_wp_attachment_image_alt", "Services");
INSERT INTO `wp_postmeta` VALUES("293", "227", "_wp_attachment_image_alt", "Contact");
INSERT INTO `wp_postmeta` VALUES("396", "337", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wp_postmeta` VALUES("395", "337", "_et_pb_post_hide_nav", "default");
INSERT INTO `wp_postmeta` VALUES("393", "337", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("316", "241", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:66;s:6:\"height\";i:67;s:4:\"file\";s:31:\"2016/02/Advertising-Booking.jpg\";s:5:\"sizes\";a:0:{}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:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("317", "242", "_wp_attached_file", "2016/02/Copywriting.jpg");
INSERT INTO `wp_postmeta` VALUES("318", "242", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:63;s:6:\"height\";i:77;s:4:\"file\";s:23:\"2016/02/Copywriting.jpg\";s:5:\"sizes\";a:0:{}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:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("315", "241", "_wp_attached_file", "2016/02/Advertising-Booking.jpg");
INSERT INTO `wp_postmeta` VALUES("308", "235", "_wp_attachment_image_alt", "Intro-Candice");
INSERT INTO `wp_postmeta` VALUES("307", "235", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:300;s:6:\"height\";i:252;s:4:\"file\";s:28:\"2016/02/Intro-Candice-v3.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Intro-Candice-v3-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:\"Intro-Candice-v3-300x252.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:252;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"Intro-Candice-v3-300x250.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D800\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1457112195\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:10:\"0.00015625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("306", "235", "_wp_attached_file", "2016/02/Intro-Candice-v3.jpg");
INSERT INTO `wp_postmeta` VALUES("309", "237", "_wp_attached_file", "2016/02/Initiate-Candice-v2.jpg");
INSERT INTO `wp_postmeta` VALUES("310", "237", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:300;s:6:\"height\";i:310;s:4:\"file\";s:31:\"2016/02/Initiate-Candice-v2.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Initiate-Candice-v2-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:31:\"Initiate-Candice-v2-290x300.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:31:\"Initiate-Candice-v2-300x250.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:31:\"Initiate-Candice-v2-300x284.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D800\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1457112408\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:8:\"0.000125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("311", "237", "_wp_attachment_image_alt", "Initiate-Candice");
INSERT INTO `wp_postmeta` VALUES("312", "238", "_wp_attached_file", "2016/02/Integrate-Candice-v2.jpg");
INSERT INTO `wp_postmeta` VALUES("313", "238", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:300;s:6:\"height\";i:317;s:4:\"file\";s:32:\"2016/02/Integrate-Candice-v2.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Integrate-Candice-v2-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:\"Integrate-Candice-v2-284x300.jpg\";s:5:\"width\";i:284;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"Integrate-Candice-v2-300x250.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"Integrate-Candice-v2-300x284.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D800\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1457112281\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:8:\"0.000125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("314", "238", "_wp_attachment_image_alt", "Integrate-Candice");
INSERT INTO `wp_postmeta` VALUES("319", "243", "_wp_attached_file", "2016/02/Event-Management.jpg");
INSERT INTO `wp_postmeta` VALUES("320", "243", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:68;s:6:\"height\";i:74;s:4:\"file\";s:28:\"2016/02/Event-Management.jpg\";s:5:\"sizes\";a:0:{}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:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("321", "244", "_wp_attached_file", "2016/02/Graphic-Design.jpg");
INSERT INTO `wp_postmeta` VALUES("322", "244", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:93;s:6:\"height\";i:76;s:4:\"file\";s:26:\"2016/02/Graphic-Design.jpg\";s:5:\"sizes\";a:0:{}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:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("323", "245", "_wp_attached_file", "2016/02/Photography.jpg");
INSERT INTO `wp_postmeta` VALUES("324", "245", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:73;s:6:\"height\";i:60;s:4:\"file\";s:23:\"2016/02/Photography.jpg\";s:5:\"sizes\";a:0:{}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:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("325", "246", "_wp_attached_file", "2016/02/Printing.jpg");
INSERT INTO `wp_postmeta` VALUES("326", "246", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:77;s:6:\"height\";i:78;s:4:\"file\";s:20:\"2016/02/Printing.jpg\";s:5:\"sizes\";a:0:{}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:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("327", "247", "_wp_attached_file", "2016/02/Video.jpg");
INSERT INTO `wp_postmeta` VALUES("328", "247", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:68;s:6:\"height\";i:68;s:4:\"file\";s:17:\"2016/02/Video.jpg\";s:5:\"sizes\";a:0:{}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:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("329", "248", "_wp_attached_file", "2016/02/Web-Development.jpg");
INSERT INTO `wp_postmeta` VALUES("330", "248", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:73;s:6:\"height\";i:75;s:4:\"file\";s:27:\"2016/02/Web-Development.jpg\";s:5:\"sizes\";a:0:{}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:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("331", "250", "_wp_attached_file", "2016/02/HeaderBackground.jpg");
INSERT INTO `wp_postmeta` VALUES("332", "250", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:450;s:4:\"file\";s:28:\"2016/02/HeaderBackground.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"HeaderBackground-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:\"HeaderBackground-300x68.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:68;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"HeaderBackground-768x173.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:173;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"HeaderBackground-1024x230.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:230;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"bloom_image\";a:4:{s:4:\"file\";s:28:\"HeaderBackground-610x137.jpg\";s:5:\"width\";i:610;s:6:\"height\";i:137;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"HeaderBackground-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:29:\"HeaderBackground-1080x450.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"HeaderBackground-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:29:\"HeaderBackground-1080x243.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:243;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:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("333", "259", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("334", "244", "_wp_attachment_image_alt", "Graphic Design");
INSERT INTO `wp_postmeta` VALUES("335", "246", "_wp_attachment_image_alt", "Printing");
INSERT INTO `wp_postmeta` VALUES("336", "245", "_wp_attachment_image_alt", "Photography");
INSERT INTO `wp_postmeta` VALUES("337", "247", "_wp_attachment_image_alt", "Video");
INSERT INTO `wp_postmeta` VALUES("338", "243", "_wp_attachment_image_alt", "Event Management");
INSERT INTO `wp_postmeta` VALUES("339", "248", "_wp_attachment_image_alt", "Web Development");
INSERT INTO `wp_postmeta` VALUES("340", "242", "_wp_attachment_image_alt", "Proof Reading");
INSERT INTO `wp_postmeta` VALUES("341", "241", "_wp_attachment_image_alt", "Advertising Booking");
INSERT INTO `wp_postmeta` VALUES("342", "279", "_wp_attached_file", "2016/02/Network-NZ-Transparent.png");
INSERT INTO `wp_postmeta` VALUES("384", "327", "_wp_attachment_image_alt", "Passion and Drive");
INSERT INTO `wp_postmeta` VALUES("385", "323", "_yoast_wpseo_title", "Why Building Your Own Dreams Is So Important - How Infinity Marketing Came To Be");
INSERT INTO `wp_postmeta` VALUES("386", "323", "_yoast_wpseo_metadesc", "“Build your own dreams, or someone else will hire you to build theirs” – Farrah Gray / Tony Gaskins. I’m not sure about you, but that little quote scared me");
INSERT INTO `wp_postmeta` VALUES("387", "323", "_yoast_wpseo_focuskw_text_input", "dreams");
INSERT INTO `wp_postmeta` VALUES("388", "323", "_yoast_wpseo_focuskw", "dreams");
INSERT INTO `wp_postmeta` VALUES("389", "323", "_yoast_wpseo_linkdex", "85");
INSERT INTO `wp_postmeta` VALUES("392", "323", "_wp_old_slug", "why-building-your-own-dreams-is-so-important-how-infinity-marketing-came-to-be");
INSERT INTO `wp_postmeta` VALUES("397", "337", "_et_pb_side_nav", "off");
INSERT INTO `wp_postmeta` VALUES("398", "337", "_et_pb_use_builder", "on");
INSERT INTO `wp_postmeta` VALUES("399", "337", "_et_pb_old_content", "");
INSERT INTO `wp_postmeta` VALUES("400", "337", "_edit_lock", "1461905024:1");
INSERT INTO `wp_postmeta` VALUES("401", "337", "_oembed_64c997eaa29e60ea428af99f39c48859", "{{unknown}}");
INSERT INTO `wp_postmeta` VALUES("402", "337", "_oembed_ac429c99b7c4284d68018a56f5394a73", "{{unknown}}");
INSERT INTO `wp_postmeta` VALUES("403", "337", "_oembed_170619ecabab610fcb4bf88f41737529", "{{unknown}}");
INSERT INTO `wp_postmeta` VALUES("404", "337", "_oembed_65e19ec35bd88280df48a6fe76de37bc", "{{unknown}}");
INSERT INTO `wp_postmeta` VALUES("405", "337", "_oembed_108bba7dcdc383c3edeaf9d7e9171f12", "{{unknown}}");
INSERT INTO `wp_postmeta` VALUES("406", "337", "_oembed_a8dbb989c6aa140619b38a8257259394", "{{unknown}}");
INSERT INTO `wp_postmeta` VALUES("407", "337", "_oembed_e8317133bd4ca51a15297ff351e8b601", "{{unknown}}");
INSERT INTO `wp_postmeta` VALUES("408", "337", "_oembed_9fc51a695c09c72302d8e42b8f2aec5f", "{{unknown}}");
INSERT INTO `wp_postmeta` VALUES("409", "337", "_oembed_b04d24dacf9019b115aa39c38ac6e433", "{{unknown}}");
INSERT INTO `wp_postmeta` VALUES("410", "337", "_oembed_6342bbdf2d9368894f12111fcd7dd2d8", "{{unknown}}");
INSERT INTO `wp_postmeta` VALUES("411", "337", "_et_monarch_override", "");
INSERT INTO `wp_postmeta` VALUES("412", "339", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("413", "339", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("414", "339", "_et_pb_post_hide_nav", "default");
INSERT INTO `wp_postmeta` VALUES("415", "339", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wp_postmeta` VALUES("416", "339", "_et_pb_side_nav", "off");
INSERT INTO `wp_postmeta` VALUES("417", "339", "_et_pb_use_builder", "on");
INSERT INTO `wp_postmeta` VALUES("418", "339", "_et_pb_old_content", "");
INSERT INTO `wp_postmeta` VALUES("419", "339", "_edit_lock", "1461905072:1");
INSERT INTO `wp_postmeta` VALUES("420", "339", "_oembed_64c997eaa29e60ea428af99f39c48859", "{{unknown}}");
INSERT INTO `wp_postmeta` VALUES("421", "339", "_oembed_ac429c99b7c4284d68018a56f5394a73", "{{unknown}}");
INSERT INTO `wp_postmeta` VALUES("422", "339", "_oembed_170619ecabab610fcb4bf88f41737529", "{{unknown}}");
INSERT INTO `wp_postmeta` VALUES("423", "339", "_oembed_65e19ec35bd88280df48a6fe76de37bc", "{{unknown}}");
INSERT INTO `wp_postmeta` VALUES("424", "339", "_oembed_108bba7dcdc383c3edeaf9d7e9171f12", "{{unknown}}");
INSERT INTO `wp_postmeta` VALUES("425", "339", "_oembed_a8dbb989c6aa140619b38a8257259394", "{{unknown}}");
INSERT INTO `wp_postmeta` VALUES("426", "339", "_oembed_e8317133bd4ca51a15297ff351e8b601", "{{unknown}}");
INSERT INTO `wp_postmeta` VALUES("427", "339", "_oembed_9fc51a695c09c72302d8e42b8f2aec5f", "{{unknown}}");
INSERT INTO `wp_postmeta` VALUES("428", "339", "_oembed_b04d24dacf9019b115aa39c38ac6e433", "{{unknown}}");
INSERT INTO `wp_postmeta` VALUES("429", "339", "_oembed_6342bbdf2d9368894f12111fcd7dd2d8", "{{unknown}}");
INSERT INTO `wp_postmeta` VALUES("430", "339", "_et_monarch_override", "");
INSERT INTO `wp_postmeta` VALUES("431", "343", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("432", "343", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("433", "343", "_et_pb_post_hide_nav", "default");
INSERT INTO `wp_postmeta` VALUES("434", "343", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wp_postmeta` VALUES("435", "343", "_et_pb_side_nav", "off");
INSERT INTO `wp_postmeta` VALUES("436", "343", "_et_pb_use_builder", "on");
INSERT INTO `wp_postmeta` VALUES("437", "343", "_et_pb_old_content", "");
INSERT INTO `wp_postmeta` VALUES("438", "343", "_edit_lock", "1461905172:1");
INSERT INTO `wp_postmeta` VALUES("439", "343", "_oembed_64c997eaa29e60ea428af99f39c48859", "{{unknown}}");
INSERT INTO `wp_postmeta` VALUES("440", "343", "_oembed_ac429c99b7c4284d68018a56f5394a73", "{{unknown}}");
INSERT INTO `wp_postmeta` VALUES("441", "343", "_oembed_170619ecabab610fcb4bf88f41737529", "{{unknown}}");
INSERT INTO `wp_postmeta` VALUES("442", "343", "_oembed_65e19ec35bd88280df48a6fe76de37bc", "{{unknown}}");
INSERT INTO `wp_postmeta` VALUES("443", "343", "_oembed_108bba7dcdc383c3edeaf9d7e9171f12", "{{unknown}}");
INSERT INTO `wp_postmeta` VALUES("444", "343", "_oembed_a8dbb989c6aa140619b38a8257259394", "{{unknown}}");
INSERT INTO `wp_postmeta` VALUES("445", "343", "_oembed_e8317133bd4ca51a15297ff351e8b601", "{{unknown}}");
INSERT INTO `wp_postmeta` VALUES("446", "343", "_oembed_9fc51a695c09c72302d8e42b8f2aec5f", "{{unknown}}");
INSERT INTO `wp_postmeta` VALUES("447", "343", "_oembed_b04d24dacf9019b115aa39c38ac6e433", "{{unknown}}");
INSERT INTO `wp_postmeta` VALUES("448", "343", "_oembed_6342bbdf2d9368894f12111fcd7dd2d8", "{{unknown}}");
INSERT INTO `wp_postmeta` VALUES("449", "343", "_et_monarch_override", "");
INSERT INTO `wp_postmeta` VALUES("450", "345", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("451", "345", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("452", "345", "_et_pb_post_hide_nav", "default");
INSERT INTO `wp_postmeta` VALUES("453", "345", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wp_postmeta` VALUES("454", "345", "_et_pb_side_nav", "off");
INSERT INTO `wp_postmeta` VALUES("455", "345", "_et_pb_use_builder", "on");
INSERT INTO `wp_postmeta` VALUES("456", "345", "_et_pb_old_content", "");
INSERT INTO `wp_postmeta` VALUES("457", "345", "_edit_lock", "1461905130:1");
INSERT INTO `wp_postmeta` VALUES("458", "345", "_oembed_64c997eaa29e60ea428af99f39c48859", "{{unknown}}");
INSERT INTO `wp_postmeta` VALUES("459", "345", "_oembed_ac429c99b7c4284d68018a56f5394a73", "{{unknown}}");
INSERT INTO `wp_postmeta` VALUES("460", "345", "_oembed_170619ecabab610fcb4bf88f41737529", "{{unknown}}");
INSERT INTO `wp_postmeta` VALUES("461", "345", "_oembed_65e19ec35bd88280df48a6fe76de37bc", "{{unknown}}");
INSERT INTO `wp_postmeta` VALUES("462", "345", "_oembed_108bba7dcdc383c3edeaf9d7e9171f12", "{{unknown}}");
INSERT INTO `wp_postmeta` VALUES("463", "345", "_oembed_a8dbb989c6aa140619b38a8257259394", "{{unknown}}");
INSERT INTO `wp_postmeta` VALUES("464", "345", "_oembed_e8317133bd4ca51a15297ff351e8b601", "{{unknown}}");
INSERT INTO `wp_postmeta` VALUES("465", "345", "_oembed_9fc51a695c09c72302d8e42b8f2aec5f", "{{unknown}}");
INSERT INTO `wp_postmeta` VALUES("466", "345", "_oembed_b04d24dacf9019b115aa39c38ac6e433", "{{unknown}}");
INSERT INTO `wp_postmeta` VALUES("467", "345", "_oembed_6342bbdf2d9368894f12111fcd7dd2d8", "{{unknown}}");
INSERT INTO `wp_postmeta` VALUES("468", "345", "_et_monarch_override", "");
INSERT INTO `wp_postmeta` VALUES("469", "347", "_wp_attached_file", "2016/04/Social-Media.jpg");
INSERT INTO `wp_postmeta` VALUES("470", "347", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:72;s:6:\"height\";i:76;s:4:\"file\";s:24:\"2016/04/Social-Media.jpg\";s:5:\"sizes\";a:0:{}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:{}}}");
INSERT INTO `wp_postmeta` VALUES("471", "348", "_wp_attached_file", "2016/04/Email.jpg");
INSERT INTO `wp_postmeta` VALUES("472", "348", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:75;s:6:\"height\";i:54;s:4:\"file\";s:17:\"2016/04/Email.jpg\";s:5:\"sizes\";a:0:{}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:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `wp_postmeta` VALUES("473", "347", "_wp_attachment_image_alt", "Social Media");
INSERT INTO `wp_postmeta` VALUES("474", "348", "_wp_attachment_image_alt", "Email");
INSERT INTO `wp_postmeta` VALUES("475", "355", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("476", "362", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("477", "370", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("478", "397", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("479", "414", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("538", "454", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:250;s:4:\"file\";s:26:\"2016/02/Website_banner.png\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Website_banner-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:25:\"Website_banner-300x69.png\";s:5:\"width\";i:300;s:6:\"height\";i:69;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"Website_banner-768x178.png\";s:5:\"width\";i:768;s:6:\"height\";i:178;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"Website_banner-1024x237.png\";s:5:\"width\";i:1024;s:6:\"height\";i:237;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"bloom_image\";a:4:{s:4:\"file\";s:26:\"Website_banner-610x141.png\";s:5:\"width\";i:610;s:6:\"height\";i:141;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:26:\"Website_banner-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:27:\"Website_banner-1080x250.png\";s:5:\"width\";i:1080;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:26:\"Website_banner-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:27:\"Website_banner-1080x250.png\";s:5:\"width\";i:1080;s:6:\"height\";i:250;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:{}}}");
INSERT INTO `wp_postmeta` VALUES("537", "454", "_wp_attached_file", "2016/02/Website_banner.png");
INSERT INTO `wp_postmeta` VALUES("501", "442", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("502", "442", "_menu_item_menu_item_parent", "52");
INSERT INTO `wp_postmeta` VALUES("503", "442", "_menu_item_object_id", "343");
INSERT INTO `wp_postmeta` VALUES("504", "442", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("505", "442", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("506", "442", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("507", "442", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("508", "442", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("510", "443", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("511", "443", "_menu_item_menu_item_parent", "52");
INSERT INTO `wp_postmeta` VALUES("512", "443", "_menu_item_object_id", "345");
INSERT INTO `wp_postmeta` VALUES("513", "443", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("514", "443", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("515", "443", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("516", "443", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("517", "443", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("519", "444", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("520", "444", "_menu_item_menu_item_parent", "52");
INSERT INTO `wp_postmeta` VALUES("521", "444", "_menu_item_object_id", "339");
INSERT INTO `wp_postmeta` VALUES("522", "444", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("523", "444", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("524", "444", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("525", "444", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("526", "444", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("528", "445", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("529", "445", "_menu_item_menu_item_parent", "52");
INSERT INTO `wp_postmeta` VALUES("530", "445", "_menu_item_object_id", "337");
INSERT INTO `wp_postmeta` VALUES("531", "445", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("532", "445", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("533", "445", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("534", "445", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("535", "445", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("539", "454", "_wp_attachment_image_alt", "Infinity-Marketing-Outsourced-Marketing");
INSERT INTO `wp_postmeta` VALUES("540", "459", "_wp_page_template", "default");
INSERT INTO `wp_postmeta` VALUES("541", "459", "_edit_lock", "1480492877:1");
INSERT INTO `wp_postmeta` VALUES("542", "459", "_edit_last", "1");
INSERT INTO `wp_postmeta` VALUES("543", "459", "_et_pb_post_hide_nav", "default");
INSERT INTO `wp_postmeta` VALUES("544", "459", "_et_pb_page_layout", "et_right_sidebar");
INSERT INTO `wp_postmeta` VALUES("545", "459", "_et_pb_side_nav", "off");
INSERT INTO `wp_postmeta` VALUES("546", "459", "_et_pb_use_builder", "on");
INSERT INTO `wp_postmeta` VALUES("547", "459", "_et_pb_old_content", "<p>This is an example of a WordPress page, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many pages like this one or sub-pages as you like and manage all of your content inside of WordPress.</p>");
INSERT INTO `wp_postmeta` VALUES("548", "459", "_et_monarch_override", "");
INSERT INTO `wp_postmeta` VALUES("549", "459", "my_meta_box_check", "off");
INSERT INTO `wp_postmeta` VALUES("550", "459", "lpp_enable_email_newsletter", "");
INSERT INTO `wp_postmeta` VALUES("551", "459", "lpp_is_front_page", "");
INSERT INTO `wp_postmeta` VALUES("552", "459", "lpp_load_wphead", "");
INSERT INTO `wp_postmeta` VALUES("553", "459", "lpp_load_wpfooter", "");
INSERT INTO `wp_postmeta` VALUES("554", "459", "_yoast_wpseo_content_score", "30");
INSERT INTO `wp_postmeta` VALUES("555", "462", "_menu_item_type", "post_type");
INSERT INTO `wp_postmeta` VALUES("556", "462", "_menu_item_menu_item_parent", "0");
INSERT INTO `wp_postmeta` VALUES("557", "462", "_menu_item_object_id", "459");
INSERT INTO `wp_postmeta` VALUES("558", "462", "_menu_item_object", "page");
INSERT INTO `wp_postmeta` VALUES("559", "462", "_menu_item_target", "");
INSERT INTO `wp_postmeta` VALUES("560", "462", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `wp_postmeta` VALUES("561", "462", "_menu_item_xfn", "");
INSERT INTO `wp_postmeta` VALUES("562", "462", "_menu_item_url", "");
INSERT INTO `wp_postmeta` VALUES("630", "499", "_wp_attached_file", "2016/02/Stamp-with-No-Background.png");
INSERT INTO `wp_postmeta` VALUES("629", "497", "_et_pb_built_for_post_type", "page");
INSERT INTO `wp_postmeta` VALUES("631", "500", "_wp_attached_file", "2016/02/Stamp-with-No-Background-1.png");
INSERT INTO `wp_postmeta` VALUES("632", "501", "_wp_attached_file", "2016/02/Stamp-with-White-Background.png");
INSERT INTO `wp_postmeta` VALUES("633", "502", "_wp_attached_file", "2016/02/Stamp-with-No-Background-2.png");
INSERT INTO `wp_postmeta` VALUES("634", "503", "_wp_attached_file", "2016/02/Stamp-with-No-Background-3.png");
INSERT INTO `wp_postmeta` VALUES("635", "504", "_wp_attached_file", "2016/02/Stamp-with-No-Background-4.png");
INSERT INTO `wp_postmeta` VALUES("636", "505", "_wp_attached_file", "2016/02/Stamp-with-No-Background-5.png");
INSERT INTO `wp_postmeta` VALUES("637", "506", "_wp_attached_file", "2016/02/Stamp-with-No-Background-6.png");
INSERT INTO `wp_postmeta` VALUES("638", "507", "_wp_attached_file", "2016/02/Stamp-with-No-Background-7.png");
INSERT INTO `wp_postmeta` VALUES("639", "508", "_wp_attached_file", "2016/02/Stamp-with-No-Background-8.png");
INSERT INTO `wp_postmeta` VALUES("640", "509", "_wp_attached_file", "2016/02/Stamp-with-White-Background-1.png");
INSERT INTO `wp_postmeta` VALUES("641", "511", "_wp_attached_file", "2016/11/Stamp-with-White-Background.png");
INSERT INTO `wp_postmeta` VALUES("642", "512", "_wp_attached_file", "2016/11/InfinityMarketing_signature.png");
INSERT INTO `wp_postmeta` VALUES("643", "512", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:150;s:6:\"height\";i:120;s:4:\"file\";s:39:\"2016/11/InfinityMarketing_signature.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"InfinityMarketing_signature-150x120.png\";s:5:\"width\";i:150;s:6:\"height\";i:120;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:{}}}");
INSERT INTO `wp_postmeta` VALUES("644", "513", "_wp_attached_file", "2016/11/Linkedin.png");
INSERT INTO `wp_postmeta` VALUES("645", "513", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:24;s:6:\"height\";i:24;s:4:\"file\";s:20:\"2016/11/Linkedin.png\";s:5:\"sizes\";a:0:{}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:{}}}");
INSERT INTO `wp_postmeta` VALUES("646", "514", "_wp_attached_file", "2016/11/Facebook.png");
INSERT INTO `wp_postmeta` VALUES("647", "514", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:29;s:6:\"height\";i:24;s:4:\"file\";s:20:\"2016/11/Facebook.png\";s:5:\"sizes\";a:0:{}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:{}}}");
INSERT INTO `wp_postmeta` VALUES("648", "515", "_wp_attached_file", "2016/11/Instagram.png");
INSERT INTO `wp_postmeta` VALUES("649", "515", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:24;s:6:\"height\";i:24;s:4:\"file\";s:21:\"2016/11/Instagram.png\";s:5:\"sizes\";a:0:{}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:{}}}");
INSERT INTO `wp_postmeta` VALUES("650", "43", "_et_pb_ab_bounce_rate_limit", "5");
INSERT INTO `wp_postmeta` VALUES("651", "43", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wp_postmeta` VALUES("652", "43", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wp_postmeta` VALUES("653", "43", "_et_pb_custom_css", "");
INSERT INTO `wp_postmeta` VALUES("654", "43", "_et_pb_light_text_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("655", "43", "_et_pb_dark_text_color", "#666666");
INSERT INTO `wp_postmeta` VALUES("656", "43", "_et_pb_content_area_background_color", "rgba(255,255,255,0)");
INSERT INTO `wp_postmeta` VALUES("657", "43", "_et_pb_section_background_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("658", "43", "_yoast_wpseo_content_score", "90");
INSERT INTO `wp_postmeta` VALUES("659", "518", "_wp_attached_file", "2016/11/Stamp-with-White-Background-1.png");
INSERT INTO `wp_postmeta` VALUES("660", "519", "_wp_attached_file", "2016/11/NNZ-Endorsed.png");
INSERT INTO `wp_postmeta` VALUES("661", "519", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:24:\"2016/11/NNZ-Endorsed.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"NNZ-Endorsed-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:24:\"NNZ-Endorsed-300x250.png\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:24:\"NNZ-Endorsed-300x284.png\";s:5:\"width\";i:300;s:6:\"height\";i:284;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:{}}}");
INSERT INTO `wp_postmeta` VALUES("662", "2", "_et_pb_ab_bounce_rate_limit", "5");
INSERT INTO `wp_postmeta` VALUES("663", "2", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wp_postmeta` VALUES("664", "2", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wp_postmeta` VALUES("665", "2", "_et_pb_custom_css", "");
INSERT INTO `wp_postmeta` VALUES("666", "2", "_et_pb_light_text_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("667", "2", "_et_pb_dark_text_color", "#666666");
INSERT INTO `wp_postmeta` VALUES("668", "2", "_et_pb_content_area_background_color", "rgba(255,255,255,0)");
INSERT INTO `wp_postmeta` VALUES("669", "2", "_et_pb_section_background_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("670", "2", "_yoast_wpseo_content_score", "90");
INSERT INTO `wp_postmeta` VALUES("671", "520", "_wp_attached_file", "2016/02/The-Sticky-Handshake.jpg");
INSERT INTO `wp_postmeta` VALUES("672", "520", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:335;s:6:\"height\";i:113;s:4:\"file\";s:32:\"2016/02/The-Sticky-Handshake.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"The-Sticky-Handshake-150x113.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:113;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"The-Sticky-Handshake-300x101.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:101;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:14:\"Candice Venter\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1480534259\";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:{}}}");
INSERT INTO `wp_postmeta` VALUES("673", "520", "_wp_attachment_image_alt", "");
INSERT INTO `wp_postmeta` VALUES("674", "459", "_et_pb_ab_bounce_rate_limit", "5");
INSERT INTO `wp_postmeta` VALUES("675", "459", "_et_pb_ab_stats_refresh_interval", "hourly");
INSERT INTO `wp_postmeta` VALUES("676", "459", "_et_pb_enable_shortcode_tracking", "");
INSERT INTO `wp_postmeta` VALUES("677", "459", "_et_pb_custom_css", "");
INSERT INTO `wp_postmeta` VALUES("678", "459", "_et_pb_light_text_color", "#ffffff");
INSERT INTO `wp_postmeta` VALUES("679", "459", "_et_pb_dark_text_color", "#666666");
INSERT INTO `wp_postmeta` VALUES("680", "459", "_et_pb_content_area_background_color", "rgba(255,255,255,0)");
INSERT INTO `wp_postmeta` VALUES("681", "459", "_et_pb_section_background_color", "#ffffff");

/* INSERT TABLE DATA: wp_posts */
INSERT INTO `wp_posts` VALUES("334", "1", "2016-04-26 20:27:45", "2016-04-26 08:27:45", "[et_pb_section admin_label=\"Impact Background\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice-Infinity-Marketing-Banner-.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Impact Text\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/discover-v2.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_signup admin_label=\"Email Optin\" provider=\"mailchimp\" mailchimp_list=\"4419f44e8e\" aweber_list=\"none\" use_background_color=\"on\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"left\" use_focus_border_color=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" title=\"Get practical marketing tips delivered straight to your inbox\" button_text=\"Sign me up!\" header_font=\"Open Sans||||\" header_font_size=\"22\" body_font=\"Open Sans||||\"] [/et_pb_signup][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"0px|||\"]\r\n<h2 style=\"text-align: center;\">Building your dream business can be overwhelming</h2>\r\n<h2 style=\"text-align: center;\">and how do you know what marketing works?</h2>\r\n<p style=\"text-align: center;\">In your small business, you tend to try and juggle it all. Infinity Marketing is here to help you\r\nwith marketing that suits your unique business, no matter which stage it is at.</p>\r\n<p style=\"text-align: center;\">We work together with you, to gain a thorough understanding of who your customers are,\r\nand where they are, to deliver the best marketing for your small business.</p>\r\n<p style=\"text-align: center;\">You might know exactly what your business needs to get the extra punch it requires,\r\nand need help with implementation of your marketing plan. Otherwise, you might\r\nbe starting out and need a guiding hand to identify what needs to be done for your business marketing.</p>\r\n<p style=\"text-align: center;\">Whatever stage you are at, we can help you take your business to the next level,\r\nwhere the possibilities are infinite.</p>\r\n<p style=\"text-align: center;\"><strong><a href=\"http://www.infinitymarketing.co.nz/work-with-us/\">Let\'s discover how we can make that happen for your business</a></strong></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#b3babf\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Connect CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Connect.jpg\" alt=\"Connect on Facebook\" show_in_lightbox=\"off\" url=\"http://www.facebook.com/infinitymarketing.co.nz\" url_new_window=\"on\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Services CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Services.jpg\" alt=\"View Services\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/work-with-us/\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Contact CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Contact.jpg\" alt=\"Contact us\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/contact/\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice-About_round.png\" alt=\"Candice Venter\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"About Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>About Candice</h2>\r\nCandice has a passion for marketing for small businesses, having worked in both start up and large corporations, she has seen and done a lot. She has an absolute passion for helping small businesses grow through the power of marketing.\r\n\r\nAn expert in understanding who your customers are, understanding where they are and delivering messages that inspire action, Candice thrives on creating marketing that works.\r\n\r\nAbove all, she is passionate to help your business succeed.\r\n\r\n[/et_pb_text][et_pb_button admin_label=\"Read More Button\" button_url=\"http://www.infinitymarketing.co.nz/about/\" url_new_window=\"off\" button_text=\"Read More\" button_alignment=\"left\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#f9f9f9\" button_bg_color=\"#009edb\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon=\"%%28%%\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-us/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\">Discover the services we provide</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "HOME", "", "inherit", "closed", "closed", "", "37-revision-v1", "", "", "2016-04-26 20:27:45", "2016-04-26 08:27:45", "", "37", "http://www.infinitymarketing.co.nz/37-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("2", "1", "2016-02-25 16:47:04", "2016-02-25 16:47:04", "[et_pb_section admin_label=\"section\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"About Infinity Marketing Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">About Infinity Marketing</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hello I\'m Candice Venter Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\"><strong>Hi, I\'m Candice Venter</strong></h2>\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h2 style=\"text-align: center;\"><em>Your outsourced marketing expert, </em><em>here to help you\r\nwith marketing your small business</em>\r\n<em> with marketing that works!</em></h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nRight now, I\'m sure you\'re feeling like you are trying to juggle it all, to know every aspect of how to do everything for your business, and not sure how to get the results you need for your business to grow (or even survive!) and overall just frustrated and bombarded!\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><strong>I get it, balancing everything is HARD and you quite simply can\'t be the expert at everything. </strong></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI\'m here to show you that there is help and a light at the end of the tunnel where your business can succeed.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhy I love helping small businesses deliver outstanding marketing and see their businesses grow as a result, is because I am inspired by what amazing people and talents there are in our community. My passion is helping other people succeed, and I believe that everyone <strong>deserves</strong> to succeed.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI want this for you! I want to share my skills as a qualified and experienced marketing professional, to help your business grow and succeed.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/About-Candice-.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Get Personal Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#888e8f\" border_style=\"outset\" border_width=\"2px\"]\r\n<h2 style=\"text-align: justify;\">Let\'s get personal</h2>\r\n[/et_pb_text][et_pb_text admin_label=\"Get Personal Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOriginally from South Africa, I have now lived over half my life in Auckland, New Zealand. That means I have a good mix of being able to tell it straight, with a good dose of kiwi ingenuity. I studied a Bachelor of Business and Information Management, with a second major in Marketing at the University of Auckland and have gained my professional experience in both global corporations and a great kiwi start-up.\r\n\r\nFamily is my everything. It\'s for them, that I do what I do.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Network NZ Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/11/NNZ-Endorsed.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Network NZ Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>Infinity Marketing is proud to be a Network NZ Endorsed Supplier and Marketing Expert</h2>\r\nTo find out more about Network NZ, <a href=\"http://www.networknz.nz\">click here to visit www.networknz.nz</a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Venus Network Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>Infinity Marketing is proud to be a member of Venus Network</h2>\r\nTo find out more about Venus Network, <a href=\"http://www.venusnetwork.co.nz\">click here to visit www.venusnetwork.co.nz</a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Venus Network Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Venus-Logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"The Sticky Handshake Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/The-Sticky-Handshake.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"The Sticky Handshake Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>Infinity Marketing is proud to be a member of The Sticky Handshake</h2>\r\nTo find out more about The Sticky Handshake, <a href=\"http://thestickyhandshake.co.nz\">click here to visit www.thestickyhandshake.co.nz</a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" global_module=\"179\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"179\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"179\" admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-us/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\">Take the first step toward your new future</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "ABOUT", "", "publish", "open", "open", "", "about", "", "", "2016-11-30 19:34:24", "2016-11-30 06:34:24", "", "0", "http://www.infinitymarketing.co.nz/?page_id=2", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("497", "1", "2016-10-20 15:48:45", "2016-10-20 02:48:45", "[et_pb_section background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"font-size: 52px;\">Product Features</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" url_new_window=\"off\" animation=\"bottom\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Advanced Page Builder\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon=\"on\" use_circle=\"on\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"\" icon_color=\"#2ea3f2\"]Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Key Elements\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon=\"on\" use_circle=\"on\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"\" icon_color=\"#2ad4e0\"]The builder comes packed with tons of great modules, and more are on the way! Combine and arrange them in any order. The possibilities are countless.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Target Audience\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon=\"on\" icon_color=\"#9633e8\" use_circle=\"on\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"\"]Divi’s layout has been designed with mobile devices in mind. No matter how you use it, and no matter how you view it, your website is going to look great.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Strategy\" url_new_window=\"off\" image=\"https://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon=\"on\" icon_color=\"#d85fd6\" use_circle=\"on\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"\"]Divi is here to stay, and you can rest easy knowing that our team will be updating and improving it for years to come. Build on top of a powerful foundation.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"builder\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>Advanced Drag & Drop Builder</h1>\nThe Divi Builder was made with user experience at the forefront of its priorities. The way it is broken up into sections, rows, columns and widgets, really allows you to understand and edit the structure of your page. Your editing controls are pulled out of the main content area so that you get a clear and concise representation of how your modules fit into your page layout.[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1080px.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"on\" module_id=\"backgrounds\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"][et_pb_slide heading=\"All The Right Things\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi.Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#283139\" inner_shadow=\"off\" parallax=\"off\" module_id=\"mobile\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]\n<h1>Fully Responsive Layouts</h1>\nWe know that your website needs to be accessible and readable on all devices. We made Divi fully responsive so that your designs look great no matter what. With the builder, you design your desktop website, and we make sure that Divi does the heavy lifting for you.\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1080px.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/d2-placeholder-510px.png\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"70\" /][et_pb_cta admin_label=\"Call To Action\" title=\"Product Feature\" button_url=\"#\" button_text=\"Learn More\" use_background_color=\"off\" background_color=\"#2caaca\" background_layout=\"light\" text_orientation=\"left\"]Divi Ships with a tone of great premade layouts to get you started with a homepage, a portfolio, an eCommerce Storefront, and much more! Check out the theme demo to preview a few of these premade layouts. We\'ve even realeased layout packs along the way for portfolios and business focused websites.[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"40\" /][et_pb_cta admin_label=\"Call To Action\" title=\"Product Feature\" button_url=\"#\" button_text=\"Learn More\" use_background_color=\"off\" background_color=\"#2caaca\" background_layout=\"light\" text_orientation=\"right\"]Divi Ships with a tone of great premade layouts to get you started with a homepage, a portfolio, an eCommerce Storefront, and much more! Check out the theme demo to preview a few of these premade layouts. We\'ve even realeased layout packs along the way for portfolios and business focused websites.[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/d2-placeholder-510px.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"#\" button_text=\"Join Today\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\"]Join today and get access to Divi, as well as our other countless themes and plugins.[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Product Features", "", "publish", "closed", "closed", "", "product-features", "", "", "2016-10-20 15:48:45", "2016-10-20 02:48:45", "", "0", "http://www.infinitymarketing.co.nz/et_pb_layout/product-features/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("496", "1", "2016-10-20 15:48:45", "2016-10-20 02:48:45", "[et_pb_section background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" image=\"https://elegantthemesimages.com/images/premade/d2-300px.png\" animation=\"bottom\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#45c4ec\" use_circle=\"off\" circle_color=\"#45c4ec\" use_circle_border=\"off\" circle_border_color=\"#45c4ec\" icon_placement=\"top\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"font-size: 72px; font-weight: 300;\">Divi Case Study</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>The Challenge</h2>\nVivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>The Solution</h2>\nVivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"on\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\"][et_pb_slide heading=\"Complete Corporate Identity\" background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide heading=\"We Rethought Everything\" background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#353535\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Corporate Rebranding\" number=\"70\" percent_sign=\"on\" background_layout=\"dark\" counter_color=\"#2ea3f2\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Website Redesign\" number=\"30\" percent_sign=\"on\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Day Turnaround\" number=\"60\" percent_sign=\"off\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Amazing Result\" number=\"1\" percent_sign=\"off\" background_layout=\"dark\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"90\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<h1>Mobile Site Boosted Sales By 50%</h1>[/et_pb_text][et_pb_blurb admin_label=\"Blurb\" title=\"Mobile Refresh\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"left\" animation=\"right\" background_layout=\"dark\" text_orientation=\"left\"]The Challenge Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Rebuilt From the Inside Out\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"left\" animation=\"right\" background_layout=\"dark\" text_orientation=\"left\"]The Challenge Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Extensive Demographic Studies\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"left\" animation=\"right\" background_layout=\"dark\" text_orientation=\"left\"]The Challenge Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/mobile-lockup.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#353535\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_counters admin_label=\"Bar Counters\" background_layout=\"light\" background_color=\"#2e2e2e\"][et_pb_counter percent=\"80\"]Mobile Sales[/et_pb_counter][et_pb_counter percent=\"50\"]Website Traffic[/et_pb_counter][et_pb_counter percent=\"75\"]Conversion Rate[/et_pb_counter][et_pb_counter percent=\"60\"]Email Subscribers[/et_pb_counter][/et_pb_counters][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_cta admin_label=\"Call To Action\" title=\"The Results Were Amazing\" button_url=\"#\" button_text=\"Live Project\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\"]Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl.[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" background_color=\"#2e2e2e\"][et_pb_fullwidth_portfolio admin_label=\"Fullwidth Portfolio\" fullwidth=\"on\" show_title=\"on\" show_date=\"off\" background_layout=\"dark\" auto=\"off\" title=\"Related Case Studies\" /][/et_pb_section]", "Case Study", "", "publish", "closed", "closed", "", "case-study", "", "", "2016-10-20 15:48:45", "2016-10-20 02:48:45", "", "0", "http://www.infinitymarketing.co.nz/et_pb_layout/case-study/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("495", "1", "2016-10-20 15:48:45", "2016-10-20 02:48:45", "[et_pb_section fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"][et_pb_slide heading=\"A Brand New Product\" background_color=\"#efefef\" image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-510px.png\" alignment=\"center\" background_layout=\"light\" button_text=\"Buy Now\"]The Divi Builder allows you to create beautiful and unique layouts visually, without touching a single line of code.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Gorgeous Design\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Drag & Drop Builder\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"1\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Fully Responsive\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f3f3f3\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>Plans and Pricing</h1>\nLorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam eros at, laoreet metus. Proin ac eros eros. Suspendisse auctor, eros ac sollicitudin vulputate.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60\" /][et_pb_pricing_tables admin_label=\"Pricing Table\"][et_pb_pricing_table featured=\"off\" title=\"Basic\" currency=\"$\" per=\"yr\" sum=\"39\" button_url=\"https://elegantthemes.com/\" button_text=\"Sign Up\"]+Access to <a href=\"https://elegantthemes.com/preview/Divi/module-pricing-tables/#\">All Themes</a>\n+Perpetual Theme Updates\n-Premium Technical Support\n-Access to <a href=\"https://elegantthemes.com/preview/Divi/module-pricing-tables/#\">All Plugins</a>\n-Layered Photoshop Files\n-No Yearly Fees[/et_pb_pricing_table][et_pb_pricing_table featured=\"off\" title=\"Personal\" currency=\"$\" per=\"yr\" sum=\"69\" button_url=\"https://elegantthemes.com/\" button_text=\"Sign Up\"]+Access to <a href=\"https://elegantthemes.com/preview/Divi/module-pricing-tables/#\">All Themes</a>\n+Perpetual Theme Updates\n+Premium Technical Support\n-Access to <a href=\"https://elegantthemes.com/preview/Divi/module-pricing-tables/#\">All Plugins</a>\n-Layered Photoshop Files\n-No Yearly Fees[/et_pb_pricing_table][et_pb_pricing_table featured=\"on\" title=\"Developer\" subtitle=\"Best Value\" currency=\"$\" per=\"yr\" sum=\"89\" button_url=\"https://elegantthemes.com/\" button_text=\"Sign Up\"]+Access to <a href=\"https://elegantthemes.com/preview/Divi/module-pricing-tables/#\">All Themes</a>\n+Perpetual Theme Updates\n+Premium Technical Support\n+Access to <a href=\"https://elegantthemes.com/preview/Divi/module-pricing-tables/#\">All Plugins</a>\n+Layered Photoshop Files\n-No Yearly Fees[/et_pb_pricing_table][et_pb_pricing_table featured=\"off\" title=\"Lifetime\" currency=\"$\" sum=\"249\" button_url=\"https://elegantthemes.com/\" button_text=\"Sign Up\"]+Access to <a href=\"https://elegantthemes.com/preview/Divi/module-pricing-tables/#\">All Themes</a>\n+Perpetual Theme Updates\n+Premium Technical Support\n+Access to <a href=\"https://elegantthemes.com/preview/Divi/module-pricing-tables/#\">All Plugins</a>\n+Layered Photoshop Files\n+No Yearly Fees[/et_pb_pricing_table][/et_pb_pricing_tables][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>What Our Customers Are Saying</h1>\nDon\'t just take it from us, let our customers do the talking![/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Luke Chapman\" url_new_window=\"off\" portrait_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam eros at, laoreet metus. Proin ac eros eros. Suspendisse auctor, eros ac sollicitudin vulputate, urna arcu sodales quam, eget faucibus eros ante nec enim.\n\nEtiam quis eros in enim molestie tempus a non urna. Suspendisse nibh massa, tristique sit amet interdum non, fermentum in quam. \"[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Luke Chapman\" url_new_window=\"off\" portrait_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam eros at, laoreet metus. Proin ac eros eros. Suspendisse auctor, eros ac sollicitudin vulputate, urna arcu sodales quam, eget faucibus eros ante nec enim.\n\nEtiam quis eros in enim molestie tempus a non urna. Suspendisse nibh massa, tristique sit amet interdum non, fermentum in quam. \"[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Luke Chapman\" url_new_window=\"off\" portrait_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam eros at, laoreet metus. Proin ac eros eros. Suspendisse auctor, eros ac sollicitudin vulputate, urna arcu sodales quam, eget faucibus eros ante nec enim.\n\nEtiam quis eros in enim molestie tempus a non urna. Suspendisse nibh massa, tristique sit amet interdum non, fermentum in quam. \"[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#eeeeee\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/et-logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"bottom\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/et-logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"bottom\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/et-logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"bottom\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/et-logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"bottom\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>Frequently Asked Questions</h1>[/et_pb_text][et_pb_toggle admin_label=\"Toggle\" title=\"Can I use the themes on multiple sites?\" open=\"off\"]Yes, you are free to use our themes on as many websites as you like. We do not place any restrictions on how many times you can download or use a theme, nor do we limit the number of domains that you can install our themes to.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" title=\"What is your refund policy?\" open=\"on\"]We offer no-questions-asked refunds to all customers within 30 days of your purchase. If you are not satisfied with our product, then simply send us an email and we will refund your purchase right away. Our goal has always been to create a happy, thriving community. If you are not thrilled with the product or are not enjoying the experience, then we have no interest in forcing you to stay an unhappy member.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" title=\"What are Photoshop Files?\" open=\"off\"]Elegant Themes offers two different packages: Personal and Developer. The Personal Subscription is ideal for the average user while the Developers License is meant for experienced designers who wish to customize their themes using the original Photoshop files. Photoshop files are the original design files that were used to create the theme. They can be opened using Adobe Photoshop and edited, and prove very useful for customers wishing to change their theme\'s design in some way.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" title=\"Can I upgrade after signing up?\" open=\"off\"]Yes, you can upgrade at any time after signing up. When you log in as a \"personal\" subscriber, you will see a notice regarding your current package and instructions on how to upgrade.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" title=\"Can I use your themes with WP.com?\" open=\"off\"]Unfortunately WordPress.com does not allow the use of custom themes. If you would like to use a custom theme of any kind, you will need to purchase your own hosting account and install the free software from WordPress.org. If you are looking for great WordPress hosting, we recommend giving HostGator a try.[/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Don\'t Be Shy\" button_url=\"#\" button_text=\"Get In Touch\" use_background_color=\"off\" background_color=\"#108bf5\" background_layout=\"dark\" text_orientation=\"center\"]If we didn\'t answer all of your questions, feel free to drop us a line anytime.[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Sales Page", "", "publish", "closed", "closed", "", "sales-page", "", "", "2016-10-20 15:48:45", "2016-10-20 02:48:45", "", "0", "http://www.infinitymarketing.co.nz/et_pb_layout/sales-page/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("492", "1", "2016-10-20 15:48:45", "2016-10-20 02:48:45", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_map admin_label=\"Fullwidth Map\" zoom_level=\"9\" address_lat=\"37.77492949999972\" address_lng=\"-122.41941550000001\"][et_pb_map_pin title=\"Headquarters\" pin_address=\"San Francisco, CA, USA\" pin_address_lat=\"37.7749295\" pin_address_lng=\"-122.41941550000001\" /][/et_pb_fullwidth_map][/et_pb_section][et_pb_section fullwidth=\"off\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_contact_form admin_label=\"Contact Form\" captcha=\"off\" title=\"Get In Touch\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h3>More Info</h3>\n<p>sit amet, consectetur adipiscing elit. Integer placerat metus id orci facilisis, in luctus eros laoreet. Mauris interdum augue varius, faucibus massa id, imperdiet tortor. Donec vel tortor molestie, hendrerit sem a, hendrerit arcu. Aliquam erat volutpat. Proin varius eros eros, non condimentum nis.</p>\n\n<strong>Address:</strong> 890 Lorem Ipsum Street #12\nSan Francisco, California 65432\n\n<strong>Phone:</strong> 123.4567.890\n\n<strong>Business Hours:</strong> 8a-6:30p M-F, 9a-2p S-S[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Contact Us", "", "publish", "closed", "closed", "", "contact-us", "", "", "2016-10-20 15:48:45", "2016-10-20 02:48:45", "", "0", "http://www.infinitymarketing.co.nz/et_pb_layout/contact-us/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("493", "1", "2016-10-20 15:48:45", "2016-10-20 02:48:45", "[et_pb_section background_color=\"#6aceb6\" inner_shadow=\"on\" fullwidth=\"on\"]\n[et_pb_fullwidth_header title=\"About Our Team\" subhead=\"Your subtitle goes right here.\" background_layout=\"dark\"][/et_pb_fullwidth_header]\n[/et_pb_section]\n\n[et_pb_section]\n[et_pb_row]\n[et_pb_column type=\"1_3\"]\n[et_pb_image src=\"https://www.elegantthemesimages.com/images/premade_image_800x600.png\" animation=\"left\"][/et_pb_image]\n[et_pb_text]\n<h2>Nick Roach</h2>\n<em>President, CEO, Theme UI/UX Designer</em>\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent mattis nec nisi non luctus. Donec aliquam non nisi ut rutrum. In sit amet vestibulum felis, id aliquet ipsum. Vestibulum feugiat lacinia aliquet.\n[/et_pb_text]\n[et_pb_counters]\n[et_pb_counter percent=\"50\"]Design & UX[/et_pb_counter]\n[et_pb_counter percent=\"80\"]Web Programming[/et_pb_counter]\n[et_pb_counter percent=\"10\"]Internet Marketing[/et_pb_counter]\n[/et_pb_counters]\n[/et_pb_column]\n\n[et_pb_column type=\"1_3\"]\n[et_pb_image src=\"https://www.elegantthemesimages.com/images/premade_image_800x600.png\" animation=\"top\"][/et_pb_image]\n[et_pb_text]\n<h2>Kenny Sing</h2>\n<em>Lead Graphic Designers</em>\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent mattis nec nisi non luctus. Donec aliquam non nisi ut rutrum. In sit amet vestibulum felis, id aliquet ipsum. Vestibulum feugiat lacinia aliquet.\n[/et_pb_text]\n[et_pb_counters]\n[et_pb_counter percent=\"85\"]Photoshop[/et_pb_counter]\n[et_pb_counter percent=\"70\"]After Effects[/et_pb_counter]\n[et_pb_counter percent=\"50\"]Illustrator[/et_pb_counter]\n[/et_pb_counters]\n[/et_pb_column]\n\n[et_pb_column type=\"1_3\"]\n[et_pb_image src=\"https://www.elegantthemesimages.com/images/premade_image_800x600.png\" animation=\"right\"][/et_pb_image]\n[et_pb_text]\n<h2>Mitch Skolnik</h2>\n<em>Community Manager</em>\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent mattis nec nisi non luctus. Donec aliquam non nisi ut rutrum. In sit amet vestibulum felis, id aliquet ipsum. Vestibulum feugiat lacinia aliquet.\n[/et_pb_text]\n[et_pb_counters]\n[et_pb_counter percent=\"80\"]Customer Happiness[/et_pb_counter]\n[et_pb_counter percent=\"30\"]Tech Support[/et_pb_counter]\n[et_pb_counter percent=\"50\"]Community Management[/et_pb_counter]\n[/et_pb_counters]\n[/et_pb_column]\n[/et_pb_row]\n[/et_pb_section]\n\n[et_pb_section background_color=\"#2d3743\" inner_shadow=\"on\"]\n[et_pb_row]\n[et_pb_column type=\"1_4\"]\n[et_pb_blurb background_layout=\"dark\" image=\"https://www.elegantthemesimages.com/images/premade_blurb_5.png\"  title=\"Timely Support\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb]\n[/et_pb_column]\n[et_pb_column type=\"1_4\"]\n[et_pb_blurb background_layout=\"dark\" image=\"https://www.elegantthemesimages.com/images/premade_blurb_6.png\"  title=\"Innovative Ideas\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb]\n[/et_pb_column]\n[et_pb_column type=\"1_4\"]\n[et_pb_blurb background_layout=\"dark\" image=\"https://www.elegantthemesimages.com/images/premade_blurb_7.png\"  title=\"Advanced Technology\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb]\n[/et_pb_column]\n[et_pb_column type=\"1_4\"]\n[et_pb_blurb background_layout=\"dark\" image=\"https://www.elegantthemesimages.com/images/premade_blurb_8.png\"  title=\"Clear Communication\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb]\n[/et_pb_column]\n[/et_pb_row]\n[/et_pb_section]\n\n[et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"]\n[et_pb_row]\n[et_pb_column type=\"4_4\"]\n[et_pb_text text_orientation=\"center\"]<h2>Recent Blog Posts</h2>\nLearn from the top thought leaders in the industry.\n[/et_pb_text]\n[/et_pb_column]\n[/et_pb_row]\n[et_pb_row]\n[et_pb_column type=\"4_4\"]\n[et_pb_blog fullwidth=\"off\" show_pagination=\"off\" posts_number=\"3\" meta_date=\"M j, Y\" show_thumbnail=\"on\" show_content=\"off\" show_author=\"on\" show_date=\"on\" show_categories=\"on\"][/et_pb_blog]\n[/et_pb_column]\n[/et_pb_row]\n[/et_pb_section]\n\n[et_pb_section]\n[et_pb_row]\n[et_pb_column type=\"4_4\"]\n[et_pb_text text_orientation=\"center\"]<h2>Recent Projects</h2>\nLearn from the top thought leaders in the industry.\n[/et_pb_text]\n[/et_pb_column]\n[/et_pb_row]\n[et_pb_row]\n[et_pb_column type=\"4_4\"]\n[et_pb_portfolio categories=\"Portfolio\" fullwidth=\"off\"][/et_pb_portfolio]\n[/et_pb_column]\n[/et_pb_row]\n[/et_pb_section]\n\n[et_pb_section background_color=\"#7EBEC5\"]\n[et_pb_row]\n[et_pb_column type=\"4_4\"]\n[et_pb_cta title=\"Don\'t Be Shy. Get In Touch.\" button_url=\"#\" button_text=\"Contact Us\" background_layout=\"dark\" background_color=\"none\"]\nIf you are interested in working together, send us an inquiry and we will get back to you as soon as we can!\n[/et_pb_cta]\n[/et_pb_column]\n[/et_pb_row]\n[/et_pb_section]", "Our Team", "", "publish", "closed", "closed", "", "our-team", "", "", "2016-10-20 15:48:45", "2016-10-20 02:48:45", "", "0", "http://www.infinitymarketing.co.nz/et_pb_layout/our-team/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("494", "1", "2016-10-20 15:48:45", "2016-10-20 02:48:45", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"][et_pb_slide heading=\"WE ARE A CREATIVE AGENCY\" button_text=\"Our Work\" button_link=\"https://elegantthemes.com/preview/Divi2/fullwidth-grid/\" background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" image=\"https://elegantthemesimages.com/images/premade/builder-blurbs-mobile.jpg\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#108bf5\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"top\"]Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" image=\"https://elegantthemesimages.com/images/premade/builder-blurbs-export.jpg\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#108bf5\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"top\"]Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" image=\"https://elegantthemesimages.com/images/premade/builder-blurbs-layouts.jpg\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#108bf5\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"top\"]Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" image=\"https://elegantthemesimages.com/images/premade/builder-blurbs-commerce.jpg\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#108bf5\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"top\"]Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>OUR LATEST WORK</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_portfolio admin_label=\"Portfolio\" fullwidth=\"off\" posts_number=\"8\" show_title=\"on\" show_categories=\"off\" show_pagination=\"off\" background_layout=\"light\" /][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Full Portfolio\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"light\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#222b34\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1>MEET THE CREW</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_team_member admin_label=\"Team Member\" name=\"Lorem Ipsum\" position=\"Company Role\" image_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" /][et_pb_team_member admin_label=\"Team Member\" name=\"Lorem Ipsum\" position=\"Company Role\" image_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_team_member admin_label=\"Team Member\" name=\"Lorem Ipsum\" position=\"Company Role\" image_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" /][et_pb_team_member admin_label=\"Team Member\" name=\"Lorem Ipsum\" position=\"Company Role\" image_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_team_member admin_label=\"Team Member\" name=\"Lorem Ipsum\" position=\"Company Role\" image_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" /][et_pb_team_member admin_label=\"Team Member\" name=\"Lorem Ipsum\" position=\"Company Role\" image_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Full Profiles\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>OUR CLIENTS</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Full List\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"light\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" background_color=\"#2ea3f2\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_signup admin_label=\"Subscribe\" provider=\"mailchimp\" mailc\nhimp_list=\"none\" aweber_list=\"3423452\" button_text=\"Sign Me Up\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Connect With Us\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. Vivamus id blandit nisi, eu mattis odio. Nulla facilisi. Aenean in mi odio. Etiam adipiscing enim sed condimentum ultrices.[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]", "Creative Agency", "", "publish", "closed", "closed", "", "creative-agency", "", "", "2016-10-20 15:48:45", "2016-10-20 02:48:45", "", "0", "http://www.infinitymarketing.co.nz/et_pb_layout/creative-agency/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("490", "1", "2016-10-20 15:48:45", "2016-10-20 02:48:45", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\"][et_pb_slide heading=\"My Name\" background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\"]Subheading[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h1>This is My Story</h1>\nCurabitur quis dui volutpat, cursus eros ut, commodo elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Ut id est euismod, rhoncus nunc quis, lobortis turpis. Tam sociis natoque. Curabitur quis dui volutpat, cursus eros ut, commodo elit. Cum sociis natoque penatibus et magnis dis parturient montes.[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_counters admin_label=\"Bar Counters\" background_layout=\"light\" background_color=\"#dddddd\" bar_bg_color=\"#2ea3f2\"][et_pb_counter percent=\"80\"]Brand Strategy[/et_pb_counter][et_pb_counter percent=\"60\"]Internet Marketing[/et_pb_counter][et_pb_counter percent=\"50\"]App Development[/et_pb_counter][et_pb_counter percent=\"90\"]Customer Happiness[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#108bf5\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"My Recent Work\" background_layout=\"dark\" text_orientation=\"center\" /][et_pb_fullwidth_portfolio admin_label=\"Fullwidth Portfolio\" fullwidth=\"on\" show_title=\"on\" show_date=\"on\" background_layout=\"light\" auto=\"on\" /][/et_pb_section]", "About Me", "", "publish", "closed", "closed", "", "about-me", "", "", "2016-10-20 15:48:45", "2016-10-20 02:48:45", "", "0", "http://www.infinitymarketing.co.nz/et_pb_layout/about-me/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("491", "1", "2016-10-20 15:48:45", "2016-10-20 02:48:45", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\"][et_pb_slide heading=\"Our Company\" button_text=\"Learn More\" button_link=\"#\" background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\"]Our Company Tagline lorem ipsum dolor sit amet.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"A Digital Agency\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Curabitur quis dui volutpat, cursus eros elut commodo elit cum sociis natoque penatibus[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Forward Thinking\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Curabitur quis dui volutpat, cursus eros elut commodo elit cum sociis natoque penatibus[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Problem Solvers\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Curabitur quis dui volutpat, cursus eros elut commodo elit cum sociis natoque penatibus[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Customer Support\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Curabitur quis dui volutpat, cursus eros elut commodo elit cum sociis natoque penatibus[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h1>Our Story</h1>\nCurabitur quis dui volutpat, cursus eros ut, commodo elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Ut id est euismod, rhoncus nunc quis, lobortis turpis. Tam sociis natoque. Curabitur quis dui volutpat, cursus eros ut, commodo elit. Cum sociis natoque penatibus et magnis dis parturient montes.[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_counters admin_label=\"Bar Counters\" background_layout=\"light\" background_color=\"#dddddd\" bar_bg_color=\"#2ea3f2\"][et_pb_counter percent=\"80\"]Brand Strategy[/et_pb_counter][et_pb_counter percent=\"60\"]Internet Marketing[/et_pb_counter][et_pb_counter percent=\"50\"]App Development[/et_pb_counter][et_pb_counter percent=\"90\"]Customer Happiness[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_team_member admin_label=\"Team Member\" name=\"Team Member 1\" position=\"Company Role\" image_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"light\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc.[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_team_member admin_label=\"Team Member\" name=\"Team Member 1\" position=\"Company Role\" image_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"light\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc.[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_team_member admin_label=\"Team Member\" name=\"Team Member 1\" position=\"Company Role\" image_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"light\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc.[/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section]", "About Us", "", "publish", "closed", "closed", "", "about-us", "", "", "2016-10-20 15:48:45", "2016-10-20 02:48:45", "", "0", "http://www.infinitymarketing.co.nz/et_pb_layout/about-us/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("487", "1", "2016-10-20 15:48:45", "2016-10-20 02:48:45", "[et_pb_section inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60\" /][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" image=\"https://elegantthemesimages.com/images/premade/builder-blurbs-builder.jpg\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>We will Be back Soon</h1>\nThis is an example of a blank page with no header or footer.[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Undergoing Maintenance\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#63cde3\" use_circle=\"on\" circle_color=\"#f7f7f7\" use_circle_border=\"on\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Divi is here to stay, and you can rest easy knowing that our team will be updating and improving it for years to come.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Feature Updates\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#63cde3\" use_circle=\"on\" circle_color=\"#f7f7f7\" use_circle_border=\"on\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Divi is here to stay, and you can rest easy knowing that our team will be updating and improving it for years to come.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Bug Fixes\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#63cde3\" use_circle=\"on\" circle_color=\"#f7f7f7\" use_circle_border=\"on\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Divi is here to stay, and you can rest easy knowing that our team will be updating and improving it for years to come.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Contact Us\" background_color=\"#2caaca\" use_background_color=\"off\" background_layout=\"light\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Maintenance Mode", "", "publish", "closed", "closed", "", "maintenance-mode", "", "", "2016-10-20 15:48:45", "2016-10-20 02:48:45", "", "0", "http://www.infinitymarketing.co.nz/et_pb_layout/maintenance-mode/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("488", "1", "2016-10-20 15:48:45", "2016-10-20 02:48:45", "[et_pb_section inner_shadow=\"off\" parallax=\"off\" background_color=\"#8d1bf4\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"70\" /][et_pb_countdown_timer admin_label=\"Countdown Timer\" date_time=\"05/31/2014 05:15\" background_layout=\"dark\" background_color=\"#e03e3e\" use_background_color=\"off\" title=\"This Site Is Coming Soon\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_signup admin_label=\"Subscribe\" title=\"Sign Up to Receive Updates\" button_text=\"Submit\" background_color=\"#6e15c2\" use_background_color=\"on\" mailchimp_list=\"none\" background_layout=\"dark\" text_orientation=\"left\" provider=\"mailchimp\" aweber_list=\"none\"]Integer accumsan leo non nisi sollicitudin, sit amet eleifend dolor mollis. Donec sagittis posuere commodo. Aenean sed convallis lectus. Vivamus et nisi posuere erat aliquet adipiscing in non libero. Integer ornare dui at molestie dictum. Vivamus id aliquam urna. Duis quis fermentum lacus. Sed viverra dui leo, non auctor nisi porttitor a. Nunc a tristique lectus.[/et_pb_signup][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Contact Us\" background_color=\"#2caaca\" use_background_color=\"off\" background_layout=\"dark\" text_orientation=\"center\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"600\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Coming Soon", "", "publish", "closed", "closed", "", "coming-soon", "", "", "2016-10-20 15:48:45", "2016-10-20 02:48:45", "", "0", "http://www.infinitymarketing.co.nz/et_pb_layout/coming-soon/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("489", "1", "2016-10-20 15:48:45", "2016-10-20 02:48:45", "[et_pb_section background_color=\"#27323a\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"font-size: 72px;\">My Website</h1>\n<h2><em>My Tagline</em></h2>[/et_pb_text][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1080px.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"fade_in\" /][et_pb_cta admin_label=\"Call To Action\" title=\"Lorem ipsum dolor sit amet consectetur.\" button_url=\"#\" button_text=\"Learn More\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#313f55\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#27323a\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1080px.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"right\" /][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Get Started\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"light\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Landing Page", "", "publish", "closed", "closed", "", "landing-page", "", "", "2016-10-20 15:48:45", "2016-10-20 02:48:45", "", "0", "http://www.infinitymarketing.co.nz/et_pb_layout/landing-page/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("485", "1", "2016-10-20 15:48:45", "2016-10-20 02:48:45", "[et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#b2ede0\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"][et_pb_slide heading=\"Our Shop\" button_text=\"Shop Now\" button_link=\"#\" background_color=\"#81dfde\" alignment=\"center\" background_layout=\"dark\" image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-510px.png\"]Divi gives you the power to easily run a full-fledged online storefront. With the Divi Builder, you can create gorgeous shop pages, such as this one.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"on\"][et_pb_column type=\"3_4\" specialty_columns=\"3\"][et_pb_row_inner][et_pb_column_inner type=\"4_4\"][et_pb_shop admin_label=\"Shop\" type=\"recent\" posts_number=\"6\" columns=\"3\" orderby=\"menu_order\" /][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner][et_pb_column_inner type=\"1_2\"][et_pb_cta admin_label=\"Call To Action\" title=\"Summer Sale!\" button_url=\"#\" button_text=\"Shop Now\" background_color=\"#ed5362\" use_background_color=\"on\" background_layout=\"dark\" text_orientation=\"center\"]For a limited time only, all of our vintage products are 50% off! Don\'t miss your chance to save big on these wonderful items.[/et_pb_cta][/et_pb_column_inner][et_pb_column_inner type=\"1_2\"][et_pb_cta admin_label=\"Call To Action\" title=\"Buy 2 Get 1 Free\" button_url=\"#\" button_text=\"Coupon Code\" background_color=\"#57ccc4\" use_background_color=\"on\" background_layout=\"dark\" text_orientation=\"center\"]For a limited time only, if you buy two of any item, you get the 3rd for free! Click below to redeem the coupon code to use at checkout.[/et_pb_cta][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"right\" background_layout=\"light\" /][/et_pb_column][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h1>Our Most Popular Items</h1>[/et_pb_text][et_pb_shop admin_label=\"Shop\" type=\"best_selling\" posts_number=\"4\" columns=\"4\" orderby=\"menu_order\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#57ccc4\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"View All of Our On-Sale Items\" button_url=\"#\" background_color=\"#2caaca\" use_background_color=\"off\" background_layout=\"dark\" text_orientation=\"center\" button_text=\"Shop Now\"]For a limited time only, all of our vintage products are 50% off! Don’t miss your chance to save big on these wonderful items.[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Shop Extended", "", "publish", "closed", "closed", "", "shop-extended", "", "", "2016-10-20 15:48:45", "2016-10-20 02:48:45", "", "0", "http://www.infinitymarketing.co.nz/et_pb_layout/shop-extended/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("486", "1", "2016-10-20 15:48:45", "2016-10-20 02:48:45", "[et_pb_section background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"150\" /][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" image=\"https://elegantthemesimages.com/images/premade/d2-300px.png\" animation=\"bottom\" background_layout=\"dark\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#108bf5\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"top\"]<h1></h1>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h4><strong>Lorem Ipsum Dolor</strong></h4>\nAenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h4><strong>Lorem Ipsum Dolor</strong></h4>\nAenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h4><strong>Lorem Ipsum Dolor</strong></h4>\nAenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_text=\"Enter\" background_color=\"#2caaca\" use_background_color=\"off\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"400\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Splash Page", "", "publish", "closed", "closed", "", "splash-page", "", "", "2016-10-20 15:48:45", "2016-10-20 02:48:45", "", "0", "http://www.infinitymarketing.co.nz/et_pb_layout/splash-page/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("482", "1", "2016-10-20 15:48:45", "2016-10-20 02:48:45", "[et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"on\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"Welcome to My Blog\" subhead=\"Here is a masonry blog layout with no sidebar\" background_layout=\"dark\" text_orientation=\"left\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_blog admin_label=\"Blog\" fullwidth=\"off\" posts_number=\"18\" meta_date=\"M j, Y\" show_thumbnail=\"on\" show_content=\"off\" show_author=\"on\" show_date=\"on\" show_categories=\"on\" show_pagination=\"on\" background_layout=\"light\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Blog Masonry", "", "publish", "closed", "closed", "", "blog-masonry", "", "", "2016-10-20 15:48:45", "2016-10-20 02:48:45", "", "0", "http://www.infinitymarketing.co.nz/et_pb_layout/blog-masonry/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("483", "1", "2016-10-20 15:48:45", "2016-10-20 02:48:45", "[et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"on\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"Welcome to My Blog\" subhead=\"Here is a basic blog layout with a right sidebar\" background_layout=\"dark\" text_orientation=\"left\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"on\"][et_pb_column type=\"3_4\" specialty_columns=\"3\"][et_pb_row_inner][et_pb_column_inner type=\"4_4\"][et_pb_blog admin_label=\"Blog\" fullwidth=\"on\" posts_number=\"6\" meta_date=\"M j, Y\" show_thumbnail=\"on\" show_content=\"off\" show_author=\"on\" show_date=\"on\" show_categories=\"on\" show_pagination=\"on\" background_layout=\"light\" /][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"right\" background_layout=\"light\" /][/et_pb_column][/et_pb_section]", "Blog Standard", "", "publish", "closed", "closed", "", "blog-standard", "", "", "2016-10-20 15:48:45", "2016-10-20 02:48:45", "", "0", "http://www.infinitymarketing.co.nz/et_pb_layout/blog-standard/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("484", "1", "2016-10-20 15:48:45", "2016-10-20 02:48:45", "[et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#f84b48\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"Welcome to Our Shop\" subhead=\"Divi gives you the power to run a full-fledged online storefront.\" background_layout=\"dark\" text_orientation=\"left\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_shop admin_label=\"Shop\" type=\"recent\" posts_number=\"12\" columns=\"4\" orderby=\"menu_order\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"News & Events\" button_url=\"#\" button_text=\"Follow\" use_background_color=\"on\" background_color=\"#57ccc4\" background_layout=\"dark\" text_orientation=\"center\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada.[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Shop Basic", "", "publish", "closed", "closed", "", "shop-basic", "", "", "2016-10-20 15:48:45", "2016-10-20 02:48:45", "", "0", "http://www.infinitymarketing.co.nz/et_pb_layout/shop-basic/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("481", "1", "2016-10-20 15:48:45", "2016-10-20 02:48:45", "[et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h1>Your Project Name</h1>[/et_pb_text][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h4>Project Description</h4>\nVivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue at nisl. Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h4>Project Details</h4>\n<strong>Client </strong>Client Name\n<strong>Date </strong>Date of Completion\n<strong>Skills </strong>Branding, Web Design\n<strong>View </strong>elegantthemes.com[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/d2-placeholder-510px.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60\" /][et_pb_cta admin_label=\"Call To Action\" title=\"Project Feature\" button_url=\"#\" button_text=\"Live Project\" background_color=\"#2caaca\" use_background_color=\"off\" background_layout=\"light\" text_orientation=\"left\"]Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl quis nibh non, molestie tempus sapien.[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"100\" /][et_pb_cta admin_label=\"Call To Action\" title=\"Project Feature\" button_url=\"#\" button_text=\"See More\" background_color=\"#2caaca\" use_background_color=\"off\" background_layout=\"light\" text_orientation=\"right\"]Vivamus ipsum velit, ullamcorper quis nibh, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl.[/et_pb_cta][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/d2-placeholder-700px.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Like What You See?\" button_url=\"#\" button_text=\"Contact Us\" background_color=\"#2caaca\" use_background_color=\"off\" background_layout=\"dark\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Project Extended 2", "", "publish", "closed", "closed", "", "project-extended-2", "", "", "2016-10-20 15:48:45", "2016-10-20 02:48:45", "", "0", "http://www.infinitymarketing.co.nz/et_pb_layout/project-extended-2/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("479", "1", "2016-10-20 15:48:45", "2016-10-20 02:48:45", "[et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_portfolio admin_label=\"Fullwidth Portfolio\" fullwidth=\"off\" show_title=\"on\" show_date=\"on\" background_layout=\"dark\" auto=\"off\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Interested In Working On A Project?\" button_url=\"#\" button_text=\"Contact Me\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Portfolio Fullwidth Grid", "", "publish", "closed", "closed", "", "portfolio-fullwidth-grid", "", "", "2016-10-20 15:48:45", "2016-10-20 02:48:45", "", "0", "http://www.infinitymarketing.co.nz/et_pb_layout/portfolio-fullwidth-grid/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("480", "1", "2016-10-20 15:48:45", "2016-10-20 02:48:45", "[et_pb_section background_color=\"#3a3a3a\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"bottom\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#45c4ec\" use_circle=\"off\" circle_color=\"#45c4ec\" use_circle_border=\"off\" circle_border_color=\"#45c4ec\" icon_placement=\"top\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"font-size: 72px; font-weight: 300;\">Your Project Name</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>The Challenge</h2>\nVivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>The Solution</h2>\nVivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"on\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\"][et_pb_slide heading=\"Complete Corporate Identity\" background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide heading=\"We Rethought Everything\" background_color=\"#2ea3f2\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#353535\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Corporate Rebranding\" number=\"70\" percent_sign=\"on\" background_layout=\"dark\" counter_color=\"#2ea3f2\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Website Redesign\" number=\"30\" percent_sign=\"on\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Day Turnaround\" number=\"60\" percent_sign=\"off\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Amazing Result\" number=\"1\" percent_sign=\"off\" background_layout=\"dark\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"90\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<h1>Mobile Site Boosted Sales By 50%</h1>[/et_pb_text][et_pb_blurb admin_label=\"Blurb\" title=\"Mobile Refresh\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"left\" animation=\"right\" background_layout=\"dark\" text_orientation=\"left\"]The Challenge Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Rebuilt From the Inside Out\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"left\" animation=\"right\" background_layout=\"dark\" text_orientation=\"left\"]The Challenge Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Extensive Demographic Studies\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"left\" animation=\"right\" background_layout=\"dark\" text_orientation=\"left\"]The Challenge Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/mobile-lockup.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#353535\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_counters admin_label=\"Bar Counters\" background_layout=\"light\" background_color=\"#2e2e2e\"][et_pb_counter percent=\"80\"]Mobile Sales[/et_pb_counter][et_pb_counter percent=\"50\"]Website Traffic[/et_pb_counter][et_pb_counter percent=\"75\"]Conversion Rate[/et_pb_counter][et_pb_counter percent=\"60\"]Email Subscribers[/et_pb_counter][/et_pb_counters][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_cta admin_label=\"Call To Action\" title=\"The Results Were Amazing\" button_url=\"#\" button_text=\"Live Project\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\"]Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl.[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"on\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\"][et_pb_slide heading=\"We Rethought Everything\" background_color=\"#2ea3f2\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide heading=\"Complete Corporate Identity\" background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Interested In Working With Us?\" button_url=\"#\" button_text=\"Get In Touch\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"light\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Project Extended", "", "publish", "closed", "closed", "", "project-extended", "", "", "2016-10-20 15:48:45", "2016-10-20 02:48:45", "", "0", "http://www.infinitymarketing.co.nz/et_pb_layout/project-extended/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("476", "1", "2016-10-20 15:48:45", "2016-10-20 02:48:45", "[et_pb_section fullwidth=\"on\" specialty=\"off\" background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"My Work\" subhead=\"Your Subtitle Goes Here\" background_layout=\"dark\" text_orientation=\"left\" /][/et_pb_section][et_pb_section inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_filterable_portfolio admin_label=\"Filterable Portfolio\" fullwidth=\"off\" posts_number=\"12\" show_title=\"on\" show_categories=\"on\" show_pagination=\"off\" background_layout=\"light\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Like What You See?\" button_url=\"#\" button_text=\"Contact Me\" use_background_color=\"off\" background_color=\"#108bf5\" background_layout=\"light\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Portfolio Grid", "", "publish", "closed", "closed", "", "portfolio-grid", "", "", "2016-10-20 15:48:45", "2016-10-20 02:48:45", "", "0", "http://www.infinitymarketing.co.nz/et_pb_layout/portfolio-grid/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("477", "1", "2016-10-20 15:48:45", "2016-10-20 02:48:45", "[et_pb_section fullwidth=\"on\" specialty=\"off\" background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" inner_shadow=\"off\" parallax=\"on\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"My Work\" subhead=\"Your Subtitle Goes Here\" background_layout=\"dark\" text_orientation=\"left\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_portfolio admin_label=\"Portfolio\" fullwidth=\"on\" posts_number=\"4\" show_title=\"on\" show_categories=\"on\" show_pagination=\"on\" background_layout=\"light\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"I Love Working With Creative Minds\" button_url=\"#\" button_text=\"Contact Me\" background_color=\"#2caaca\" use_background_color=\"off\" background_layout=\"dark\" text_orientation=\"center\"]If you are interested in working together, send me an inquiry and I will get back to you as soon as I can![/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Portfolio 1 Column", "", "publish", "closed", "closed", "", "portfolio-1-column", "", "", "2016-10-20 15:48:45", "2016-10-20 02:48:45", "", "0", "http://www.infinitymarketing.co.nz/et_pb_layout/portfolio-1-column/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("478", "1", "2016-10-20 15:48:45", "2016-10-20 02:48:45", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"on\" parallax=\"off\"][et_pb_slide background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][et_pb_fullwidth_portfolio admin_label=\"Fullwidth Portfolio\" fullwidth=\"on\" show_title=\"on\" show_date=\"on\" background_layout=\"light\" auto=\"off\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Let\'s Build Something Together\" button_url=\"#\" button_text=\"Contact Me\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Portfolio Fullwidth Carousel", "", "publish", "closed", "closed", "", "portfolio-fullwidth-carousel", "", "", "2016-10-20 15:48:45", "2016-10-20 02:48:45", "", "0", "http://www.infinitymarketing.co.nz/et_pb_layout/portfolio-fullwidth-carousel/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("475", "1", "2016-10-20 15:48:45", "2016-10-20 02:48:45", "[et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"Page With Dual Sidebars\" subhead=\"Here is a basic page layout with dual sidebars\" background_layout=\"dark\" text_orientation=\"left\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"on\"][et_pb_column type=\"1_4\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"left\" background_layout=\"light\" /][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner][et_pb_column_inner type=\"4_4\"][et_pb_text admin_label=\"Text\"]\n<h2>Just A Standard Page</h2>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\nSed sit amet blandit ipsum, et consectetur libero. Integer convallis at metus quis molestie. Morbi vitae odio ut ante molestie scelerisque. Aliquam erat volutpat. Vivamus dignissim fringilla semper. Aliquam imperdiet dui a purus pellentesque, non ornare ipsum blandit. Sed imperdiet elit in quam egestas lacinia nec sit amet dui. Cras malesuada tincidunt ante, in luctus tellus hendrerit at. Duis massa mauris, bibendum a mollis a, laoreet quis elit. Nulla pulvinar vestibulum est, in viverra nisi malesuada vel. Nam ut ipsum quis est faucibus mattis eu ut turpis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas nunc felis, venenatis in fringilla vel, tempus in turpis. Mauris aliquam dictum dolor at varius. Fusce sed vestibulum metus. Vestibulum dictum ultrices nulla sit amet fermentum.\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner][et_pb_column_inner type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h3>Lorem Ipsum Dolor</h3>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h3>Lorem Ipsum Dolor</h3>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"right\" background_layout=\"light\" /][/et_pb_column][/et_pb_section]", "Page Dual Sidebars", "", "publish", "closed", "closed", "", "page-dual-sidebars", "", "", "2016-10-20 15:48:45", "2016-10-20 02:48:45", "", "0", "http://www.infinitymarketing.co.nz/et_pb_layout/page-dual-sidebars/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("474", "1", "2016-10-20 15:48:45", "2016-10-20 02:48:45", "[et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"Page With Left Sidebar\" subhead=\"Here is a basic page layout with a left sidebar\" background_layout=\"dark\" text_orientation=\"left\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"on\"][et_pb_column type=\"1_4\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"left\" background_layout=\"light\" /][/et_pb_column][et_pb_column type=\"3_4\" specialty_columns=\"3\"][et_pb_row_inner][et_pb_column_inner type=\"4_4\"][et_pb_text admin_label=\"Text\"]\n<h2>Just A Standard Page</h2>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\nSed sit amet blandit ipsum, et consectetur libero. Integer convallis at metus quis molestie. Morbi vitae odio ut ante molestie scelerisque. Aliquam erat volutpat. Vivamus dignissim fringilla semper. Aliquam imperdiet dui a purus pellentesque, non ornare ipsum blandit. Sed imperdiet elit in quam egestas lacinia nec sit amet dui. Cras malesuada tincidunt ante, in luctus tellus hendrerit at. Duis massa mauris, bibendum a mollis a, laoreet quis elit. Nulla pulvinar vestibulum est, in viverra nisi malesuada vel. Nam ut ipsum quis est faucibus mattis eu ut turpis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas nunc felis, venenatis in fringilla vel, tempus in turpis. Mauris aliquam dictum dolor at varius. Fusce sed vestibulum metus. Vestibulum dictum ultrices nulla sit amet fermentum.\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner][et_pb_column_inner type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h3>Lorem Ipsum Dolor</h3>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h3>Lorem Ipsum Dolor</h3>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner][et_pb_column_inner type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h4>Lorem Ipsum Dolor</h4>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h4>Lorem Ipsum Dolor</h4>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h4>Lorem Ipsum Dolor</h4>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]", "Page Left Sidebar", "", "publish", "closed", "closed", "", "page-left-sidebar", "", "", "2016-10-20 15:48:45", "2016-10-20 02:48:45", "", "0", "http://www.infinitymarketing.co.nz/et_pb_layout/page-left-sidebar/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("473", "1", "2016-10-20 15:48:45", "2016-10-20 02:48:45", "[et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"on\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"Page Title\" subhead=\"Here is a basic page layout with a right sidebar\" background_layout=\"dark\" text_orientation=\"left\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"on\"][et_pb_column type=\"3_4\" specialty_columns=\"3\"][et_pb_row_inner][et_pb_column_inner type=\"4_4\"][et_pb_text admin_label=\"Text\"]\n<h2>Just A Standard Page</h2>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\nSed sit amet blandit ipsum, et consectetur libero. Integer convallis at metus quis molestie. Morbi vitae odio ut ante molestie scelerisque. Aliquam erat volutpat. Vivamus dignissim fringilla semper. Aliquam imperdiet dui a purus pellentesque, non ornare ipsum blandit. Sed imperdiet elit in quam egestas lacinia nec sit amet dui. Cras malesuada tincidunt ante, in luctus tellus hendrerit at. Duis massa mauris, bibendum a mollis a, laoreet quis elit. Nulla pulvinar vestibulum est, in viverra nisi malesuada vel. Nam ut ipsum quis est faucibus mattis eu ut turpis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas nunc felis, venenatis in fringilla vel, tempus in turpis. Mauris aliquam dictum dolor at varius. Fusce sed vestibulum metus. Vestibulum dictum ultrices nulla sit amet fermentum.\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner][et_pb_column_inner type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h3>Lorem Ipsum Dolor</h3>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h3>Lorem Ipsum Dolor</h3>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner][et_pb_column_inner type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h4>Lorem Ipsum Dolor</h4>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h4>Lorem Ipsum Dolor</h4>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h4>Lorem Ipsum Dolor</h4>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"right\" background_layout=\"light\" /][/et_pb_column][/et_pb_section]", "Page Right Sidebar", "", "publish", "closed", "closed", "", "page-right-sidebar", "", "", "2016-10-20 15:48:45", "2016-10-20 02:48:45", "", "0", "http://www.infinitymarketing.co.nz/et_pb_layout/page-right-sidebar/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("472", "1", "2016-10-20 15:48:45", "2016-10-20 02:48:45", "[et_pb_section fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" background_color=\"#2ea3f2\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"Page Title\" subhead=\"Here is a basic page layout with no sidebar\" background_layout=\"dark\" text_orientation=\"left\" /][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\"]\n<h2>Just A Standard Page</h2>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\nSed sit amet blandit ipsum, et consectetur libero. Integer convallis at metus quis molestie. Morbi vitae odio ut ante molestie scelerisque. Aliquam erat volutpat. Vivamus dignissim fringilla semper. Aliquam imperdiet dui a purus pellentesque, non ornare ipsum blandit. Sed imperdiet elit in quam egestas lacinia nec sit amet dui. Cras malesuada tincidunt ante, in luctus tellus hendrerit at. Duis massa mauris, bibendum a mollis a, laoreet quis elit. Nulla pulvinar vestibulum est, in viverra nisi malesuada vel. Nam ut ipsum quis est faucibus mattis eu ut turpis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas nunc felis, venenatis in fringilla vel, tempus in turpis. Mauris aliquam dictum dolor at varius. Fusce sed vestibulum metus. Vestibulum dictum ultrices nulla sit amet fermentum.\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h3>Lorem Ipsum Dolor</h3>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h3>Lorem Ipsum Dolor</h3>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h4>Lorem Ipsum Dolor</h4>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h4>Lorem Ipsum Dolor</h4>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h4>Lorem Ipsum Dolor</h4>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Page Fullwidth", "", "publish", "closed", "closed", "", "page-fullwidth", "", "", "2016-10-20 15:48:45", "2016-10-20 02:48:45", "", "0", "http://www.infinitymarketing.co.nz/et_pb_layout/page-fullwidth/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("471", "1", "2016-10-20 15:48:45", "2016-10-20 02:48:45", "[et_pb_section fullwidth=\"on\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\"][et_pb_slide heading=\"Welcome To Our Website\" button_text=\"Learn More\" button_link=\"#\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" video_bg_width=\"1920\" video_bg_height=\"638\" background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\"]Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Cras venenatis ac lorema ac tincidunt. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue.[/et_pb_slide][et_pb_slide heading=\"Sky\'s The Limit\" background_color=\"#444444\" image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-510px.png\" alignment=\"center\" background_layout=\"dark\" button_text=\"A Closer Look\" button_link=\"#\"]Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" animation=\"off\" background_layout=\"light\" text_orientation=\"left\" icon_placement=\"left\" font_icon=\"\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#7c4dd5\" circle_color=\"#7c4dd5\" circle_border_color=\"#2caaca\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" animation=\"off\" background_layout=\"light\" text_orientation=\"left\" icon_placement=\"left\" font_icon=\"\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#7c4dd5\" circle_color=\"#7c4dd5\" circle_border_color=\"#2caaca\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" animation=\"off\" background_layout=\"light\" text_orientation=\"left\" icon_placement=\"left\" font_icon=\"\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#7c4dd5\" circle_color=\"#7c4dd5\" circle_border_color=\"#2caaca\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" animation=\"off\" background_layout=\"light\" text_orientation=\"left\" icon_placement=\"left\" font_icon=\"\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#7c4dd5\" circle_color=\"#7c4dd5\" circle_border_color=\"#2caaca\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" animation=\"off\" background_layout=\"light\" text_orientation=\"left\" icon_placement=\"left\" font_icon=\"\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#7c4dd5\" circle_color=\"#7c4dd5\" circle_border_color=\"#2caaca\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" animation=\"off\" background_layout=\"light\" text_orientation=\"left\" icon_placement=\"left\" font_icon=\"\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#7c4dd5\" circle_color=\"#7c4dd5\" circle_border_color=\"#2caaca\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" background_color=\"#27c9b8\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Get Started\" background_color=\"#7ebec5\" use_background_color=\"off\" background_layout=\"dark\" text_orientation=\"center\"]</p><h1>Building a website has never been so fun.</h1><p>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" background_color=\"#27323a\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]</p><h1>Lorem Ipsum Dolor.</h1><p>Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus dolor ipsum amet sit. Nec  eleifend tincidunt nisi.Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.</p><p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1080px.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]</p><h3>Lorem Ipsum</h3><p><span style=\"color: #bbbbbb;\">Vestibulum lobortis. Donec at euismod nibh, eu ibendum quam. Nullam non gravida puruipsum amet sdum it. Nec ele bulum lobortis. Donec at euismod nibh, eu biben</span></p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]</p><h3>Lorem Ipsum</h3><p><span style=\"color: #bbbbbb;\">Vestibulum lobortis. Donec at euismod nibh, eu ibendum quam. Nullam non gravida puruipsum amet sdum it. Nec ele bulum lobortis. Donec at euismod nibh, eu biben</span></p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]</p><h3>Lorem Ipsum</h3><p><span style=\"color: #bbbbbb;\">Vestibulum lobortis. Donec at euismod nibh, eu ibendum quam. Nullam non gravida puruipsum amet sdum it. Nec ele bulum lobortis. Donec at euismod nibh, eu biben</span></p><p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" background_color=\"#22262e\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Lorem Ipsum\" number=\"2700\" percent_sign=\"off\" counter_color=\"#815ab4\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Lorem Ipsum\" number=\"30\" percent_sign=\"off\" counter_color=\"#2caaca\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Lorem Ipsum\" number=\"87\" percent_sign=\"off\" counter_color=\"#35bbaa\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Lorem Ipsum\" number=\"999\" percent_sign=\"off\" counter_color=\"#ef6462\" background_layout=\"dark\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\"][et_pb_fullwidth_portfolio admin_label=\"Fullwidth Portfolio\" fullwidth=\"on\" show_title=\"on\" show_date=\"on\" background_layout=\"dark\" auto=\"on\" /][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"][et_pb_slide heading=\"Slide Title Here\" button_text=\"Shop Now\" button_link=\"https://elegantthemes.com/preview/Divi2/shop-extended/\" background_color=\"#1a86cf\" alignment=\"center\" background_layout=\"dark\" image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-510px.png\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam eros at, laoreet metus.[/et_pb_slide][et_pb_slide heading=\"Slide Title Here\" alignment=\"center\" background_layout=\"dark\" background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" background_color=\"#ffffff\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam er\nos at, laoreet metus.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]</p><h1>Core Features</h1><p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" image=\"https://elegantthemesimages.com/images/premade/builder-blurbs-builder.jpg\" animation=\"bottom\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#2caaca\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\"]Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi. Fusce at purus in massa laoreet[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" image=\"https://elegantthemesimages.com/images/premade/builder-blurbs-layouts.jpg\" animation=\"bottom\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#2caaca\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" url=\"https://elegantthemes.com/preview/Divi2/features/#predefined\"]Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi. Fusce at purus in massa laoreet[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" image=\"https://elegantthemesimages.com/images/premade/builder-blurbs-export.jpg\" animation=\"bottom\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#2caaca\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" url=\"https://elegantthemes.com/preview/Divi2/features/#layouts\"]Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi. Fusce at purus in massa laoreet[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" image=\"https://elegantthemesimages.com/images/premade/builder-blurbs-modules.jpg\" animation=\"bottom\" background_layout=\"light\" text_orientation=\"center\" icon_placement=\"top\" use_icon=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#2caaca\" circle_color=\"#2caaca\" circle_border_color=\"#2caaca\"]Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi. Fusce at purus in massa laoreet[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" image=\"https://elegantthemesimages.com/images/premade/builder-blurbs-mobile.jpg\" animation=\"bottom\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#2caaca\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" url=\"https://elegantthemes.com/preview/Divi2/features/#mobile\"]Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi. Fusce at purus in massa laoreet[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" image=\"https://elegantthemesimages.com/images/premade/builder-blurbs-commerce.jpg\" animation=\"bottom\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#2caaca\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\"]Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi. Fusce at purus in massa laoreet[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\"][et_pb_slide heading=\"Slide Title Here\" button_text=\"Our Work\" button_link=\"#\" background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi.Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" background_color=\"#283139\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]</p><h1>Versatile Layout Options</h1><p>Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus dolor ipsum amet sit.</p><p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" icon_placement=\"left\" font_icon=\"R\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#ec6d5f\" circle_color=\"#2caaca\" circle_border_color=\"#2caaca\" animation=\"bottom\" background_layout=\"dark\" text_orientation=\"center\"]<span style=\"color: #bbbbbb;\">Donec at euismod nibh, eu bibendum.[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" icon_placement=\"left\" font_icon=\"R\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#1fa0e3\" circle_color=\"#2caaca\" circle_border_color=\"#2caaca\" animation=\"right\" background_layout=\"dark\" text_orientation=\"center\"]<span style=\"color: #bbbbbb;\">Donec at euismod nibh, eu bibendum.[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" icon_placement=\"left\" font_icon=\"R\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#47bfa4\" circle_color=\"#2caaca\" circle_border_color=\"#2caaca\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\"]<span style=\"color: #bbbbbb;\">Donec at euismod nibh, eu bibendum.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" url_new_window=\"off\" animation=\"bottom\" show_in_lightbox=\"off\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" url_new_window=\"off\" animation=\"bottom\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" background_color=\"#ec6d5f\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" background_color=\"#7ebec5\" use_background_color=\"off\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\" button_text=\"Join Now\"]</p><h1>Look No Further. Get Started Today</h1><p>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Homepage Extended", "", "publish", "closed", "closed", "", "homepage-extended", "", "", "2016-10-20 15:48:45", "2016-10-20 02:48:45", "", "0", "http://www.infinitymarketing.co.nz/et_pb_layout/homepage-extended/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("470", "1", "2016-10-20 15:48:45", "2016-10-20 02:48:45", "[et_pb_section fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"][et_pb_slide heading=\"Our Company\" button_text=\"Learn More\" button_link=\"#\" background_color=\"#f7f7f7\" image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-510px.png\" alignment=\"center\" background_layout=\"light\"]Changing the way you build websites. Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_circle_counter admin_label=\"Circle Counter\" title=\"Sales & Marketing\" number=\"70\" percent_sign=\"on\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_circle_counter admin_label=\"Circle Counter\" title=\"Brand & Identity\" number=\"90\" percent_sign=\"on\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_circle_counter admin_label=\"Circle Counter\" title=\"Web Design\" number=\"80\" percent_sign=\"on\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_circle_counter admin_label=\"Circle Counter\" title=\"App Development\" number=\"50\" percent_sign=\"on\" background_layout=\"dark\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>What We Offer</h2>[/et_pb_text][et_pb_tabs admin_label=\"Tabs\"][et_pb_tab title=\"Overview\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_tab][et_pb_tab title=\"Mission Statement\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_tab][et_pb_tab title=\"Culture\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_tab][/et_pb_tabs][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"50\" /][et_pb_counters admin_label=\"Bar Counters\" background_layout=\"light\" background_color=\"#f4f4f4\"][et_pb_counter percent=\"80\"]Brand Consulting[/et_pb_counter][et_pb_counter percent=\"45\"]Marketing Campaigns [/et_pb_counter][et_pb_counter percent=\"95\"]Custom Website Design[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#eaeaea\" show_divider=\"on\" height=\"30\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/d2-placeholder-510px.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h1>Our Work Flow</h1>[/et_pb_text][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Upsum\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"on\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Upsum\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"on\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Upsum\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"on\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#212a34\" inner_shadow=\"off\" parallax=\"off\" background_image=\"https://www.elegantthemesimages.com/images/premade/d2-placeholder-1920.png\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"20\" /][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" image=\"https://elegantthemesimages.com/images/premade/d2-300px.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>Frequently Asked Questions</h2>\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet. Morbi mollis mollis pellentesque. Aenean vitae erat velit. Maecenas urna sapien, dignissim a augue vitae, porttitor luctus urna. Morbi scelerisque semper congue. Donec vitae congue quam. Pellentesque convallis est a eros porta, ut porttitor magna convallis.\n\nDonec quis felis imperdiet, vestibulum est ut, pulvinar dolor. Mauris laoreet varius sem, tempus congue nibh elementum facilisis. Aliquam ut odio risus. Mauris consectetur mi et ante aliquam, eget posuere urna semper. Vestibulum vestibulum rhoncus enim, id iaculis eros commodo non.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_accordion admin_label=\"Accordion\"][et_pb_accordion_item title=\"What kind of clients do you work with?\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet.[/et_pb_accordion_item][et_pb_accordion_item title=\"What is your turn around time?\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet. Morbi mollis mollis pellentesque. Aenean vitae erat velit. Maecenas urna sapien, dignissim a augue vitae, porttitor luctus urna.[/et_pb_accordion_item][et_pb_accordion_item title=\"Do you have an affiliate program?\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet. Morbi mollis mollis pellentesque. Aenean vitae erat velit. Maecenas urna sapien, dignissim a augue vitae, porttitor luctus urna.[/et_pb_accordion_item][/et_pb_accordion][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#eaeaea\" show_divider=\"on\" height=\"30\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"center\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt qu[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"center\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt qu[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"center\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt qu[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Email\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\" title=\"Don\'t Be Shy\"]Drop us a line anytime, and one of our customer service reps will respond to you as soon as possible[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Homepage Corporate", "", "publish", "closed", "closed", "", "homepage-corporate", "", "", "2016-10-20 15:48:45", "2016-10-20 02:48:45", "", "0", "http://www.infinitymarketing.co.nz/et_pb_layout/homepage-corporate/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("468", "1", "2016-10-20 15:48:45", "2016-10-20 02:48:45", "[et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#2e2e2e\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"on\" parallax=\"on\"][et_pb_slide background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" heading=\"Hello! Welcome To My Online Portfolio\" /][et_pb_slide background_color=\"#f84b48\" alignment=\"center\" background_layout=\"dark\" heading=\"Project Title\" button_text=\"View Project\" /][et_pb_slide background_color=\"#23a1f5\" alignment=\"center\" background_layout=\"dark\" heading=\"Project Title\" button_text=\"View Project\" /][et_pb_slide background_color=\"#27c8b8\" alignment=\"center\" background_layout=\"dark\" heading=\"Project Title\" button_text=\"View Project\" /][/et_pb_fullwidth_slider][et_pb_fullwidth_portfolio admin_label=\"Fullwidth Portfolio\" fullwidth=\"on\" show_title=\"on\" show_date=\"on\" background_layout=\"dark\" auto=\"off\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/d2-placeholder-510px.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"40\" /][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"on\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet.[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"on\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet.[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"on\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet.[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Coding Languages\" number=\"7\" percent_sign=\"off\" background_layout=\"light\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Loyal Clients\" number=\"65\" percent_sign=\"off\" background_layout=\"light\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"International Awards\" number=\"12\" percent_sign=\"off\" background_layout=\"light\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Years of Experience\" number=\"10\" percent_sign=\"off\" background_layout=\"light\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#27c8b8\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"View My Full Portfolio\" button_url=\"#\" button_text=\"Enter\" background_color=\"#2caaca\" use_background_color=\"off\" background_layout=\"dark\" text_orientation=\"center\"]Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Cras venenatis ac lorema ac tincidunt.[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Homepage Portfolio", "", "publish", "closed", "closed", "", "homepage-portfolio", "", "", "2016-10-20 15:48:45", "2016-10-20 02:48:45", "", "0", "http://www.infinitymarketing.co.nz/et_pb_layout/homepage-portfolio/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("469", "1", "2016-10-20 15:48:45", "2016-10-20 02:48:45", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"][et_pb_slide heading=\"Our Company\" button_text=\"Features\" button_link=\"https://elegantthemes.com/preview/Divi2/features/\" background_color=\"#8d1bf4\" alignment=\"center\" background_layout=\"dark\" image=\"https://elegantthemesimages.com/images/premade/d2-300px.png\" background_image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-1920.png\"]Quisque eleifend orci sit amet est semper, iaculis tempor mi volutpat. Phasellus consectetur justo sed tristique molestie. Cras lectus quam, vehicula eu dictum a, sollicitudin id velit.[/et_pb_slide][et_pb_slide heading=\"Slide Title\" button_text=\"Learn More\" button_link=\"#\" background_color=\"#f84c48\" alignment=\"center\" background_layout=\"dark\"]Quisque eleifend orci sit amet est semper, iaculis tempor mi volutpat. Phasellus consectetur justo sed tristique molestie. Cras lectus quam, vehicula eu dictum a, sollicitudin id velit.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Cras semper dictum lectus ac bibendum. Sed id massa vel lorem laoreet molestie. Nullam vulputate lacus at mauris molestie porttitor.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Cras semper dictum lectus ac bibendum. Sed id massa vel lorem laoreet molestie. Nullam vulputate lacus at mauris molestie porttitor.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Cras semper dictum lectus ac bibendum. Sed id massa vel lorem laoreet molestie. Nullam vulputate lacus at mauris molestie porttitor.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#4b4b4b\" inner_shadow=\"on\" parallax=\"off\"][et_pb_fullwidth_portfolio admin_label=\"Fullwidth Portfolio\" title=\"Recent Work\" fullwidth=\"on\" show_title=\"on\" show_date=\"on\" background_layout=\"dark\" auto=\"off\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#eeeeee\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/et-logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/et-logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/et-logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://elegantthemesimages.com/images/premade/et-logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" company_name=\"Company\" url_new_window=\"off\" portrait_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" job_title=\"Job Role\" url=\"#\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" company_name=\"Company\" url_new_window=\"off\" portrait_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" job_title=\"Job Role\" url=\"#\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_testimonial][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" company_name=\"Company\" url_new_window=\"off\" portrait_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" job_title=\"Job Role\" url=\"#\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" company_name=\"Company\" url_new_window=\"off\" portrait_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" job_title=\"Job Role\" url=\"#\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_map admin_label=\"Fullwidth Map\" zoom_level=\"8\" address_lat=\"37.43410184255073\" address_lng=\"-122.04768412931253\"][et_pb_map_pin title=\"Elegant Themes\" pin_address=\"San Francisco, CA, USA\" pin_address_lat=\"37.7749295\" pin_address_lng=\"-122.41941550000001\" /][et_pb_map_pin title=\"Lorem Ipsum\" pin_address=\"San Jose, CA, USA\" pin_address_lat=\"37.3393857\" pin_address_lng=\"-121.89495549999998\" /][/et_pb_fullwidth_map][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_contact_form admin_label=\"Contact Form\" captcha=\"off\" title=\"Contact Us\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Homepage Company", "", "publish", "closed", "closed", "", "homepage-company", "", "", "2016-10-20 15:48:45", "2016-10-20 02:48:45", "", "0", "http://www.infinitymarketing.co.nz/et_pb_layout/homepage-company/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("466", "1", "2016-10-20 15:48:45", "2016-10-20 02:48:45", "[et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_slider admin_label=\"Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"][et_pb_slide heading=\"Welcome To My Website\" button_text=\"Enter\" button_link=\"#\" background_color=\"#27c9b9\" alignment=\"center\" background_layout=\"dark\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam eros at, laoreet metus.[/et_pb_slide][/et_pb_slider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"on\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"We Are a Company of Passionate Designers and Developers\" background_layout=\"light\" text_orientation=\"center\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"on\" font_icon=\"h\" icon_color=\"#a8a8a8\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#e0e0e0\" icon_placement=\"top\"]Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"on\" font_icon=\"\" icon_color=\"#a8a8a8\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#e0e0e0\" icon_placement=\"top\"]Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"on\" font_icon=\"v\" icon_color=\"#a8a8a8\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#e0e0e0\" icon_placement=\"top\"]Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"on\" font_icon=\"g\" icon_color=\"#a8a8a8\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#e0e0e0\" icon_placement=\"top\"]Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Drop Me a Line\" button_url=\"#\" button_text=\"Contact\" background_color=\"#2ea3f2\" use_background_color=\"on\" background_layout=\"dark\" text_orientation=\"center\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam eros at, laoreet metus.[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Homepage Basic", "", "publish", "closed", "closed", "", "homepage-basic", "", "", "2016-10-20 15:48:45", "2016-10-20 02:48:45", "", "0", "http://www.infinitymarketing.co.nz/et_pb_layout/homepage-basic/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("467", "1", "2016-10-20 15:48:45", "2016-10-20 02:48:45", "[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"][et_pb_slide heading=\"Welcome to Our Shop\" button_text=\"Shop Now\" background_color=\"#0194f3\" image=\"https://elegantthemesimages.com/images/premade/d2-placeholder-510px.png\" alignment=\"center\" background_layout=\"dark\" button_link=\"#\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam eros at, laoreet metus.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h1>Featured Products</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_shop admin_label=\"Shop\" type=\"featured\" posts_number=\"4\" columns=\"4\" orderby=\"menu_order\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"on\" background_color=\"#f7f7f7\" inner_shadow=\"off\" parallax=\"off\"][et_pb_column type=\"3_4\" specialty_columns=\"3\"][et_pb_row_inner][et_pb_column_inner type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h1>Recent Products</h1>[/et_pb_text][et_pb_shop admin_label=\"Shop\" type=\"recent\" posts_number=\"6\" columns=\"3\" orderby=\"date\" /][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner][et_pb_column_inner type=\"1_2\"][et_pb_cta admin_label=\"Call To Action\" title=\"Holiday Special Sale\" button_text=\"Shop Now\" background_color=\"#108bf5\" use_background_color=\"on\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\"]Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui.[/et_pb_cta][/et_pb_column_inner][et_pb_column_inner type=\"1_2\"][et_pb_cta admin_label=\"Call To Action\" title=\"Become a Vendor\" button_text=\"Learn More\" background_color=\"#27c9b9\" use_background_color=\"on\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\"]Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui.[/et_pb_cta][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"right\" background_layout=\"light\" /][/et_pb_column][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h1>What Our Customers are Saying</h1>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" url_new_window=\"off\" portrait_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]\"Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. Vivamus id blandit nisi, eu mattis odio.\"[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" url_new_window=\"off\" portrait_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]\"Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. Vivamus id blandit nisi, eu mattis odio.\"[/et_pb_testimonial][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" url_new_window=\"off\" portrait_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]\"Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. Vivamus id blandit nisi, eu mattis odio.\"[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" url_new_window=\"off\" portrait_url=\"https://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]\"Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. Vivamus id blandit nisi, eu mattis odio.\"[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#27c9b9\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Browse Our Full Shop\" button_url=\"#\" button_text=\"Enter\" use_background_color=\"off\" background_color=\"#108bf5\" background_layout=\"dark\" text_orientation=\"center\"]Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui.[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Homepage Shop", "", "publish", "closed", "closed", "", "homepage-shop", "", "", "2016-10-20 15:48:45", "2016-10-20 02:48:45", "", "0", "http://www.infinitymarketing.co.nz/et_pb_layout/homepage-shop/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("37", "1", "2016-02-26 14:39:43", "2016-02-26 01:39:43", "[et_pb_section admin_label=\"Impact Background\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice-Infinity-Marketing-Banner-.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Impact Text\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/discover-v2.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" disabled=\"off\" disabled_on=\"on||\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_signup admin_label=\"Email Optin\" provider=\"mailchimp\" mailchimp_list=\"4419f44e8e\" aweber_list=\"none\" use_background_color=\"on\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"left\" use_focus_border_color=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" title=\"Get practical marketing tips delivered straight to your inbox\" button_text=\"Sign me up!\" header_font=\"Open Sans||||\" header_font_size=\"22\" body_font=\"Open Sans||||\"] [/et_pb_signup][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"0px|||\"]\r\n<h2 style=\"text-align: center;\">Building your dream business can be overwhelming</h2>\r\n<h2 style=\"text-align: center;\">and how do you know what marketing works?</h2>\r\n<p style=\"text-align: center;\">In your small business, you tend to try and juggle it all. Infinity Marketing is here to help you\r\nwith marketing that suits your unique business, no matter which stage it is at.</p>\r\n<p style=\"text-align: center;\">We work together with you, to gain a thorough understanding of who your customers are,\r\nand where they are, to deliver the best marketing for your small business.</p>\r\n<p style=\"text-align: center;\">You might know exactly what your business needs to get the extra punch it requires,\r\nand need help with implementation of your marketing plan. Otherwise, you might\r\nbe starting out and need a guiding hand to identify what needs to be done for your business marketing.</p>\r\n<p style=\"text-align: center;\">Whatever stage you are at, we can help you take your business to the next level,\r\nwhere the possibilities are infinite.</p>\r\n<p style=\"text-align: center;\"><strong><a href=\"http://www.infinitymarketing.co.nz/work-with-us/\">Let\'s discover how we can make that happen for your business</a></strong></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#b3babf\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Facebook Blurb\" title=\"CONNECT\" url=\"http://www.facebook.com/infinitymarketing.co.nz\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%337%%\" icon_color=\"#ffffff\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nLike Infinity Marketing on Facebook\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Services Blurb\" title=\"SERVICES\" url=\"www.infinitymarketing.co.nz/work-with-us\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%248%%\" icon_color=\"#ffffff\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nView the services we provide\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Contact Blurb\" title=\"CONTACT\" url=\"www.infinitymarketing.co.nz/contact\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%86%%\" icon_color=\"#ffffff\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nContact us today\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice-About_round.png\" alt=\"Candice Venter\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"About Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>About Candice</h2>\r\nCandice has a passion for marketing for small businesses, having worked in both start up and large corporations, she has seen and done a lot. She has an absolute passion for helping small businesses grow through the power of marketing.\r\n\r\nAn expert in understanding who your customers are, understanding where they are and delivering messages that inspire action, Candice thrives on creating marketing that works.\r\n\r\nAbove all, she is passionate to help your business succeed.\r\n\r\n[/et_pb_text][et_pb_button admin_label=\"Read More Button\" button_url=\"http://www.infinitymarketing.co.nz/about/\" url_new_window=\"off\" button_text=\"Read More\" button_alignment=\"left\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#f9f9f9\" button_bg_color=\"#009edb\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon=\"%%28%%\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-us/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\">Discover the services we provide</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "HOME", "", "publish", "closed", "closed", "", "home", "", "", "2016-05-30 15:14:53", "2016-05-30 03:14:53", "", "0", "http://www.infinitymarketing.co.nz/?page_id=37", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("38", "1", "2016-02-26 14:39:43", "2016-02-26 01:39:43", "", "Home", "", "inherit", "closed", "closed", "", "37-revision-v1", "", "", "2016-02-26 14:39:43", "2016-02-26 01:39:43", "", "37", "http://www.infinitymarketing.co.nz/37-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("39", "1", "2016-02-26 14:40:00", "2016-02-26 01:40:00", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Us Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Work With Us</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Outsourced Marketing Department Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\">Infinity Marketing is your outsourced marketing department, here to help you with marketing that works!</h2>\r\n[/et_pb_text][et_pb_text admin_label=\"Overview Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nInfinity Marketing offers<strong> marketing coaching or consulting and marketing services</strong> to start up and small to medium sized businesses, whether it be a <strong>one off project or ongoing marketing services.</strong>\r\n<p style=\"text-align: left;\">We offer a range of marketing services for your small business. Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.</p>\r\n<p style=\"text-align: left;\">We offer great <strong>ongoing monthly packages,</strong> which are <strong>fully customisable</strong> to suit your business needs; and <strong>one-off services.</strong></p>\r\nWe can help you with\r\n<ul>\r\n	<li>Setting your <strong>marketing goals and strategy</strong> in line with your business goals,</li>\r\n	<li>Developing a <strong>marketing plan,</strong></li>\r\n	<li>Being your marketing “<strong>accountability buddy</strong>”, making sure that your marketing stays on track, with you every step of the way,</li>\r\n	<li>Or <strong>implementing your marketing</strong> if you are sick of trying to juggle and be an expert at it all.</li>\r\n</ul>\r\nEverything we do is <strong>customisable to suit your businesses individuality</strong>, and <strong>quotes are free,</strong> so please<a href=\"http://www.infinitymarketing.co.nz/contact/\"><strong> get in touch with us today to discuss your requirements.</strong> </a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"We Provide Text\" global_parent=\"414\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>We provide the following services</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Coaching Blurb\" global_parent=\"414\" title=\"Coaching\" url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne on One coaching and consulting services, either as a one-off service or on an on-going basis. Helping you get your marketing on track, and stay on track.\r\n\r\n[/et_pb_blurb][et_pb_button admin_label=\"See More Button\" button_url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" button_text=\"See more\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Marketing Services Blurb\" global_parent=\"414\" title=\"Marketing Services\" url=\"www.infinitymarketing.co.nz/marketing-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">Ongoing Marketing Services ensures your marketing happens like clock-work. The wheels keep churning, and your marketing keeps working for you.</p>\r\n[/et_pb_blurb][et_pb_button admin_label=\"See More Button\" button_url=\"www.infinitymarketing.co.nz/marketing-services\" url_new_window=\"off\" button_text=\"See more\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Projects Blurb\" global_parent=\"397\" title=\"Projects\" url=\"www.infinitymarketing.co.nz/projects\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%174%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne off marketing projects, such as brochures, website development, one off campaign plans, and much more. We can support you for a one off marketing project.\r\n\r\n[/et_pb_blurb][et_pb_button admin_label=\"See More Button\" button_url=\"www.infinitymarketing.co.nz/projects\" url_new_window=\"off\" button_text=\"See more\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Other Services Blurb\" global_parent=\"414\" title=\"Other Services\" url=\"www.infinitymarketing.co.nz/other-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%171%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe aim to provide all your marketing needs in one place, and work with specialists in order to do this. No need to find alternative suppliers, we can help you.\r\n\r\n[/et_pb_blurb][et_pb_button admin_label=\"See More Button\" button_url=\"www.infinitymarketing.co.nz/other-services\" url_new_window=\"off\" button_text=\"See more\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"259\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"259\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"259\" admin_label=\"Call To Action - Contact\" title=\"Ready to take action?\" button_url=\"http://www.infinitymarketing.co.nz/contact/\" url_new_window=\"off\" button_text=\"Click here to contact us now\" use_background_color=\"off\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\nYour new future is waiting\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "WORK WITH US", "", "publish", "closed", "closed", "", "work-with-us", "", "", "2016-04-29 17:07:33", "2016-04-29 05:07:33", "", "0", "http://www.infinitymarketing.co.nz/?page_id=39", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("40", "1", "2016-02-26 14:40:00", "2016-02-26 01:40:00", "", "Work With Me", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2016-02-26 14:40:00", "2016-02-26 01:40:00", "", "39", "http://www.infinitymarketing.co.nz/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("41", "1", "2016-02-26 14:40:11", "2016-02-26 01:40:11", "", "POSTS", "", "publish", "closed", "closed", "", "posts", "", "", "2016-02-29 22:40:25", "2016-02-29 09:40:25", "", "0", "http://www.infinitymarketing.co.nz/?page_id=41", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("42", "1", "2016-02-26 14:40:11", "2016-02-26 01:40:11", "", "Blog", "", "inherit", "closed", "closed", "", "41-revision-v1", "", "", "2016-02-26 14:40:11", "2016-02-26 01:40:11", "", "41", "http://www.infinitymarketing.co.nz/41-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("43", "1", "2016-02-26 14:40:21", "2016-02-26 01:40:21", "[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Contact Title\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Contact</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/cropped-Candice-About_round.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIf you have any questions, comments, feedback or even just to say hi, please contact us using any of the methods below and we will respond as soon as we can.\r\n\r\nInfinity Marketing is based in Howick, Auckland; New Zealand\r\n\r\n<span class=\"phone\"><strong>Phone:</strong> 021 159 1215\r\n</span><span class=\"email\"><strong>E-mail: </strong>candice@infinitymarketing.co.nz</span>\r\n\r\nOr complete the form below to email us:\r\n\r\n[/et_pb_text][et_pb_contact_form admin_label=\"Contact Form\" captcha=\"on\" email=\"candice@infinitymarketing.co.nz\" use_redirect=\"off\" success_message=\"Sent!\" input_border_radius=\"0\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_contact_field field_title=\"Name\" field_type=\"input\" field_id=\"Name\" required_mark=\"on\" fullwidth_field=\"off\" form_field_font_select=\"default\" form_field_font=\"||||\" use_border_color=\"off\" border_style=\"solid\"] [/et_pb_contact_field][et_pb_contact_field field_title=\"Email Address\" field_type=\"email\" field_id=\"Email\" required_mark=\"on\" fullwidth_field=\"off\" form_field_font_select=\"default\" form_field_font=\"||||\" use_border_color=\"off\" border_style=\"solid\"] [/et_pb_contact_field][et_pb_contact_field field_id=\"Phone Number\" field_title=\"Phone Number\" field_type=\"input\" required_mark=\"off\" fullwidth_field=\"off\" form_field_font_select=\"default\" form_field_font=\"||||\" use_border_color=\"off\" border_style=\"solid\"] [/et_pb_contact_field][et_pb_contact_field field_title=\"Message\" field_type=\"text\" field_id=\"Message\" required_mark=\"on\" fullwidth_field=\"on\" form_field_font_select=\"default\" form_field_font=\"||||\" use_border_color=\"off\" border_style=\"solid\"] [/et_pb_contact_field] [/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]", "CONTACT", "", "publish", "closed", "closed", "", "contact", "", "", "2016-12-20 15:49:29", "2016-12-20 02:49:29", "", "0", "http://www.infinitymarketing.co.nz/?page_id=43", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("44", "1", "2016-02-26 14:40:21", "2016-02-26 01:40:21", "", "Contact", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2016-02-26 14:40:21", "2016-02-26 01:40:21", "", "43", "http://www.infinitymarketing.co.nz/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("45", "1", "2016-02-26 14:40:33", "2016-02-26 01:40:33", "[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">Thanks for signing up to receiving marketing tips to your inbox.</p>\r\n<p style=\"text-align: center;\">We respect your privacy and will never distribute or sell your details.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" admin_label=\"Section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Facebook CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Connect.png\" alt=\"Connect with us on Facebook\" show_in_lightbox=\"off\" url=\"http://www.facebook.com/infinitymarketing.co.nz\" url_new_window=\"on\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" /][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section]", "THANK YOU", "", "publish", "closed", "closed", "", "thank-you", "", "", "2016-02-29 18:04:02", "2016-02-29 05:04:02", "", "0", "http://www.infinitymarketing.co.nz/?page_id=45", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("46", "1", "2016-02-26 14:40:33", "2016-02-26 01:40:33", "", "Thank you", "", "inherit", "closed", "closed", "", "45-revision-v1", "", "", "2016-02-26 14:40:33", "2016-02-26 01:40:33", "", "45", "http://www.infinitymarketing.co.nz/45-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("47", "1", "2016-02-26 14:40:44", "2016-02-26 01:40:44", "", "DISCOVERY CALL", "", "publish", "closed", "closed", "", "discovery-call", "", "", "2016-02-26 14:45:18", "2016-02-26 01:45:18", "", "0", "http://www.infinitymarketing.co.nz/?page_id=47", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("48", "1", "2016-02-26 14:40:44", "2016-02-26 01:40:44", "", "Discovery Call", "", "inherit", "closed", "closed", "", "47-revision-v1", "", "", "2016-02-26 14:40:44", "2016-02-26 01:40:44", "", "47", "http://www.infinitymarketing.co.nz/47-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("49", "1", "2016-02-26 14:40:56", "2016-02-26 01:40:56", "", "PORTFOLIO", "", "publish", "closed", "closed", "", "portfolio", "", "", "2016-02-26 14:45:53", "2016-02-26 01:45:53", "", "0", "http://www.infinitymarketing.co.nz/?page_id=49", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("50", "1", "2016-02-26 14:40:56", "2016-02-26 01:40:56", "", "Portfolio", "", "inherit", "closed", "closed", "", "49-revision-v1", "", "", "2016-02-26 14:40:56", "2016-02-26 01:40:56", "", "49", "http://www.infinitymarketing.co.nz/49-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("51", "1", "2016-02-26 14:42:18", "2016-02-26 01:42:18", " ", "", "", "publish", "closed", "closed", "", "51", "", "", "2016-08-05 14:26:54", "2016-08-05 02:26:54", "", "0", "http://www.infinitymarketing.co.nz/?p=51", "10", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("52", "1", "2016-02-26 14:42:18", "2016-02-26 01:42:18", " ", "", "", "publish", "closed", "closed", "", "52", "", "", "2016-08-05 14:26:54", "2016-08-05 02:26:54", "", "0", "http://www.infinitymarketing.co.nz/?p=52", "3", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("53", "1", "2016-02-26 14:42:18", "2016-02-26 01:42:18", " ", "", "", "publish", "closed", "closed", "", "53", "", "", "2016-08-05 14:26:54", "2016-08-05 02:26:54", "", "0", "http://www.infinitymarketing.co.nz/?p=53", "1", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("54", "1", "2016-02-26 14:42:18", "2016-02-26 01:42:18", " ", "", "", "publish", "closed", "closed", "", "54", "", "", "2016-08-05 14:26:54", "2016-08-05 02:26:54", "", "0", "http://www.infinitymarketing.co.nz/?p=54", "2", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("56", "1", "2016-02-26 14:43:14", "2016-02-26 01:43:14", "", "Work with me", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2016-02-26 14:43:14", "2016-02-26 01:43:14", "", "39", "http://www.infinitymarketing.co.nz/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("57", "1", "2016-02-26 14:44:31", "2016-02-26 01:44:31", "This is an example of a WordPress page, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many pages like this one or sub-pages as you like and manage all of your content inside of WordPress.", "ABOUT", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2016-02-26 14:44:31", "2016-02-26 01:44:31", "", "2", "http://www.infinitymarketing.co.nz/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("58", "1", "2016-02-26 14:44:48", "2016-02-26 01:44:48", "", "BLOG", "", "inherit", "closed", "closed", "", "41-revision-v1", "", "", "2016-02-26 14:44:48", "2016-02-26 01:44:48", "", "41", "http://www.infinitymarketing.co.nz/41-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("59", "1", "2016-02-26 14:45:02", "2016-02-26 01:45:02", "", "CONTACT", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2016-02-26 14:45:02", "2016-02-26 01:45:02", "", "43", "http://www.infinitymarketing.co.nz/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("60", "1", "2016-02-26 14:45:18", "2016-02-26 01:45:18", "", "DISCOVERY CALL", "", "inherit", "closed", "closed", "", "47-revision-v1", "", "", "2016-02-26 14:45:18", "2016-02-26 01:45:18", "", "47", "http://www.infinitymarketing.co.nz/47-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("61", "1", "2016-02-26 14:45:35", "2016-02-26 01:45:35", "", "HOME", "", "inherit", "closed", "closed", "", "37-revision-v1", "", "", "2016-02-26 14:45:35", "2016-02-26 01:45:35", "", "37", "http://www.infinitymarketing.co.nz/37-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("62", "1", "2016-02-26 14:45:53", "2016-02-26 01:45:53", "", "PORTFOLIO", "", "inherit", "closed", "closed", "", "49-revision-v1", "", "", "2016-02-26 14:45:53", "2016-02-26 01:45:53", "", "49", "http://www.infinitymarketing.co.nz/49-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("63", "1", "2016-02-26 14:46:07", "2016-02-26 01:46:07", "", "THANK YOU", "", "inherit", "closed", "closed", "", "45-revision-v1", "", "", "2016-02-26 14:46:07", "2016-02-26 01:46:07", "", "45", "http://www.infinitymarketing.co.nz/45-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("64", "1", "2016-02-26 14:46:18", "2016-02-26 01:46:18", "", "WORK WITH ME", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2016-02-26 14:46:18", "2016-02-26 01:46:18", "", "39", "http://www.infinitymarketing.co.nz/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("66", "1", "2016-02-29 15:58:03", "2016-02-29 02:58:03", "Discover the infinite power of the right marketing for your business", "Discover the power of marketing", "", "inherit", "open", "closed", "", "discover", "", "", "2016-02-29 16:05:05", "2016-02-29 03:05:05", "", "0", "http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/discover.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("69", "1", "2016-05-30 15:14:46", "2016-05-30 03:14:46", "[et_pb_section admin_label=\"Impact Background\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice-Infinity-Marketing-Banner-.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Impact Text\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/discover-v2.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" disabled=\"off\" disabled_on=\"on||\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_signup admin_label=\"Email Optin\" provider=\"mailchimp\" mailchimp_list=\"4419f44e8e\" aweber_list=\"none\" use_background_color=\"on\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"left\" use_focus_border_color=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" title=\"Get practical marketing tips delivered straight to your inbox\" button_text=\"Sign me up!\" header_font=\"Open Sans||||\" header_font_size=\"22\" body_font=\"Open Sans||||\"] [/et_pb_signup][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"0px|||\"]\r\n<h2 style=\"text-align: center;\">Building your dream business can be overwhelming</h2>\r\n<h2 style=\"text-align: center;\">and how do you know what marketing works?</h2>\r\n<p style=\"text-align: center;\">In your small business, you tend to try and juggle it all. Infinity Marketing is here to help you\r\nwith marketing that suits your unique business, no matter which stage it is at.</p>\r\n<p style=\"text-align: center;\">We work together with you, to gain a thorough understanding of who your customers are,\r\nand where they are, to deliver the best marketing for your small business.</p>\r\n<p style=\"text-align: center;\">You might know exactly what your business needs to get the extra punch it requires,\r\nand need help with implementation of your marketing plan. Otherwise, you might\r\nbe starting out and need a guiding hand to identify what needs to be done for your business marketing.</p>\r\n<p style=\"text-align: center;\">Whatever stage you are at, we can help you take your business to the next level,\r\nwhere the possibilities are infinite.</p>\r\n<p style=\"text-align: center;\"><strong><a href=\"http://www.infinitymarketing.co.nz/work-with-us/\">Let\'s discover how we can make that happen for your business</a></strong></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#b3babf\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Facebook Blurb\" title=\"CONNECT\" url=\"http://www.facebook.com/infinitymarketing.co.nz\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%337%%\" icon_color=\"#ffffff\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nLike Infinity Marketing on Facebook\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Services Blurb\" title=\"SERVICES\" url=\"www.infinitymarketing.co.nz/work-with-us\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%248%%\" icon_color=\"#ffffff\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nView the services we provide\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Contact Blurb\" title=\"CONTACT\" url=\"www.infinitymarketing.co.nz/contact\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%86%%\" icon_color=\"#ffffff\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nContact us today\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice-About_round.png\" alt=\"Candice Venter\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"About Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>About Candice</h2>\r\nCandice has a passion for marketing for small businesses, having worked in both start up and large corporations, she has seen and done a lot. She has an absolute passion for helping small businesses grow through the power of marketing.\r\n\r\nAn expert in understanding who your customers are, understanding where they are and delivering messages that inspire action, Candice thrives on creating marketing that works.\r\n\r\nAbove all, she is passionate to help your business succeed.\r\n\r\n[/et_pb_text][et_pb_button admin_label=\"Read More Button\" button_url=\"http://www.infinitymarketing.co.nz/about/\" url_new_window=\"off\" button_text=\"Read More\" button_alignment=\"left\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#f9f9f9\" button_bg_color=\"#009edb\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon=\"%%28%%\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-us/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\">Discover the services we provide</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "HOME", "", "inherit", "closed", "closed", "", "37-autosave-v1", "", "", "2016-05-30 15:14:46", "2016-05-30 03:14:46", "", "37", "http://www.infinitymarketing.co.nz/37-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("70", "1", "2016-02-29 16:05:28", "2016-02-29 03:05:28", "[et_pb_section admin_label=\"section\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/discover.png\" alt=\"Discover the power of marketing\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "HOME", "", "inherit", "closed", "closed", "", "37-revision-v1", "", "", "2016-02-29 16:05:28", "2016-02-29 03:05:28", "", "37", "http://www.infinitymarketing.co.nz/37-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("71", "1", "2016-02-29 16:16:32", "2016-02-29 03:16:32", "[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Impact Text\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/discover.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" admin_label=\"Section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_signup admin_label=\"Email Optin\" provider=\"mailchimp\" mailchimp_list=\"none\" aweber_list=\"none\" use_background_color=\"on\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"left\" use_focus_border_color=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" admin_label=\"Section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\">DREAMING OF MARKETING THAT WORKS?</h2>\r\n<p style=\"text-align: center;\">We can make that happen</p>\r\n<p style=\"text-align: center;\"><a href=\"http://www.infinitymarketing.co.nz/work-with-me/\">Let\'s discover how to make that happen for your business</a></p>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][/et_pb_row][/et_pb_section]", "HOME", "", "inherit", "closed", "closed", "", "37-revision-v1", "", "", "2016-02-29 16:16:32", "2016-02-29 03:16:32", "", "37", "http://www.infinitymarketing.co.nz/37-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("72", "1", "2016-02-29 16:17:30", "2016-02-29 03:17:30", "[et_pb_section admin_label=\"Impact Background\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Impact Text\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/discover.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_signup admin_label=\"Email Optin\" provider=\"mailchimp\" mailchimp_list=\"none\" aweber_list=\"none\" use_background_color=\"on\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"left\" use_focus_border_color=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\">DREAMING OF MARKETING THAT WORKS?</h2>\r\n<p style=\"text-align: center;\">We can make that happen</p>\r\n<p style=\"text-align: center;\"><a href=\"http://www.infinitymarketing.co.nz/work-with-me/\">Let\'s discover how to make that happen for your business</a></p>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][/et_pb_row][/et_pb_section]", "HOME", "", "inherit", "closed", "closed", "", "37-revision-v1", "", "", "2016-02-29 16:17:30", "2016-02-29 03:17:30", "", "37", "http://www.infinitymarketing.co.nz/37-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("73", "1", "2016-02-29 16:18:07", "2016-02-29 03:18:07", "Connect with Infinity Marketing on Facebook", "Connect on Facebook", "", "inherit", "open", "closed", "", "connect", "", "", "2016-02-29 16:18:43", "2016-02-29 03:18:43", "", "37", "http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Connect.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("280", "1", "2016-03-20 21:05:20", "2016-03-20 08:05:20", "[et_pb_section admin_label=\"Impact Background\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice-Infinity-Marketing-Banner-.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Impact Text\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/discover-v2.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_signup admin_label=\"Email Optin\" provider=\"mailchimp\" mailchimp_list=\"4419f44e8e\" aweber_list=\"none\" use_background_color=\"on\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"left\" use_focus_border_color=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" title=\"Get practical marketing tips delivered straight to your inbox\" button_text=\"Sign me up!\" header_font=\"Open Sans||||\" header_font_size=\"22\" body_font=\"Open Sans||||\"] [/et_pb_signup][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"0px|||\"]\r\n<h2 style=\"text-align: center;\">Building your dream business can be overwhelming</h2>\r\n<h2 style=\"text-align: center;\">and how do you know what marketing works?</h2>\r\n<p style=\"text-align: center;\">In your small business, you tend to try and juggle it all. But Infinity Marketing is here to help you,\r\nthrough marketing that suits your unique business and the stage that it is at.</p>\r\n<p style=\"text-align: center;\">We will work together with you, to gain a thorough understanding of who your customers are,\r\nand where they are, to deliver the best marketing for your small business.</p>\r\n<p style=\"text-align: center;\">You might know exactly what your business needs to get the extra punch it requires,\r\nand simply need help with implementation of your marketing plan, or you might just\r\nbe starting out and need a guiding hand to identify what needs to be done for your business marketing.</p>\r\n<p style=\"text-align: center;\">Whatever stage you are at, we can help you take your business to the next level,\r\nwhere the possibilities are infinite.</p>\r\n<p style=\"text-align: center;\"><strong><a href=\"http://www.infinitymarketing.co.nz/work-with-me/\">Let\'s discover how to make that happen for your business</a></strong></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#b3babf\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Connect CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Connect.jpg\" alt=\"Connect on Facebook\" show_in_lightbox=\"off\" url=\"http://www.facebook.com/infinitymarketing.co.nz\" url_new_window=\"on\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Services CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Services.jpg\" alt=\"View Services\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/work-with-me/\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Contact CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Contact.jpg\" alt=\"Contact us\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/contact/\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice-About_round.png\" alt=\"Candice Venter\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"About Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>About Candice</h2>\r\nCandice has has a passion for marketing for small businesses, having worked in both start up and large corporations, she has seen and done a lot. She has an absolute passion for helping small businesses grow through the power of marketing.\r\n\r\nAn expert in understanding who your customers are, understanding where they are and delivering messages that inspire action, Candice thrives on creating marketing that works.\r\n\r\nAbove all, she is passionate to see your business succeed.\r\n\r\n[/et_pb_text][et_pb_button admin_label=\"Read More Button\" button_url=\"http://www.infinitymarketing.co.nz/about/\" url_new_window=\"off\" button_text=\"Read More\" button_alignment=\"left\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#f9f9f9\" button_bg_color=\"#009edb\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon=\"%%28%%\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" admin_label=\"Section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: right;\">Proudly</p>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Network NZ Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Network-NZ-Transparent.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"right\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-us/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\">Discover the services we provide</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "HOME", "", "inherit", "closed", "closed", "", "37-revision-v1", "", "", "2016-03-20 21:05:20", "2016-03-20 08:05:20", "", "37", "http://www.infinitymarketing.co.nz/37-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("281", "1", "2016-03-20 21:06:20", "2016-03-20 08:06:20", "[et_pb_section admin_label=\"Impact Background\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice-Infinity-Marketing-Banner-.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Impact Text\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/discover-v2.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_signup admin_label=\"Email Optin\" provider=\"mailchimp\" mailchimp_list=\"4419f44e8e\" aweber_list=\"none\" use_background_color=\"on\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"left\" use_focus_border_color=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" title=\"Get practical marketing tips delivered straight to your inbox\" button_text=\"Sign me up!\" header_font=\"Open Sans||||\" header_font_size=\"22\" body_font=\"Open Sans||||\"] [/et_pb_signup][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"0px|||\"]\r\n<h2 style=\"text-align: center;\">Building your dream business can be overwhelming</h2>\r\n<h2 style=\"text-align: center;\">and how do you know what marketing works?</h2>\r\n<p style=\"text-align: center;\">In your small business, you tend to try and juggle it all. But Infinity Marketing is here to help you,\r\nthrough marketing that suits your unique business and the stage that it is at.</p>\r\n<p style=\"text-align: center;\">We will work together with you, to gain a thorough understanding of who your customers are,\r\nand where they are, to deliver the best marketing for your small business.</p>\r\n<p style=\"text-align: center;\">You might know exactly what your business needs to get the extra punch it requires,\r\nand simply need help with implementation of your marketing plan, or you might just\r\nbe starting out and need a guiding hand to identify what needs to be done for your business marketing.</p>\r\n<p style=\"text-align: center;\">Whatever stage you are at, we can help you take your business to the next level,\r\nwhere the possibilities are infinite.</p>\r\n<p style=\"text-align: center;\"><strong><a href=\"http://www.infinitymarketing.co.nz/work-with-me/\">Let\'s discover how to make that happen for your business</a></strong></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#b3babf\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Connect CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Connect.jpg\" alt=\"Connect on Facebook\" show_in_lightbox=\"off\" url=\"http://www.facebook.com/infinitymarketing.co.nz\" url_new_window=\"on\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Services CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Services.jpg\" alt=\"View Services\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/work-with-me/\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Contact CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Contact.jpg\" alt=\"Contact us\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/contact/\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice-About_round.png\" alt=\"Candice Venter\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"About Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>About Candice</h2>\r\nCandice has has a passion for marketing for small businesses, having worked in both start up and large corporations, she has seen and done a lot. She has an absolute passion for helping small businesses grow through the power of marketing.\r\n\r\nAn expert in understanding who your customers are, understanding where they are and delivering messages that inspire action, Candice thrives on creating marketing that works.\r\n\r\nAbove all, she is passionate to see your business succeed.\r\n\r\n[/et_pb_text][et_pb_button admin_label=\"Read More Button\" button_url=\"http://www.infinitymarketing.co.nz/about/\" url_new_window=\"off\" button_text=\"Read More\" button_alignment=\"left\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#f9f9f9\" button_bg_color=\"#009edb\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon=\"%%28%%\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-us/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\">Discover the services we provide</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "HOME", "", "inherit", "closed", "closed", "", "37-revision-v1", "", "", "2016-03-20 21:06:20", "2016-03-20 08:06:20", "", "37", "http://www.infinitymarketing.co.nz/37-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("76", "1", "2016-02-29 16:21:43", "2016-02-29 03:21:43", "[et_pb_section admin_label=\"Impact Background\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Impact Text\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/discover.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_signup admin_label=\"Email Optin\" provider=\"mailchimp\" mailchimp_list=\"none\" aweber_list=\"none\" use_background_color=\"on\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"left\" use_focus_border_color=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\">DREAMING OF MARKETING THAT WORKS?</h2>\r\n<p style=\"text-align: center;\">We can make that happen</p>\r\n<p style=\"text-align: center;\"><a href=\"http://www.infinitymarketing.co.nz/work-with-me/\">Let\'s discover how to make that happen for your business</a></p>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" admin_label=\"Section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Connect CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Connect.png\" alt=\"Connect on Facebook\" show_in_lightbox=\"off\" url=\"http://www.facebook.com/infinitymarketing.co.nz\" url_new_window=\"on\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Services\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Services.png\" alt=\"View Services\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Contact\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Contact.png\" alt=\"Contact us\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "HOME", "", "inherit", "closed", "closed", "", "37-revision-v1", "", "", "2016-02-29 16:21:43", "2016-02-29 03:21:43", "", "37", "http://www.infinitymarketing.co.nz/37-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("78", "1", "2016-02-29 16:29:10", "2016-02-29 03:29:10", "[et_pb_section admin_label=\"Impact Background\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Impact Text\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/discover.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_signup admin_label=\"Email Optin\" provider=\"mailchimp\" mailchimp_list=\"none\" aweber_list=\"none\" use_background_color=\"on\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"left\" use_focus_border_color=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\">DREAMING OF MARKETING THAT WORKS?</h2>\r\n<p style=\"text-align: center;\">We can make that happen</p>\r\n<p style=\"text-align: center;\"><a href=\"http://www.infinitymarketing.co.nz/work-with-me/\">Let\'s discover how to make that happen for your business</a></p>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Connect CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Connect.png\" alt=\"Connect on Facebook\" show_in_lightbox=\"off\" url=\"http://www.facebook.com/infinitymarketing.co.nz\" url_new_window=\"on\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Services\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Services.png\" alt=\"View Services\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Contact\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Contact.png\" alt=\"Contact us\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" admin_label=\"Section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice.png\" alt=\"Candice Venter\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" /][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"About Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>About Candice</h2>\r\nCandice has has a passion for marketing for small businesses\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "HOME", "", "inherit", "closed", "closed", "", "37-revision-v1", "", "", "2016-02-29 16:29:10", "2016-02-29 03:29:10", "", "37", "http://www.infinitymarketing.co.nz/37-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("79", "1", "2016-02-29 16:32:06", "2016-02-29 03:32:06", "[et_pb_section admin_label=\"Impact Background\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Impact Text\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/discover.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_signup admin_label=\"Email Optin\" provider=\"mailchimp\" mailchimp_list=\"none\" aweber_list=\"none\" use_background_color=\"on\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"left\" use_focus_border_color=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\">DREAMING OF MARKETING THAT WORKS?</h2>\r\n<p style=\"text-align: center;\">We can make that happen</p>\r\n<p style=\"text-align: center;\"><a href=\"http://www.infinitymarketing.co.nz/work-with-me/\">Let\'s discover how to make that happen for your business</a></p>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Connect CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Connect.png\" alt=\"Connect on Facebook\" show_in_lightbox=\"off\" url=\"http://www.facebook.com/infinitymarketing.co.nz\" url_new_window=\"on\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Services CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Services.png\" alt=\"View Services\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/work-with-me/\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Contact CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Contact.png\" alt=\"Contact us\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/contact/\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice.png\" alt=\"Candice Venter\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"About Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>About Candice</h2>\r\nCandice has has a passion for marketing for small businesses\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "HOME", "", "inherit", "closed", "closed", "", "37-revision-v1", "", "", "2016-02-29 16:32:06", "2016-02-29 03:32:06", "", "37", "http://www.infinitymarketing.co.nz/37-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("80", "1", "2016-02-29 16:38:31", "2016-02-29 03:38:31", "[et_pb_section admin_label=\"Impact Background\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Impact Text\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/discover.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_signup admin_label=\"Email Optin\" provider=\"mailchimp\" mailchimp_list=\"none\" aweber_list=\"none\" use_background_color=\"on\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"left\" use_focus_border_color=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\">DREAMING OF MARKETING THAT WORKS?</h2>\r\n<p style=\"text-align: center;\">We can make that happen</p>\r\n<p style=\"text-align: center;\"><a href=\"http://www.infinitymarketing.co.nz/work-with-me/\">Let\'s discover how to make that happen for your business</a></p>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Connect CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Connect.png\" alt=\"Connect on Facebook\" show_in_lightbox=\"off\" url=\"http://www.facebook.com/infinitymarketing.co.nz\" url_new_window=\"on\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Services CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Services.png\" alt=\"View Services\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/work-with-me/\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Contact CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Contact.png\" alt=\"Contact us\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/contact/\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice.png\" alt=\"Candice Venter\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"About Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>About Candice</h2>\r\nCandice has has a passion for marketing for small businesses\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" admin_label=\"CTA Background\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-me/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\nDiscover the services we provide\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "HOME", "", "inherit", "closed", "closed", "", "37-revision-v1", "", "", "2016-02-29 16:38:31", "2016-02-29 03:38:31", "", "37", "http://www.infinitymarketing.co.nz/37-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("81", "1", "2016-02-29 16:40:00", "2016-02-29 03:40:00", "[et_pb_section admin_label=\"Impact Background\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Impact Text\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/discover.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_signup admin_label=\"Email Optin\" provider=\"mailchimp\" mailchimp_list=\"none\" aweber_list=\"none\" use_background_color=\"on\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"left\" use_focus_border_color=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\">DREAMING OF MARKETING THAT WORKS?</h2>\r\n<p style=\"text-align: center;\">We can make that happen</p>\r\n<p style=\"text-align: center;\"><a href=\"http://www.infinitymarketing.co.nz/work-with-me/\">Let\'s discover how to make that happen for your business</a></p>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Connect CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Connect.png\" alt=\"Connect on Facebook\" show_in_lightbox=\"off\" url=\"http://www.facebook.com/infinitymarketing.co.nz\" url_new_window=\"on\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Services CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Services.png\" alt=\"View Services\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/work-with-me/\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Contact CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Contact.png\" alt=\"Contact us\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/contact/\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice.png\" alt=\"Candice Venter\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"About Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>About Candice</h2>\r\nCandice has has a passion for marketing for small businesses\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-me/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\">Discover the services we provide</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "HOME", "", "inherit", "closed", "closed", "", "37-revision-v1", "", "", "2016-02-29 16:40:00", "2016-02-29 03:40:00", "", "37", "http://www.infinitymarketing.co.nz/37-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("84", "1", "2016-02-29 17:41:11", "2016-02-29 04:41:11", "[et_pb_section admin_label=\"Impact Background\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Impact Text\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/discover.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_signup admin_label=\"Email Optin\" provider=\"mailchimp\" mailchimp_list=\"4419f44e8e\" aweber_list=\"none\" use_background_color=\"on\" background_color=\"#0ec0de\" background_layout=\"dark\" text_orientation=\"left\" use_focus_border_color=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" title=\"Get marketing tips to your inbox\" button_text=\"Sign me up!\"] [/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\">DREAMING OF MARKETING THAT WORKS?</h2>\r\n<p style=\"text-align: center;\">We can make that happen</p>\r\n<p style=\"text-align: center;\"><a href=\"http://www.infinitymarketing.co.nz/work-with-me/\">Let\'s discover how to make that happen for your business</a></p>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Connect CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Connect.png\" alt=\"Connect on Facebook\" show_in_lightbox=\"off\" url=\"http://www.facebook.com/infinitymarketing.co.nz\" url_new_window=\"on\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Services CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Services.png\" alt=\"View Services\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/work-with-me/\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Contact CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Contact.png\" alt=\"Contact us\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/contact/\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice.png\" alt=\"Candice Venter\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"About Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>About Candice</h2>\r\nCandice has has a passion for marketing for small businesses\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-me/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\">Discover the services we provide</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "HOME", "", "inherit", "closed", "closed", "", "37-revision-v1", "", "", "2016-02-29 17:41:11", "2016-02-29 04:41:11", "", "37", "http://www.infinitymarketing.co.nz/37-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("85", "1", "2016-02-29 17:51:49", "2016-02-29 04:51:49", "[et_pb_section admin_label=\"Impact Background\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Impact Text\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/discover.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_signup admin_label=\"Email Optin\" provider=\"mailchimp\" mailchimp_list=\"4419f44e8e\" aweber_list=\"none\" use_background_color=\"on\" background_color=\"#0ec0de\" background_layout=\"dark\" text_orientation=\"left\" use_focus_border_color=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" title=\"Get marketing tips to your inbox\" button_text=\"Sign me up!\" header_font=\"Open Sans||||\" header_font_size=\"16\" body_font=\"Open Sans||||\"] [/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\">DREAMING OF MARKETING THAT WORKS?</h2>\r\n<p style=\"text-align: center;\">We can make that happen</p>\r\n<p style=\"text-align: center;\"><a href=\"http://www.infinitymarketing.co.nz/work-with-me/\">Let\'s discover how to make that happen for your business</a></p>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Connect CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Connect.png\" alt=\"Connect on Facebook\" show_in_lightbox=\"off\" url=\"http://www.facebook.com/infinitymarketing.co.nz\" url_new_window=\"on\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Services CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Services.png\" alt=\"View Services\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/work-with-me/\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Contact CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Contact.png\" alt=\"Contact us\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/contact/\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice.png\" alt=\"Candice Venter\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"About Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>About Candice</h2>\r\nCandice has has a passion for marketing for small businesses\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-me/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\">Discover the services we provide</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "HOME", "", "inherit", "closed", "closed", "", "37-revision-v1", "", "", "2016-02-29 17:51:49", "2016-02-29 04:51:49", "", "37", "http://www.infinitymarketing.co.nz/37-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("86", "1", "2016-02-29 17:52:33", "2016-02-29 04:52:33", "[et_pb_section admin_label=\"Impact Background\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Impact Text\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/discover.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_signup admin_label=\"Email Optin\" provider=\"mailchimp\" mailchimp_list=\"4419f44e8e\" aweber_list=\"none\" use_background_color=\"on\" background_color=\"#0ec0de\" background_layout=\"dark\" text_orientation=\"left\" use_focus_border_color=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" title=\"Get marketing tips to your inbox\" button_text=\"Sign me up!\" header_font=\"Open Sans||||\" header_font_size=\"22\" body_font=\"Open Sans||||\"] [/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\">DREAMING OF MARKETING THAT WORKS?</h2>\r\n<p style=\"text-align: center;\">We can make that happen</p>\r\n<p style=\"text-align: center;\"><a href=\"http://www.infinitymarketing.co.nz/work-with-me/\">Let\'s discover how to make that happen for your business</a></p>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Connect CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Connect.png\" alt=\"Connect on Facebook\" show_in_lightbox=\"off\" url=\"http://www.facebook.com/infinitymarketing.co.nz\" url_new_window=\"on\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Services CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Services.png\" alt=\"View Services\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/work-with-me/\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Contact CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Contact.png\" alt=\"Contact us\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/contact/\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice.png\" alt=\"Candice Venter\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"About Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>About Candice</h2>\r\nCandice has has a passion for marketing for small businesses\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-me/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\">Discover the services we provide</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "HOME", "", "inherit", "closed", "closed", "", "37-revision-v1", "", "", "2016-02-29 17:52:33", "2016-02-29 04:52:33", "", "37", "http://www.infinitymarketing.co.nz/37-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("88", "1", "2016-02-29 18:00:17", "2016-02-29 05:00:17", "[et_pb_section admin_label=\"Impact Background\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Impact Text\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/discover.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_signup admin_label=\"Email Optin\" provider=\"mailchimp\" mailchimp_list=\"none\" aweber_list=\"none\" use_background_color=\"on\" background_color=\"#0ec0de\" background_layout=\"dark\" text_orientation=\"left\" use_focus_border_color=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" title=\"Get marketing tips to your inbox\" button_text=\"Sign me up!\" header_font=\"Open Sans||||\" header_font_size=\"22\" body_font=\"Open Sans||||\"] [/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\">DREAMING OF MARKETING THAT WORKS?</h2>\r\n<p style=\"text-align: center;\">We can make that happen</p>\r\n<p style=\"text-align: center;\"><a href=\"http://www.infinitymarketing.co.nz/work-with-me/\">Let\'s discover how to make that happen for your business</a></p>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Connect CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Connect.png\" alt=\"Connect on Facebook\" show_in_lightbox=\"off\" url=\"http://www.facebook.com/infinitymarketing.co.nz\" url_new_window=\"on\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Services CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Services.png\" alt=\"View Services\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/work-with-me/\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Contact CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Contact.png\" alt=\"Contact us\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/contact/\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice.png\" alt=\"Candice Venter\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"About Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>About Candice</h2>\r\nCandice has has a passion for marketing for small businesses\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-me/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\">Discover the services we provide</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "HOME", "", "inherit", "closed", "closed", "", "37-revision-v1", "", "", "2016-02-29 18:00:17", "2016-02-29 05:00:17", "", "37", "http://www.infinitymarketing.co.nz/37-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("87", "1", "2016-02-29 17:55:41", "2016-02-29 04:55:41", "[et_pb_section admin_label=\"Impact Background\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Impact Text\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/discover.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_signup admin_label=\"Email Optin\" provider=\"mailchimp\" mailchimp_list=\"4419f44e8e\" aweber_list=\"none\" use_background_color=\"on\" background_color=\"#0ec0de\" background_layout=\"dark\" text_orientation=\"left\" use_focus_border_color=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" title=\"Get marketing tips to your inbox\" button_text=\"Sign me up!\" header_font=\"Open Sans||||\" header_font_size=\"22\" body_font=\"Open Sans||||\" custom_padding=\"2px|2px|2px|2px\"] [/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\">DREAMING OF MARKETING THAT WORKS?</h2>\r\n<p style=\"text-align: center;\">We can make that happen</p>\r\n<p style=\"text-align: center;\"><a href=\"http://www.infinitymarketing.co.nz/work-with-me/\">Let\'s discover how to make that happen for your business</a></p>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Connect CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Connect.png\" alt=\"Connect on Facebook\" show_in_lightbox=\"off\" url=\"http://www.facebook.com/infinitymarketing.co.nz\" url_new_window=\"on\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Services CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Services.png\" alt=\"View Services\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/work-with-me/\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Contact CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Contact.png\" alt=\"Contact us\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/contact/\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice.png\" alt=\"Candice Venter\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"About Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>About Candice</h2>\r\nCandice has has a passion for marketing for small businesses\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-me/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\">Discover the services we provide</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "HOME", "", "inherit", "closed", "closed", "", "37-revision-v1", "", "", "2016-02-29 17:55:41", "2016-02-29 04:55:41", "", "37", "http://www.infinitymarketing.co.nz/37-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("89", "1", "2016-02-29 18:04:17", "2016-02-29 05:04:17", "[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">Thanks for signing up to receiving marketing tips to your inbox.</p>\r\n<p style=\"text-align: center;\">We respect your privacy and will never distribute or sell your details.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" admin_label=\"Section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Facebook CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Connect.png\" alt=\"Connect with us on Facebook\" show_in_lightbox=\"off\" url=\"http://www.facebook.com/infinitymarketing.co.nz\" url_new_window=\"on\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" /][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section]", "THANK YOU", "", "inherit", "closed", "closed", "", "45-autosave-v1", "", "", "2016-02-29 18:04:17", "2016-02-29 05:04:17", "", "45", "http://www.infinitymarketing.co.nz/45-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("90", "1", "2016-02-29 18:04:02", "2016-02-29 05:04:02", "[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">Thanks for signing up to receiving marketing tips to your inbox.</p>\r\n<p style=\"text-align: center;\">We respect your privacy and will never distribute or sell your details.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" admin_label=\"Section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Facebook CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Connect.png\" alt=\"Connect with us on Facebook\" show_in_lightbox=\"off\" url=\"http://www.facebook.com/infinitymarketing.co.nz\" url_new_window=\"on\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" /][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section]", "THANK YOU", "", "inherit", "closed", "closed", "", "45-revision-v1", "", "", "2016-02-29 18:04:02", "2016-02-29 05:04:02", "", "45", "http://www.infinitymarketing.co.nz/45-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("91", "1", "2016-02-29 18:55:37", "2016-02-29 05:55:37", "[et_pb_section admin_label=\"Impact Background\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Impact Text\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/discover.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_signup admin_label=\"Email Optin\" provider=\"mailchimp\" mailchimp_list=\"none\" aweber_list=\"none\" use_background_color=\"on\" background_color=\"#0ec0de\" background_layout=\"dark\" text_orientation=\"left\" use_focus_border_color=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" title=\"Get marketing tips to your inbox\" button_text=\"Sign me up!\" header_font=\"Open Sans||||\" header_font_size=\"22\" body_font=\"Open Sans||||\"] [/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\">DREAMING OF MARKETING THAT WORKS?</h2>\r\n<p style=\"text-align: center;\">We can make that happen</p>\r\n<p style=\"text-align: center;\"><a href=\"http://www.infinitymarketing.co.nz/work-with-me/\">Let\'s discover how to make that happen for your business</a></p>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Connect CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Connect.png\" alt=\"Connect on Facebook\" show_in_lightbox=\"off\" url=\"http://www.facebook.com/infinitymarketing.co.nz\" url_new_window=\"on\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Services CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Services.png\" alt=\"View Services\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/work-with-me/\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Contact CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Contact.png\" alt=\"Contact us\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/contact/\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#888e8f\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice.png\" alt=\"Candice Venter\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"About Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>About Candice</h2>\r\nCandice has has a passion for marketing for small businesses\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-me/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\">Discover the services we provide</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "HOME", "", "inherit", "closed", "closed", "", "37-revision-v1", "", "", "2016-02-29 18:55:37", "2016-02-29 05:55:37", "", "37", "http://www.infinitymarketing.co.nz/37-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("92", "1", "2016-02-29 18:57:03", "2016-02-29 05:57:03", "[et_pb_section admin_label=\"Impact Background\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Impact Text\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/discover.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_signup admin_label=\"Email Optin\" provider=\"mailchimp\" mailchimp_list=\"none\" aweber_list=\"none\" use_background_color=\"on\" background_color=\"#0ec0de\" background_layout=\"dark\" text_orientation=\"left\" use_focus_border_color=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" title=\"Get marketing tips to your inbox\" button_text=\"Sign me up!\" header_font=\"Open Sans||||\" header_font_size=\"22\" body_font=\"Open Sans||||\"] [/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\">DREAMING OF MARKETING THAT WORKS?</h2>\r\n<p style=\"text-align: center;\">We can make that happen</p>\r\n<p style=\"text-align: center;\"><a href=\"http://www.infinitymarketing.co.nz/work-with-me/\">Let\'s discover how to make that happen for your business</a></p>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#b3babf\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Connect CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Connect.png\" alt=\"Connect on Facebook\" show_in_lightbox=\"off\" url=\"http://www.facebook.com/infinitymarketing.co.nz\" url_new_window=\"on\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Services CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Services.png\" alt=\"View Services\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/work-with-me/\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Contact CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Contact.png\" alt=\"Contact us\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/contact/\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#888e8f\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice.png\" alt=\"Candice Venter\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"About Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>About Candice</h2>\r\nCandice has has a passion for marketing for small businesses\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-me/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\">Discover the services we provide</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "HOME", "", "inherit", "closed", "closed", "", "37-revision-v1", "", "", "2016-02-29 18:57:03", "2016-02-29 05:57:03", "", "37", "http://www.infinitymarketing.co.nz/37-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("93", "1", "2016-02-29 18:57:58", "2016-02-29 05:57:58", "[et_pb_section admin_label=\"Impact Background\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Impact Text\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/discover.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_signup admin_label=\"Email Optin\" provider=\"mailchimp\" mailchimp_list=\"4419f44e8e\" aweber_list=\"none\" use_background_color=\"on\" background_color=\"#0ec0de\" background_layout=\"dark\" text_orientation=\"left\" use_focus_border_color=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" title=\"Get marketing tips to your inbox\" button_text=\"Sign me up!\" header_font=\"Open Sans||||\" header_font_size=\"22\" body_font=\"Open Sans||||\"] [/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\">DREAMING OF MARKETING THAT WORKS?</h2>\r\n<p style=\"text-align: center;\">We can make that happen</p>\r\n<p style=\"text-align: center;\"><a href=\"http://www.infinitymarketing.co.nz/work-with-me/\">Let\'s discover how to make that happen for your business</a></p>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#b3babf\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Connect CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Connect.png\" alt=\"Connect on Facebook\" show_in_lightbox=\"off\" url=\"http://www.facebook.com/infinitymarketing.co.nz\" url_new_window=\"on\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Services CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Services.png\" alt=\"View Services\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/work-with-me/\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Contact CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Contact.png\" alt=\"Contact us\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/contact/\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice.png\" alt=\"Candice Venter\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"About Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>About Candice</h2>\r\nCandice has has a passion for marketing for small businesses\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-me/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\">Discover the services we provide</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "HOME", "", "inherit", "closed", "closed", "", "37-revision-v1", "", "", "2016-02-29 18:57:58", "2016-02-29 05:57:58", "", "37", "http://www.infinitymarketing.co.nz/37-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("94", "1", "2016-02-29 22:01:54", "2016-02-29 09:01:54", "{\"theme_css\":\"ui-lightness\",\"theme_name\":\"UI Lightness\",\"center_form\":\"\",\"form_width\":\"100%\",\"form_align\":\"left\",\"direction\":\"ltr\",\"fieldset\":\"0px\",\"fieldset_color\":\"000000\",\"fieldset_padding\":\"0 0 15px 0\",\"fieldset_bg_color\":\"\",\"title_size\":\"20px\",\"title_color\":\"444444\",\"title_margin_top\":\"10px\",\"title_margin_bottom\":\"10px\",\"form_desc_size\":\"14px\",\"form_desc_color\":\"666666\",\"form_desc_margin_top\":\"10px\",\"form_desc_margin_bottom\":\"25px\",\"font\":\"\\\"Lucida Grande\\\",\\\"Lucida Sans Unicode\\\",Tahoma,sans-serif\",\"font_size\":\"14px\",\"label_color\":\"444444\",\"weight\":\"bold\",\"position\":\"none\",\"align\":\"left\",\"width\":\"150px\",\"required_color\":\"B94A48\",\"required_weight\":\"bold\",\"label_padding\":\"0 0 3px 0\",\"description_font_size\":\"12px\",\"description_color\":\"666666\",\"description_weight\":\"normal\",\"description_style\":\"normal\",\"description_align\":\"left\",\"field_font_size\":\"14px\",\"field_height\":\"32px\",\"line_height\":\"normal\",\"field_width\":\"100%\",\"auto_width\":\"\",\"field_pad\":\"6px 10px\",\"field_margin\":\"20px\",\"field_weight\":\"normal\",\"text_color\":\"555555\",\"border_color\":\"cccccc\",\"field_border_width\":\"1px\",\"field_border_style\":\"solid\",\"bg_color\":\"ffffff\",\"remove_box_shadow\":\"\",\"bg_color_active\":\"ffffff\",\"border_color_active\":\"66afe9\",\"remove_box_shadow_active\":\"\",\"text_color_error\":\"444444\",\"bg_color_error\":\"ffffff\",\"border_color_error\":\"B94A48\",\"border_width_error\":\"1px\",\"border_style_error\":\"solid\",\"bg_color_disabled\":\"ffffff\",\"border_color_disabled\":\"E5E5E5\",\"text_color_disabled\":\"A1A1A1\",\"radio_align\":\"block\",\"check_align\":\"block\",\"check_font_size\":\"13px\",\"check_label_color\":\"444444\",\"check_weight\":\"normal\",\"section_font_size\":\"18px\",\"section_color\":\"444444\",\"section_weight\":\"bold\",\"section_pad\":\"15px 0 3px 0\",\"section_mar_top\":\"15px\",\"section_mar_bottom\":\"12px\",\"section_bg_color\":\"\",\"section_border_color\":\"e8e8e8\",\"section_border_width\":\"2px\",\"section_border_style\":\"solid\",\"section_border_loc\":\"-top\",\"collapse_icon\":\"6\",\"collapse_pos\":\"after\",\"repeat_icon\":\"1\",\"submit_style\":\"\",\"submit_font_size\":\"14px\",\"submit_width\":\"auto\",\"submit_height\":\"auto\",\"submit_bg_color\":\"ffffff\",\"submit_border_color\":\"cccccc\",\"submit_border_width\":\"1px\",\"submit_text_color\":\"444444\",\"submit_weight\":\"normal\",\"submit_border_radius\":\"4px\",\"submit_bg_img\":\"\",\"submit_margin\":\"10px\",\"submit_padding\":\"6px 11px\",\"submit_shadow_color\":\"eeeeee\",\"submit_hover_bg_color\":\"efefef\",\"submit_hover_color\":\"444444\",\"submit_hover_border_color\":\"cccccc\",\"submit_active_bg_color\":\"efefef\",\"submit_active_color\":\"444444\",\"submit_active_border_color\":\"cccccc\",\"border_radius\":\"4px\",\"error_bg\":\"F2DEDE\",\"error_border\":\"EBCCD1\",\"error_text\":\"B94A48\",\"error_font_size\":\"14px\",\"success_bg_color\":\"DFF0D8\",\"success_border_color\":\"D6E9C6\",\"success_text_color\":\"468847\",\"success_font_size\":\"14px\",\"important_style\":\"\",\"custom_css\":\"\"}", "Formidable Style", "", "publish", "closed", "closed", "", "formidable-style", "", "", "2016-02-29 22:01:54", "2016-02-29 09:01:54", "", "0", "http://www.infinitymarketing.co.nz/formidable-style/", "1", "frm_styles", "", "0");
INSERT INTO `wp_posts` VALUES("95", "0", "2015-04-06 17:18:12", "2015-04-06 17:18:12", "{\"email_to\":\"[admin_email]\",\"cc\":\"\",\"bcc\":\"\",\"reply_to\":\"\",\"from\":\"[sitename] <[admin_email]>\",\"email_subject\":\"\",\"email_message\":\"[default-message]\",\"event\":[\"create\"],\"conditions\":{\"send_stop\":\"send\",\"any_all\":\"any\"}}", "Email Notification", "email", "publish", "open", "open", "", "1_email_1", "", "", "2016-10-20 15:32:03", "2016-10-20 02:32:03", "", "0", "http://www.infinitymarketing.co.nz/1_email_1/", "1", "frm_form_actions", "", "0");
INSERT INTO `wp_posts` VALUES("96", "1", "2016-02-29 22:09:10", "2016-02-29 09:09:10", "[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_contact_form admin_label=\"Contact Form\" captcha=\"on\" email=\"contact@infinitymarketing.co.nz\" title=\"Contact us\" use_redirect=\"off\" success_message=\"Sent!\" input_border_radius=\"0\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_contact_field field_title=\"Name\" field_type=\"input\" field_id=\"Name\" required_mark=\"on\" fullwidth_field=\"off\" /][et_pb_contact_field field_title=\"Email Address\" field_type=\"email\" field_id=\"Email\" required_mark=\"on\" fullwidth_field=\"off\" /][et_pb_contact_field field_title=\"Message\" field_type=\"text\" field_id=\"Message\" required_mark=\"on\" /] [/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][/et_pb_row][/et_pb_section]", "CONTACT", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2016-02-29 22:09:10", "2016-02-29 09:09:10", "", "43", "http://www.infinitymarketing.co.nz/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("97", "1", "2016-02-29 22:40:25", "2016-02-29 09:40:25", "", "POSTS", "", "inherit", "closed", "closed", "", "41-revision-v1", "", "", "2016-02-29 22:40:25", "2016-02-29 09:40:25", "", "41", "http://www.infinitymarketing.co.nz/41-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("98", "1", "2016-02-29 22:41:54", "2016-02-29 09:41:54", "[et_pb_section admin_label=\"section\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Blog Title\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Blog</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_blog admin_label=\"Blog\" fullwidth=\"on\" show_thumbnail=\"on\" show_content=\"off\" show_more=\"on\" show_author=\"on\" show_date=\"on\" show_categories=\"on\" show_comments=\"on\" show_pagination=\"on\" offset_number=\"0\" use_overlay=\"off\" background_layout=\"light\" use_dropshadow=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blog][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"right\" area=\"sidebar-1\" background_layout=\"light\" remove_border=\"off\"] [/et_pb_sidebar][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" global_module=\"179\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"179\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"179\" admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-us/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\">Take the first step toward your new future</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "BLOG", "", "publish", "closed", "closed", "", "blog", "", "", "2016-03-30 12:01:00", "2016-03-29 23:01:00", "", "0", "http://www.infinitymarketing.co.nz/?page_id=98", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("99", "1", "2016-02-29 22:41:54", "2016-02-29 09:41:54", "[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" admin_label=\"Section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_blog admin_label=\"Blog\" fullwidth=\"on\" show_thumbnail=\"on\" show_content=\"off\" show_more=\"on\" show_author=\"on\" show_date=\"on\" show_categories=\"on\" show_comments=\"on\" show_pagination=\"on\" offset_number=\"0\" use_overlay=\"off\" background_layout=\"light\" use_dropshadow=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"right\" area=\"sidebar-1\" background_layout=\"light\" remove_border=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "BLOG", "", "inherit", "closed", "closed", "", "98-revision-v1", "", "", "2016-02-29 22:41:54", "2016-02-29 09:41:54", "", "98", "http://www.infinitymarketing.co.nz/98-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("100", "1", "2016-02-29 22:42:32", "2016-02-29 09:42:32", " ", "", "", "publish", "closed", "closed", "", "100", "", "", "2016-08-05 14:26:54", "2016-08-05 02:26:54", "", "0", "http://www.infinitymarketing.co.nz/?p=100", "9", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("102", "0", "2015-04-06 17:18:12", "2015-04-06 17:18:12", "{\"email_to\":\"[admin_email]\",\"cc\":\"\",\"bcc\":\"\",\"reply_to\":\"\",\"from\":\"[sitename] <[admin_email]>\",\"email_subject\":\"\",\"email_message\":\"[default-message]\",\"event\":[\"create\"],\"conditions\":{\"send_stop\":\"send\",\"any_all\":\"any\"},\"inc_user_info\":\"0\",\"plain_text\":\"0\"}", "Email Notification", "email", "publish", "open", "open", "", "1_email_1-2", "", "", "2015-04-06 17:18:12", "2015-04-06 17:18:12", "", "0", "http://www.infinitymarketing.co.nz/1_email_1/", "3", "frm_form_actions", "", "0");
INSERT INTO `wp_posts` VALUES("103", "0", "2015-04-06 17:18:12", "2015-04-06 17:18:12", "{\"email_to\":\"[admin_email]\",\"cc\":\"\",\"bcc\":\"\",\"reply_to\":\"\",\"from\":\"[sitename] <[admin_email]>\",\"email_subject\":\"\",\"email_message\":\"[default-message]\",\"event\":[\"create\"],\"conditions\":{\"send_stop\":\"send\",\"any_all\":\"any\"},\"inc_user_info\":\"0\",\"plain_text\":\"0\"}", "Email Notification", "email", "publish", "open", "open", "", "1_email_1-3", "", "", "2015-04-06 17:18:12", "2015-04-06 17:18:12", "", "0", "http://www.infinitymarketing.co.nz/1_email_1/", "4", "frm_form_actions", "", "0");
INSERT INTO `wp_posts` VALUES("146", "1", "2016-03-10 12:17:31", "2016-03-09 23:17:31", "About Infinity Marketing", "About Infinity Marketing", "", "inherit", "open", "closed", "", "candice-about_round", "", "", "2016-03-10 12:41:17", "2016-03-09 23:41:17", "", "37", "http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice-About_round.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("107", "1", "2016-03-01 22:15:22", "2016-03-01 09:15:22", "[et_pb_section admin_label=\"Impact Background\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Impact Text\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/discover.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_signup admin_label=\"Email Optin\" provider=\"mailchimp\" mailchimp_list=\"4419f44e8e\" aweber_list=\"none\" use_background_color=\"on\" background_color=\"#0ec0de\" background_layout=\"dark\" text_orientation=\"left\" use_focus_border_color=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" title=\"Get marketing tips to your inbox\" button_text=\"Sign me up!\" header_font=\"Open Sans||||\" header_font_size=\"22\" body_font=\"Open Sans||||\"] [/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\">DREAMING OF MARKETING THAT WORKS?</h2>\r\n<p style=\"text-align: center;\">We can make that happen for your small business through marketing that suits your business and the stage that it is at. We will work together to gain a thorough understanding of who your customers are and where they are to deliver the best marketing for your small business.</p>\r\n<p style=\"text-align: center;\">You might know exactly what your business needs to get the extra punch it needs, and simply just need help with implementation of your marketing plan, or you might need a guiding hand in what needs to be done for your business marketing. We can help! We can help take your business to the next level where the possibilities are infinite.</p>\r\n<p style=\"text-align: center;\"><a href=\"http://www.infinitymarketing.co.nz/work-with-me/\">Let\'s discover how to make that happen for your business</a></p>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#b3babf\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Connect CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Connect.png\" alt=\"Connect on Facebook\" show_in_lightbox=\"off\" url=\"http://www.facebook.com/infinitymarketing.co.nz\" url_new_window=\"on\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Services CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Services.png\" alt=\"View Services\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/work-with-me/\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Contact CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Contact.png\" alt=\"Contact us\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/contact/\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice.png\" alt=\"Candice Venter\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"About Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>About Candice</h2>\r\nCandice has has a passion for marketing for small businesses\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-me/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\">Discover the services we provide</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "HOME", "", "inherit", "closed", "closed", "", "37-revision-v1", "", "", "2016-03-01 22:15:22", "2016-03-01 09:15:22", "", "37", "http://www.infinitymarketing.co.nz/37-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("108", "1", "2016-03-01 22:21:14", "2016-03-01 09:21:14", "[et_pb_section admin_label=\"Impact Background\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Impact Text\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/discover.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_signup admin_label=\"Email Optin\" provider=\"mailchimp\" mailchimp_list=\"4419f44e8e\" aweber_list=\"none\" use_background_color=\"on\" background_color=\"#0ec0de\" background_layout=\"dark\" text_orientation=\"left\" use_focus_border_color=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" title=\"Get marketing tips to your inbox\" button_text=\"Sign me up!\" header_font=\"Open Sans||||\" header_font_size=\"22\" body_font=\"Open Sans||||\"] [/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\">DREAMING OF MARKETING THAT WORKS?</h2>\r\n<p style=\"text-align: center;\">We can make that happen for your small business through marketing that suits your business and the stage that it is at. We will work together to gain a thorough understanding of who your customers are and where they are to deliver the best marketing for your small business.</p>\r\n<p style=\"text-align: center;\">You might know exactly what your business needs to get the extra punch it needs, and simply just need help with implementation of your marketing plan, or you might need a guiding hand in what needs to be done for your business marketing. We can help! We can help take your business to the next level where the possibilities are infinite.</p>\r\n<p style=\"text-align: center;\"><a href=\"http://www.infinitymarketing.co.nz/work-with-me/\">Let\'s discover how to make that happen for your business</a></p>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#b3babf\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Connect CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Connect.png\" alt=\"Connect on Facebook\" show_in_lightbox=\"off\" url=\"http://www.facebook.com/infinitymarketing.co.nz\" url_new_window=\"on\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Services CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Services.png\" alt=\"View Services\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/work-with-me/\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Contact CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Contact.png\" alt=\"Contact us\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/contact/\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice.png\" alt=\"Candice Venter\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"About Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>About Candice</h2>\r\nCandice has has a passion for marketing for small businesses, having worked in both start up and large corporations, she has seen and done it all. She has the drive and\r\n\r\nAn expert in understanding who your customers are, understanding where they are and delivering messages that inspire action, Candice thrives on creating marketing that works.\r\n\r\nAbove all, she is passionate to see your business succeed.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-me/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\">Discover the services we provide</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "HOME", "", "inherit", "closed", "closed", "", "37-revision-v1", "", "", "2016-03-01 22:21:14", "2016-03-01 09:21:14", "", "37", "http://www.infinitymarketing.co.nz/37-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("109", "1", "2016-03-01 22:23:49", "2016-03-01 09:23:49", "[et_pb_section admin_label=\"Impact Background\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Impact Text\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/discover.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_signup admin_label=\"Email Optin\" provider=\"mailchimp\" mailchimp_list=\"4419f44e8e\" aweber_list=\"none\" use_background_color=\"on\" background_color=\"#0ec0de\" background_layout=\"dark\" text_orientation=\"left\" use_focus_border_color=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" title=\"Get marketing tips to your inbox\" button_text=\"Sign me up!\" header_font=\"Open Sans||||\" header_font_size=\"22\" body_font=\"Open Sans||||\"] [/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\">DREAMING OF MARKETING THAT WORKS?</h2>\r\n<p style=\"text-align: center;\">We can make that happen for your small business through marketing that suits your business and the stage that it is at. We will work together to gain a thorough understanding of who your customers are and where they are to deliver the best marketing for your small business.</p>\r\n<p style=\"text-align: center;\">You might know exactly what your business needs to get the extra punch it needs, and simply just need help with implementation of your marketing plan, or you might need a guiding hand in what needs to be done for your business marketing. We can help! We can help take your business to the next level where the possibilities are infinite.</p>\r\n<p style=\"text-align: center;\"><a href=\"http://www.infinitymarketing.co.nz/work-with-me/\">Let\'s discover how to make that happen for your business</a></p>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#b3babf\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Connect CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Connect.png\" alt=\"Connect on Facebook\" show_in_lightbox=\"off\" url=\"http://www.facebook.com/infinitymarketing.co.nz\" url_new_window=\"on\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Services CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Services.png\" alt=\"View Services\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/work-with-me/\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Contact CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Contact.png\" alt=\"Contact us\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/contact/\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice.png\" alt=\"Candice Venter\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"About Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>About Candice</h2>\r\nCandice has has a passion for marketing for small businesses, having worked in both start up and large corporations, she has seen and done it all. She has the drive and\r\n\r\nAn expert in understanding who your customers are, understanding where they are and delivering messages that inspire action, Candice thrives on creating marketing that works.\r\n\r\nAbove all, she is passionate to see your business succeed.\r\n\r\n[/et_pb_text][et_pb_button admin_label=\"Read More Button\" button_url=\"http://www.infinitymarketing.co.nz/about/\" url_new_window=\"off\" button_text=\"Read More\" button_alignment=\"left\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#f9f9f9\" button_bg_color=\"#0ec0de\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon=\"%%28%%\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-me/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\">Discover the services we provide</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "HOME", "", "inherit", "closed", "closed", "", "37-revision-v1", "", "", "2016-03-01 22:23:49", "2016-03-01 09:23:49", "", "37", "http://www.infinitymarketing.co.nz/37-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("112", "1", "2016-03-01 22:40:25", "2016-03-01 09:40:25", "[et_pb_section admin_label=\"Impact Background\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background-1.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Impact Text\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/discover.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_signup admin_label=\"Email Optin\" provider=\"mailchimp\" mailchimp_list=\"4419f44e8e\" aweber_list=\"none\" use_background_color=\"on\" background_color=\"#0ec0de\" background_layout=\"dark\" text_orientation=\"left\" use_focus_border_color=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" title=\"Get marketing tips to your inbox\" button_text=\"Sign me up!\" header_font=\"Open Sans||||\" header_font_size=\"22\" body_font=\"Open Sans||||\"] [/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\">DREAMING OF MARKETING THAT WORKS?</h2>\r\n<p style=\"text-align: center;\">We can make that happen for your small business through marketing that suits your business and the stage that it is at. We will work together to gain a thorough understanding of who your customers are and where they are to deliver the best marketing for your small business.</p>\r\n<p style=\"text-align: center;\">You might know exactly what your business needs to get the extra punch it needs, and simply just need help with implementation of your marketing plan, or you might need a guiding hand in what needs to be done for your business marketing. We can help! We can help take your business to the next level where the possibilities are infinite.</p>\r\n<p style=\"text-align: center;\"><a href=\"http://www.infinitymarketing.co.nz/work-with-me/\">Let\'s discover how to make that happen for your business</a></p>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#b3babf\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Connect CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Connect.png\" alt=\"Connect on Facebook\" show_in_lightbox=\"off\" url=\"http://www.facebook.com/infinitymarketing.co.nz\" url_new_window=\"on\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Services CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Services.png\" alt=\"View Services\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/work-with-me/\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Contact CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Contact.png\" alt=\"Contact us\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/contact/\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice.png\" alt=\"Candice Venter\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"About Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>About Candice</h2>\r\nCandice has has a passion for marketing for small businesses, having worked in both start up and large corporations, she has seen and done it all. She has the drive and\r\n\r\nAn expert in understanding who your customers are, understanding where they are and delivering messages that inspire action, Candice thrives on creating marketing that works.\r\n\r\nAbove all, she is passionate to see your business succeed.\r\n\r\n[/et_pb_text][et_pb_button admin_label=\"Read More Button\" button_url=\"http://www.infinitymarketing.co.nz/about/\" url_new_window=\"off\" button_text=\"Read More\" button_alignment=\"left\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#f9f9f9\" button_bg_color=\"#0ec0de\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon=\"%%28%%\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-me/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\">Discover the services we provide</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "HOME", "", "inherit", "closed", "closed", "", "37-revision-v1", "", "", "2016-03-01 22:40:25", "2016-03-01 09:40:25", "", "37", "http://www.infinitymarketing.co.nz/37-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("110", "1", "2016-03-01 22:27:50", "2016-03-01 09:27:50", "[et_pb_section admin_label=\"Impact Background\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Impact Text\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/discover.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_signup admin_label=\"Email Optin\" provider=\"mailchimp\" mailchimp_list=\"4419f44e8e\" aweber_list=\"none\" use_background_color=\"on\" background_color=\"#0ec0de\" background_layout=\"dark\" text_orientation=\"left\" use_focus_border_color=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" title=\"Get marketing tips to your inbox\" button_text=\"Sign me up!\" header_font=\"Open Sans||||\" header_font_size=\"22\" body_font=\"Open Sans||||\"] [/et_pb_signup][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_code admin_label=\"Bloom Email Optin\"][et_bloom_inline optin_id=\"optin_1\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\">DREAMING OF MARKETING THAT WORKS?</h2>\r\n<p style=\"text-align: center;\">We can make that happen for your small business through marketing that suits your business and the stage that it is at. We will work together to gain a thorough understanding of who your customers are and where they are to deliver the best marketing for your small business.</p>\r\n<p style=\"text-align: center;\">You might know exactly what your business needs to get the extra punch it needs, and simply just need help with implementation of your marketing plan, or you might need a guiding hand in what needs to be done for your business marketing. We can help! We can help take your business to the next level where the possibilities are infinite.</p>\r\n<p style=\"text-align: center;\"><a href=\"http://www.infinitymarketing.co.nz/work-with-me/\">Let\'s discover how to make that happen for your business</a></p>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#b3babf\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Connect CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Connect.png\" alt=\"Connect on Facebook\" show_in_lightbox=\"off\" url=\"http://www.facebook.com/infinitymarketing.co.nz\" url_new_window=\"on\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Services CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Services.png\" alt=\"View Services\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/work-with-me/\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Contact CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Contact.png\" alt=\"Contact us\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/contact/\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice.png\" alt=\"Candice Venter\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"About Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>About Candice</h2>\r\nCandice has has a passion for marketing for small businesses, having worked in both start up and large corporations, she has seen and done it all. She has the drive and\r\n\r\nAn expert in understanding who your customers are, understanding where they are and delivering messages that inspire action, Candice thrives on creating marketing that works.\r\n\r\nAbove all, she is passionate to see your business succeed.\r\n\r\n[/et_pb_text][et_pb_button admin_label=\"Read More Button\" button_url=\"http://www.infinitymarketing.co.nz/about/\" url_new_window=\"off\" button_text=\"Read More\" button_alignment=\"left\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#f9f9f9\" button_bg_color=\"#0ec0de\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon=\"%%28%%\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-me/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\">Discover the services we provide</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "HOME", "", "inherit", "closed", "closed", "", "37-revision-v1", "", "", "2016-03-01 22:27:50", "2016-03-01 09:27:50", "", "37", "http://www.infinitymarketing.co.nz/37-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("113", "1", "2016-03-01 22:48:59", "2016-03-01 09:48:59", "Discover the infinite power of the right marketing for your business", "Discover the power of marketing", "", "inherit", "open", "closed", "", "discover-v2", "", "", "2016-03-01 22:49:17", "2016-03-01 09:49:17", "", "37", "http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/discover-v2.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("114", "1", "2016-03-01 22:49:25", "2016-03-01 09:49:25", "[et_pb_section admin_label=\"Impact Background\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background-1.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Impact Text\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/discover-v2.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_signup admin_label=\"Email Optin\" provider=\"mailchimp\" mailchimp_list=\"4419f44e8e\" aweber_list=\"none\" use_background_color=\"on\" background_color=\"#0ec0de\" background_layout=\"dark\" text_orientation=\"left\" use_focus_border_color=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" title=\"Get marketing tips to your inbox\" button_text=\"Sign me up!\" header_font=\"Open Sans||||\" header_font_size=\"22\" body_font=\"Open Sans||||\"] [/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\">DREAMING OF MARKETING THAT WORKS?</h2>\r\n<p style=\"text-align: center;\">We can make that happen for your small business through marketing that suits your business and the stage that it is at. We will work together to gain a thorough understanding of who your customers are and where they are to deliver the best marketing for your small business.</p>\r\n<p style=\"text-align: center;\">You might know exactly what your business needs to get the extra punch it needs, and simply just need help with implementation of your marketing plan, or you might need a guiding hand in what needs to be done for your business marketing. We can help! We can help take your business to the next level where the possibilities are infinite.</p>\r\n<p style=\"text-align: center;\"><a href=\"http://www.infinitymarketing.co.nz/work-with-me/\">Let\'s discover how to make that happen for your business</a></p>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#b3babf\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Connect CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Connect.png\" alt=\"Connect on Facebook\" show_in_lightbox=\"off\" url=\"http://www.facebook.com/infinitymarketing.co.nz\" url_new_window=\"on\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Services CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Services.png\" alt=\"View Services\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/work-with-me/\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Contact CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Contact.png\" alt=\"Contact us\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/contact/\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice.png\" alt=\"Candice Venter\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"About Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>About Candice</h2>\r\nCandice has has a passion for marketing for small businesses, having worked in both start up and large corporations, she has seen and done it all. She has the drive and\r\n\r\nAn expert in understanding who your customers are, understanding where they are and delivering messages that inspire action, Candice thrives on creating marketing that works.\r\n\r\nAbove all, she is passionate to see your business succeed.\r\n\r\n[/et_pb_text][et_pb_button admin_label=\"Read More Button\" button_url=\"http://www.infinitymarketing.co.nz/about/\" url_new_window=\"off\" button_text=\"Read More\" button_alignment=\"left\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#f9f9f9\" button_bg_color=\"#0ec0de\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon=\"%%28%%\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-me/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\">Discover the services we provide</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "HOME", "", "inherit", "closed", "closed", "", "37-revision-v1", "", "", "2016-03-01 22:49:25", "2016-03-01 09:49:25", "", "37", "http://www.infinitymarketing.co.nz/37-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("116", "1", "2016-03-01 23:17:49", "2016-03-01 10:17:49", "[et_pb_section admin_label=\"Impact Background\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background-1.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Impact Text\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/discover-v2.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_signup admin_label=\"Email Optin\" provider=\"mailchimp\" mailchimp_list=\"4419f44e8e\" aweber_list=\"none\" use_background_color=\"on\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"left\" use_focus_border_color=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" title=\"Get marketing tips to your inbox\" button_text=\"Sign me up!\" header_font=\"Open Sans||||\" header_font_size=\"22\" body_font=\"Open Sans||||\"] [/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\">DREAMING OF MARKETING THAT WORKS?</h2>\r\n<p style=\"text-align: center;\">We can make that happen for your small business through marketing that suits your business and the stage that it is at. We will work together to gain a thorough understanding of who your customers are and where they are to deliver the best marketing for your small business.</p>\r\n<p style=\"text-align: center;\">You might know exactly what your business needs to get the extra punch it needs, and simply just need help with implementation of your marketing plan, or you might need a guiding hand in what needs to be done for your business marketing. We can help! We can help take your business to the next level where the possibilities are infinite.</p>\r\n<p style=\"text-align: center;\"><a href=\"http://www.infinitymarketing.co.nz/work-with-me/\">Let\'s discover how to make that happen for your business</a></p>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#b3babf\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Connect CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Connect.png\" alt=\"Connect on Facebook\" show_in_lightbox=\"off\" url=\"http://www.facebook.com/infinitymarketing.co.nz\" url_new_window=\"on\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Services CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Services.png\" alt=\"View Services\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/work-with-me/\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Contact CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Contact.png\" alt=\"Contact us\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/contact/\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice.png\" alt=\"Candice Venter\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"About Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>About Candice</h2>\r\nCandice has has a passion for marketing for small businesses, having worked in both start up and large corporations, she has seen and done it all. She has the drive and\r\n\r\nAn expert in understanding who your customers are, understanding where they are and delivering messages that inspire action, Candice thrives on creating marketing that works.\r\n\r\nAbove all, she is passionate to see your business succeed.\r\n\r\n[/et_pb_text][et_pb_button admin_label=\"Read More Button\" button_url=\"http://www.infinitymarketing.co.nz/about/\" url_new_window=\"off\" button_text=\"Read More\" button_alignment=\"left\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#f9f9f9\" button_bg_color=\"#009edb\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon=\"%%28%%\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-me/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\">Discover the services we provide</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "HOME", "", "inherit", "closed", "closed", "", "37-revision-v1", "", "", "2016-03-01 23:17:49", "2016-03-01 10:17:49", "", "37", "http://www.infinitymarketing.co.nz/37-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("117", "1", "2016-03-01 23:25:09", "2016-03-01 10:25:09", "", "Connect", "", "inherit", "open", "closed", "", "connect-2", "", "", "2016-03-01 23:25:09", "2016-03-01 10:25:09", "", "37", "http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Connect-1.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("118", "1", "2016-03-01 23:25:13", "2016-03-01 10:25:13", "", "Contact", "", "inherit", "open", "closed", "", "contact-3", "", "", "2016-03-01 23:25:13", "2016-03-01 10:25:13", "", "37", "http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Contact-1.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("119", "1", "2016-03-01 23:25:15", "2016-03-01 10:25:15", "", "Services", "", "inherit", "open", "closed", "", "services-2", "", "", "2016-03-01 23:25:15", "2016-03-01 10:25:15", "", "37", "http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Services-1.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("120", "1", "2016-03-01 23:25:49", "2016-03-01 10:25:49", "[et_pb_section admin_label=\"Impact Background\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background-1.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Impact Text\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/discover-v2.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_signup admin_label=\"Email Optin\" provider=\"mailchimp\" mailchimp_list=\"4419f44e8e\" aweber_list=\"none\" use_background_color=\"on\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"left\" use_focus_border_color=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" title=\"Get marketing tips to your inbox\" button_text=\"Sign me up!\" header_font=\"Open Sans||||\" header_font_size=\"22\" body_font=\"Open Sans||||\"] [/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\">DREAMING OF MARKETING THAT WORKS?</h2>\r\n<p style=\"text-align: center;\">We can make that happen for your small business through marketing that suits your business and the stage that it is at. We will work together to gain a thorough understanding of who your customers are and where they are to deliver the best marketing for your small business.</p>\r\n<p style=\"text-align: center;\">You might know exactly what your business needs to get the extra punch it needs, and simply just need help with implementation of your marketing plan, or you might need a guiding hand in what needs to be done for your business marketing. We can help! We can help take your business to the next level where the possibilities are infinite.</p>\r\n<p style=\"text-align: center;\"><a href=\"http://www.infinitymarketing.co.nz/work-with-me/\">Let\'s discover how to make that happen for your business</a></p>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#b3babf\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Connect CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Connect-1.png\" alt=\"Connect on Facebook\" show_in_lightbox=\"off\" url=\"http://www.facebook.com/infinitymarketing.co.nz\" url_new_window=\"on\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Services CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Services-1.png\" alt=\"View Services\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/work-with-me/\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Contact CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Contact-1.png\" alt=\"Contact us\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/contact/\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice.png\" alt=\"Candice Venter\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"About Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>About Candice</h2>\r\nCandice has has a passion for marketing for small businesses, having worked in both start up and large corporations, she has seen and done it all. She has the drive and\r\n\r\nAn expert in understanding who your customers are, understanding where they are and delivering messages that inspire action, Candice thrives on creating marketing that works.\r\n\r\nAbove all, she is passionate to see your business succeed.\r\n\r\n[/et_pb_text][et_pb_button admin_label=\"Read More Button\" button_url=\"http://www.infinitymarketing.co.nz/about/\" url_new_window=\"off\" button_text=\"Read More\" button_alignment=\"left\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#f9f9f9\" button_bg_color=\"#009edb\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon=\"%%28%%\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-me/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\">Discover the services we provide</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "HOME", "", "inherit", "closed", "closed", "", "37-revision-v1", "", "", "2016-03-01 23:25:49", "2016-03-01 10:25:49", "", "37", "http://www.infinitymarketing.co.nz/37-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("121", "1", "2016-11-30 19:28:03", "2016-11-30 06:28:03", "[et_pb_section admin_label=\"section\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"About Infinity Marketing Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n<h1 style=\"text-align: center;\">About Infinity Marketing</h1>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hello I\'m Candice Venter Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n<h2 style=\"text-align: center;\"><strong>Hi, I\'m Candice Venter</strong></h2>\n<h2 style=\"text-align: center;\"></h2>\n<h2 style=\"text-align: center;\"><em>Your outsourced marketing expert, </em><em>here to help you\nwith marketing your small business</em>\n<em> with marketing that works!</em></h2>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\nRight now, I\'m sure you\'re feeling like you are trying to juggle it all, to know every aspect of how to do everything for your business, and not sure how to get the results you need for your business to grow (or even survive!) and overall just frustrated and bombarded!\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n<h3><strong>I get it, balancing everything is HARD and you quite simply can\'t be the expert at everything. </strong></h3>\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\nI\'m here to show you that there is help and a light at the end of the tunnel where your business can succeed.\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\nWhy I love helping small businesses deliver outstanding marketing and see their businesses grow as a result, is because I am inspired by what amazing people and talents there are in our community. My passion is helping other people succeed, and I believe that everyone <strong>deserves</strong> to succeed.\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\nI want this for you! I want to share my skills as a qualified and experienced marketing professional, to help your business grow and succeed.\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/About-Candice-.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Get Personal Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#888e8f\" border_style=\"outset\" border_width=\"2px\"]\n<h2 style=\"text-align: justify;\">Let\'s get personal</h2>\n[/et_pb_text][et_pb_text admin_label=\"Get Personal Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\nOriginally from South Africa, I have now lived over half my life in Auckland, New Zealand. That means I have a good mix of being able to tell it straight, with a good dose of kiwi ingenuity. I studied a Bachelor of Business and Information Management, with a second major in Marketing at the University of Auckland and have gained my professional experience in both global corporations and a great kiwi start-up.\n\nFamily is my everything, this includes my 15 year old miniature sausage dog, Dante. It\'s for them, that I do what I do.\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Network NZ Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/11/NNZ-Endorsed.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Network NZ Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n<h2>Infinity Marketing is proud to be a Network NZ Endorsed Supplier and Marketing Expert</h2>\nTo find out more about Network NZ, <a href=\"http://www.networknz.nz\">click here to visit www.networknz.nz</a>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Venus Network Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n<h2>Infinity Marketing is proud to be a member of Venus Network</h2>\nTo find out more about Venus Network, <a href=\"http://www.venusnetwork.co.nz\">click here to visit www.venusnetwork.co.nz</a>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Venus Network Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Venus-Logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" global_module=\"179\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"179\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"179\" admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-us/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\n<p style=\"text-align: center;\">Take the first step toward your new future</p>\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "ABOUT", "", "inherit", "closed", "closed", "", "2-autosave-v1", "", "", "2016-11-30 19:28:03", "2016-11-30 06:28:03", "", "2", "http://www.infinitymarketing.co.nz/2-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("123", "1", "2016-03-01 23:43:48", "2016-03-01 10:43:48", "[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">About Infinity Marketing</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]", "ABOUT", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2016-03-01 23:43:48", "2016-03-01 10:43:48", "", "2", "http://www.infinitymarketing.co.nz/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("122", "1", "2016-03-01 23:41:37", "2016-03-01 10:41:37", "[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\"]\r\n\r\nThis is an example of a WordPress page, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many pages like this one or sub-pages as you like and manage all of your content inside of WordPress.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" admin_label=\"Section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" admin_label=\"Section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "ABOUT", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2016-03-01 23:41:37", "2016-03-01 10:41:37", "", "2", "http://www.infinitymarketing.co.nz/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("124", "1", "2016-03-01 23:44:30", "2016-03-01 10:44:30", "[et_pb_section admin_label=\"section\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background-1.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">About Infinity Marketing</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]", "ABOUT", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2016-03-01 23:44:30", "2016-03-01 10:44:30", "", "2", "http://www.infinitymarketing.co.nz/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("126", "1", "2016-03-10 14:28:21", "2016-03-10 01:28:21", "[et_pb_section fullwidth=\"off\" specialty=\"off\" admin_label=\"Section\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background-1.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Contact Title\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n<h1 style=\"text-align: center;\">Contact</h1>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n<h2>Contact</h2>\nInfinity Marketing is based in Howick, Auckland; New Zealand\n\n<span class=\"phone\"><strong>Phone:</strong> 021 159 1215\n</span><span class=\"email\"><strong>E-mail: </strong>candice@infinitymarketing.co.nz</span>\n\nOr complete the form below to email us:\n\n[/et_pb_text][et_pb_contact_form admin_label=\"Contact Form\" captcha=\"on\" email=\"contact@infinitymarketing.co.nz\" use_redirect=\"off\" success_message=\"Sent!\" input_border_radius=\"0\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_contact_field field_title=\"Name\" field_type=\"input\" field_id=\"Name\" required_mark=\"on\" fullwidth_field=\"off\" /][et_pb_contact_field field_title=\"Email Address\" field_type=\"email\" field_id=\"Email\" required_mark=\"on\" fullwidth_field=\"off\" /][et_pb_contact_field field_title=\"Message\" field_type=\"text\" field_id=\"Message\" required_mark=\"on\" /] [/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][/et_pb_row][/et_pb_section]", "CONTACT", "", "inherit", "closed", "closed", "", "43-autosave-v1", "", "", "2016-03-10 14:28:21", "2016-03-10 01:28:21", "", "43", "http://www.infinitymarketing.co.nz/43-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("127", "1", "2016-03-07 10:30:50", "2016-03-06 21:30:50", "[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_contact_form admin_label=\"Contact Form\" captcha=\"on\" email=\"contact@infinitymarketing.co.nz\" title=\"Contact\" use_redirect=\"off\" success_message=\"Sent!\" input_border_radius=\"0\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_contact_field field_title=\"Name\" field_type=\"input\" field_id=\"Name\" required_mark=\"on\" fullwidth_field=\"off\" /][et_pb_contact_field field_title=\"Email Address\" field_type=\"email\" field_id=\"Email\" required_mark=\"on\" fullwidth_field=\"off\" /][et_pb_contact_field field_title=\"Message\" field_type=\"text\" field_id=\"Message\" required_mark=\"on\" /] [/et_pb_contact_form][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOr call 021 159 1215\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][/et_pb_row][/et_pb_section]", "CONTACT", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2016-03-07 10:30:50", "2016-03-06 21:30:50", "", "43", "http://www.infinitymarketing.co.nz/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("128", "1", "2016-03-07 10:32:54", "2016-03-06 21:32:54", "[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>Contact</h2>\r\nPhone: 021 159 1215\r\n\r\nOr complete the form below to email us\r\n\r\n[/et_pb_text][et_pb_contact_form admin_label=\"Contact Form\" captcha=\"on\" email=\"contact@infinitymarketing.co.nz\" use_redirect=\"off\" success_message=\"Sent!\" input_border_radius=\"0\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_contact_field field_title=\"Name\" field_type=\"input\" field_id=\"Name\" required_mark=\"on\" fullwidth_field=\"off\" /][et_pb_contact_field field_title=\"Email Address\" field_type=\"email\" field_id=\"Email\" required_mark=\"on\" fullwidth_field=\"off\" /][et_pb_contact_field field_title=\"Message\" field_type=\"text\" field_id=\"Message\" required_mark=\"on\" /] [/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][/et_pb_row][/et_pb_section]", "CONTACT", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2016-03-07 10:32:54", "2016-03-06 21:32:54", "", "43", "http://www.infinitymarketing.co.nz/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("129", "1", "2016-03-07 10:36:12", "2016-03-06 21:36:12", "[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>Contact</h2>\r\nPhone: 021 159 1215\r\n\r\nOr complete the form below to email us:\r\n\r\n[/et_pb_text][et_pb_contact_form admin_label=\"Contact Form\" captcha=\"on\" email=\"contact@infinitymarketing.co.nz\" use_redirect=\"off\" success_message=\"Sent!\" input_border_radius=\"0\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_contact_field field_title=\"Name\" field_type=\"input\" field_id=\"Name\" required_mark=\"on\" fullwidth_field=\"off\" /][et_pb_contact_field field_title=\"Email Address\" field_type=\"email\" field_id=\"Email\" required_mark=\"on\" fullwidth_field=\"off\" /][et_pb_contact_field field_title=\"Message\" field_type=\"text\" field_id=\"Message\" required_mark=\"on\" /] [/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][/et_pb_row][/et_pb_section]", "CONTACT", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2016-03-07 10:36:12", "2016-03-06 21:36:12", "", "43", "http://www.infinitymarketing.co.nz/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("130", "1", "2016-04-29 17:07:19", "2016-04-29 05:07:19", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Us Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n<h1 style=\"text-align: center;\">Work With Us</h1>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Outsourced Marketing Department Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n<h2 style=\"text-align: center;\">Infinity Marketing is your outsourced marketing department, here to help you with marketing that works!</h2>\n[/et_pb_text][et_pb_text admin_label=\"Overview Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n<p style=\"text-align: left;\">We offer a <strong>range of marketing services</strong> for your small business. Whether<strong> you know what you want</strong> and just <strong>don\'t have time to implement</strong>, or if you <strong>need someone to take control</strong> to make it happen for you, <strong>we can help.</strong></p>\n<p style=\"text-align: left;\">We offer great <strong>ongoing monthly packages,</strong> which are <strong>fully customisable</strong> to suit your business needs; and <strong>one-off services.</strong></p>\nWe can help you with\n<ul>\n	<li>Setting your <strong>marketing goals and strategy</strong> in line with your business goals,</li>\n	<li>Developing a <strong>marketing plan,</strong></li>\n	<li>Being your marketing “<strong>accountability buddy</strong>”, making sure that your marketing stays on track, with you every step of the way,</li>\n	<li>Or <strong>implementing your marketing</strong> if you are sick of trying to juggle and be an expert at it all.</li>\n</ul>\nEverything we do is <strong>customisable to suit your businesses individuality</strong>, and <strong>quotes are free,</strong> so please<a href=\"http://www.infinitymarketing.co.nz/contact/\"><strong> get in touch with us today to discuss your requirements.</strong> </a>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"We Provide Text\" global_parent=\"414\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n<h2>We provide the following services</h2>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Coaching Blurb\" global_parent=\"414\" title=\"Coaching\" url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\nOne on One coaching and consulting services, either as a one-off service or on an on-going basis. Helping you get your marketing on track, and stay on track.\n\n[/et_pb_blurb][et_pb_button admin_label=\"See More Button\" button_url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" button_text=\"See more\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Marketing Services Blurb\" global_parent=\"414\" title=\"Marketing Services\" url=\"www.infinitymarketing.co.nz/marketing-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n<p style=\"text-align: center;\">Ongoing Marketing Services ensures your marketing happens like clock-work. The wheels keep churning, and your marketing keeps working for you.</p>\n[/et_pb_blurb][et_pb_button admin_label=\"See More Button\" button_url=\"www.infinitymarketing.co.nz/marketing-services\" url_new_window=\"off\" button_text=\"See more\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Projects Blurb\" global_parent=\"397\" title=\"Projects\" url=\"www.infinitymarketing.co.nz/projects\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%174%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\nOne off marketing projects, such as brochures, website development, one off campaign plans, and much more. We can support you for a one off marketing project.\n\n[/et_pb_blurb][et_pb_button admin_label=\"See More Button\" button_url=\"www.infinitymarketing.co.nz/projects\" url_new_window=\"off\" button_text=\"See more\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Other Services Blurb\" global_parent=\"414\" title=\"Other Services\" url=\"www.infinitymarketing.co.nz/other-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%171%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\nWe aim to provide all your marketing needs in one place, and work with specialists in order to do this. No need to find alternative suppliers, we can help you.\n\n[/et_pb_blurb][et_pb_button admin_label=\"See More Button\" button_url=\"www.infinitymarketing.co.nz/other-services\" url_new_window=\"off\" button_text=\"See more\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"259\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"259\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"259\" admin_label=\"Call To Action - Contact\" title=\"Ready to take action?\" button_url=\"http://www.infinitymarketing.co.nz/contact/\" url_new_window=\"off\" button_text=\"Click here to contact us now\" use_background_color=\"off\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\n\nYour new future is waiting\n\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "WORK WITH US", "", "inherit", "closed", "closed", "", "39-autosave-v1", "", "", "2016-04-29 17:07:19", "2016-04-29 05:07:19", "", "39", "http://www.infinitymarketing.co.nz/39-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("131", "1", "2016-03-07 10:43:35", "2016-03-06 21:43:35", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background-1.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWork With Me\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" admin_label=\"Section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\"] [et_pb_pricing_table featured=\"off\" title=\"Services\" currency=\"$\" per=\"month\" sum=\"1500\" button_text=\"Select\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"] [/et_pb_pricing_table] [/et_pb_pricing_tables][/et_pb_column][/et_pb_row][/et_pb_section]", "WORK WITH ME", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2016-03-07 10:43:35", "2016-03-06 21:43:35", "", "39", "http://www.infinitymarketing.co.nz/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("132", "1", "2016-03-07 10:44:45", "2016-03-06 21:44:45", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background-1.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\">Work With Me</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" admin_label=\"Section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\"] [et_pb_pricing_table featured=\"off\" title=\"Services\" currency=\"$\" per=\"month\" sum=\"1500\" button_text=\"Select\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"] [/et_pb_pricing_table] [/et_pb_pricing_tables][/et_pb_column][/et_pb_row][/et_pb_section]", "WORK WITH ME", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2016-03-07 10:44:45", "2016-03-06 21:44:45", "", "39", "http://www.infinitymarketing.co.nz/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("134", "1", "2016-03-07 10:47:13", "2016-03-06 21:47:13", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background-1.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\">Work With Me</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\"] [et_pb_pricing_table featured=\"off\" title=\"Incredible\" currency=\"$\" per=\"month\" sum=\"300\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"] [/et_pb_pricing_table] [/et_pb_pricing_tables][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][/et_pb_row][/et_pb_section]", "WORK WITH ME", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2016-03-07 10:47:13", "2016-03-06 21:47:13", "", "39", "http://www.infinitymarketing.co.nz/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("133", "1", "2016-03-07 10:46:19", "2016-03-06 21:46:19", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background-1.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\">Work With Me</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\"] [et_pb_pricing_table featured=\"off\" title=\"Incredible\" currency=\"$\" per=\"month\" sum=\"300\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"] [/et_pb_pricing_table] [/et_pb_pricing_tables][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\"] [et_pb_pricing_table featured=\"off\" title=\"Services\" currency=\"$\" per=\"month\" sum=\"1,500\" button_text=\"Select\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"] [/et_pb_pricing_table] [/et_pb_pricing_tables][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][/et_pb_row][/et_pb_section]", "WORK WITH ME", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2016-03-07 10:46:19", "2016-03-06 21:46:19", "", "39", "http://www.infinitymarketing.co.nz/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("135", "1", "2016-03-07 10:50:33", "2016-03-06 21:50:33", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background-1.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\">Work With Me</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" admin_label=\"Section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe offer a raft of marketing services for your small business. Whether you know what you want and just don\'t have time to implement, or need someone to take control to make it happen for you, we can help.\r\n\r\nWe offer great monthly packages, which are fully customisable to suit your business needs; and one-off services.\r\n\r\nAll costs include any graphic design needed to deliver the messages beautifully.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\"] [et_pb_pricing_table featured=\"off\" title=\"Incredible\" currency=\"$\" per=\"month\" sum=\"300\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"] [/et_pb_pricing_table] [/et_pb_pricing_tables][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][/et_pb_row][/et_pb_section]", "WORK WITH ME", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2016-03-07 10:50:33", "2016-03-06 21:50:33", "", "39", "http://www.infinitymarketing.co.nz/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("136", "1", "2016-03-07 10:54:51", "2016-03-06 21:54:51", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background-1.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\">Work With Me</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe offer a raft of marketing services for your small business. Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.\r\n\r\nWe offer great monthly packages, which are fully customisable to suit your business needs; and one-off services.\r\n\r\nAll costs include any graphic design needed to deliver the messages beautifully.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" admin_label=\"Section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Monthly Packages Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>Monthly Packages</h2>\r\nMonthly marketing packages are customisable to your business needs. Need one thing one month and something else the next? Easy, we can swap it out!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\"] [et_pb_pricing_table featured=\"off\" title=\"Incredible\" currency=\"$\" per=\"month\" sum=\"xxx\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n<ul>\r\n	<li>Monthly email</li>\r\n	<li>Facebook cover and 2 posts</li>\r\n	<li>Website content</li>\r\n</ul>\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][/et_pb_row][/et_pb_section]", "WORK WITH ME", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2016-03-07 10:54:51", "2016-03-06 21:54:51", "", "39", "http://www.infinitymarketing.co.nz/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("137", "1", "2016-03-07 10:55:48", "2016-03-06 21:55:48", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background-1.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\">Work With Me</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe offer a raft of marketing services for your small business. Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.\r\n\r\nWe offer great monthly packages, which are fully customisable to suit your business needs; and one-off services.\r\n\r\nAll costs include any graphic design needed to deliver the messages beautifully.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Monthly Packages Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>Monthly Packages</h2>\r\nMonthly marketing packages are customisable to your business needs. Need one thing one month and something else the next? Easy, we can swap it out!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\"] [et_pb_pricing_table featured=\"off\" title=\"Incredible\" currency=\"$\" per=\"month\" sum=\"xxx\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nMonthly email\r\n\r\nFacebook cover and 2 posts\r\n\r\nWebsite content\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][/et_pb_row][/et_pb_section]", "WORK WITH ME", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2016-03-07 10:55:48", "2016-03-06 21:55:48", "", "39", "http://www.infinitymarketing.co.nz/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("138", "1", "2016-03-07 11:02:28", "2016-03-06 22:02:28", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background-1.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\">Work With Me</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe offer a raft of marketing services for your small business. Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.\r\n\r\nWe offer great monthly packages, which are fully customisable to suit your business needs; and one-off services.\r\n\r\nAll costs include any graphic design needed to deliver the messages beautifully.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Monthly Packages Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>Monthly Packages</h2>\r\nMonthly marketing packages are customisable to your business needs. Need one thing one month and something else the next? Easy, we can swap it out!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\"]\r\n\r\n[et_pb_pricing_table featured=\"off\" title=\"Incredible\" currency=\"$\" per=\"month\" sum=\"xxx\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Monthly email\r\n\r\nFacebook cover and 2 posts\r\n\r\nWebsite content\r\n\r\n[/et_pb_pricing_table]\r\n\r\n[/et_pb_pricing_tables][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" admin_label=\"Section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>One-off Services</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "WORK WITH ME", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2016-03-07 11:02:28", "2016-03-06 22:02:28", "", "39", "http://www.infinitymarketing.co.nz/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("139", "1", "2016-03-07 12:06:52", "2016-03-06 23:06:52", "[et_pb_section admin_label=\"Impact Background\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background-1.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Impact Text\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/discover-v2.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_signup admin_label=\"Email Optin\" provider=\"mailchimp\" mailchimp_list=\"4419f44e8e\" aweber_list=\"none\" use_background_color=\"on\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"left\" use_focus_border_color=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" title=\"Get marketing tips to your inbox\" button_text=\"Sign me up!\" header_font=\"Open Sans||||\" header_font_size=\"22\" body_font=\"Open Sans||||\"] [/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\">DREAMING OF MARKETING THAT WORKS?</h2>\r\n<p style=\"text-align: center;\">We can make that happen for your small business through marketing that suits your business and the stage that it is at. We will work together to gain a thorough understanding of who your customers are and where they are to deliver the best marketing for your small business.</p>\r\n<p style=\"text-align: center;\">You might know exactly what your business needs to get the extra punch it needs, and simply just need help with implementation of your marketing plan, or you might need a guiding hand in what needs to be done for your business marketing. We can help! We can help take your business to the next level where the possibilities are infinite.</p>\r\n<p style=\"text-align: center;\"><a href=\"http://www.infinitymarketing.co.nz/work-with-me/\">Let\'s discover how to make that happen for your business</a></p>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#b3babf\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Connect CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Connect-1.png\" alt=\"Connect on Facebook\" show_in_lightbox=\"off\" url=\"http://www.facebook.com/infinitymarketing.co.nz\" url_new_window=\"on\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Services CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Services-1.png\" alt=\"View Services\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/work-with-me/\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Contact CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Contact-1.png\" alt=\"Contact us\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/contact/\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice.png\" alt=\"Candice Venter\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"About Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>About Candice</h2>\r\nCandice has has a passion for marketing for small businesses, having worked in both start up and large corporations, she has seen and done it all. She has an absolute passion for helping small businesses grow through the power of marketing.\r\n\r\nAn expert in understanding who your customers are, understanding where they are and delivering messages that inspire action, Candice thrives on creating marketing that works.\r\n\r\nAbove all, she is passionate to see your business succeed.\r\n\r\n[/et_pb_text][et_pb_button admin_label=\"Read More Button\" button_url=\"http://www.infinitymarketing.co.nz/about/\" url_new_window=\"off\" button_text=\"Read More\" button_alignment=\"left\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#f9f9f9\" button_bg_color=\"#009edb\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon=\"%%28%%\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-me/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\">Discover the services we provide</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "HOME", "", "inherit", "closed", "closed", "", "37-revision-v1", "", "", "2016-03-07 12:06:52", "2016-03-06 23:06:52", "", "37", "http://www.infinitymarketing.co.nz/37-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("140", "1", "2016-03-07 12:21:38", "2016-03-06 23:21:38", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background-1.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\">Work With Me</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">We offer a raft of marketing services for your small business. Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.</p>\r\n<p style=\"text-align: center;\">We offer great monthly packages, which are fully customisable to suit your business needs; and one-off services.</p>\r\n<p style=\"text-align: center;\">All costs include any graphic design needed to deliver the messages beautifully.</p>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Monthly Packages Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>Monthly Packages</h2>\r\nMonthly marketing packages are customisable to your business needs. Need one thing one month and something else the next? Easy, we can swap it out!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\"] [et_pb_pricing_table featured=\"off\" title=\"Incredible\" currency=\"$\" per=\"month\" sum=\"xxx\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Monthly email\r\n\r\nFacebook cover and 2 posts\r\n\r\nWebsite content\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>One-off Services</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "WORK WITH ME", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2016-03-07 12:21:38", "2016-03-06 23:21:38", "", "39", "http://www.infinitymarketing.co.nz/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("141", "1", "2016-03-07 12:24:17", "2016-03-06 23:24:17", "[et_pb_cta admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-me/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" saved_tabs=\"all\" template_type=\"module\"]\n\n<p style=\"text-align: center;\">Discover the services we provide</p>\n\n[/et_pb_cta]", "Call To Action", "", "publish", "closed", "closed", "", "call-to-action", "", "", "2016-03-07 12:24:17", "2016-03-06 23:24:17", "", "0", "http://www.infinitymarketing.co.nz/et_pb_layout/call-to-action/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("142", "1", "2016-03-08 17:21:44", "2016-03-08 04:21:44", "[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>Contact</h2>\r\nHowick, Auckland, New Zealand\r\n<span class=\"phone\"><strong>Phone:</strong> 021 159 1215\r\n</span><span class=\"email\"><strong>E-Mail: </strong>candice@infinitymarketing.co.nz</span>\r\n\r\nOr complete the form below to email us:\r\n\r\n[/et_pb_text][et_pb_contact_form admin_label=\"Contact Form\" captcha=\"on\" email=\"contact@infinitymarketing.co.nz\" use_redirect=\"off\" success_message=\"Sent!\" input_border_radius=\"0\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_contact_field field_title=\"Name\" field_type=\"input\" field_id=\"Name\" required_mark=\"on\" fullwidth_field=\"off\" /][et_pb_contact_field field_title=\"Email Address\" field_type=\"email\" field_id=\"Email\" required_mark=\"on\" fullwidth_field=\"off\" /][et_pb_contact_field field_title=\"Message\" field_type=\"text\" field_id=\"Message\" required_mark=\"on\" /] [/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][/et_pb_row][/et_pb_section]", "CONTACT", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2016-03-08 17:21:44", "2016-03-08 04:21:44", "", "43", "http://www.infinitymarketing.co.nz/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("143", "1", "2016-03-08 17:23:15", "2016-03-08 04:23:15", "[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>Contact</h2>\r\nInfinity Marketing is based in Howick, Auckland; New Zealand\r\n\r\n<span class=\"phone\"><strong>Phone:</strong> 021 159 1215\r\n</span><span class=\"email\"><strong>E-mail: </strong>candice@infinitymarketing.co.nz</span>\r\n\r\nOr complete the form below to email us:\r\n\r\n[/et_pb_text][et_pb_contact_form admin_label=\"Contact Form\" captcha=\"on\" email=\"contact@infinitymarketing.co.nz\" use_redirect=\"off\" success_message=\"Sent!\" input_border_radius=\"0\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_contact_field field_title=\"Name\" field_type=\"input\" field_id=\"Name\" required_mark=\"on\" fullwidth_field=\"off\" /][et_pb_contact_field field_title=\"Email Address\" field_type=\"email\" field_id=\"Email\" required_mark=\"on\" fullwidth_field=\"off\" /][et_pb_contact_field field_title=\"Message\" field_type=\"text\" field_id=\"Message\" required_mark=\"on\" /] [/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][/et_pb_row][/et_pb_section]", "CONTACT", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2016-03-08 17:23:15", "2016-03-08 04:23:15", "", "43", "http://www.infinitymarketing.co.nz/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("144", "1", "2016-03-08 23:48:32", "2016-03-08 10:48:32", "Infinity Marketing", "Candice Infinity Marketing Banner", "", "inherit", "open", "closed", "", "candice-infinity-marketing-banner", "", "", "2016-03-08 23:48:46", "2016-03-08 10:48:46", "", "37", "http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice-Infinity-Marketing-Banner-.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("145", "1", "2016-03-08 23:48:53", "2016-03-08 10:48:53", "[et_pb_section admin_label=\"Impact Background\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice-Infinity-Marketing-Banner-.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Impact Text\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/discover-v2.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_signup admin_label=\"Email Optin\" provider=\"mailchimp\" mailchimp_list=\"4419f44e8e\" aweber_list=\"none\" use_background_color=\"on\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"left\" use_focus_border_color=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" title=\"Get marketing tips to your inbox\" button_text=\"Sign me up!\" header_font=\"Open Sans||||\" header_font_size=\"22\" body_font=\"Open Sans||||\"] [/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\">DREAMING OF MARKETING THAT WORKS?</h2>\r\n<p style=\"text-align: center;\">We can make that happen for your small business through marketing that suits your business and the stage that it is at. We will work together to gain a thorough understanding of who your customers are and where they are to deliver the best marketing for your small business.</p>\r\n<p style=\"text-align: center;\">You might know exactly what your business needs to get the extra punch it needs, and simply just need help with implementation of your marketing plan, or you might need a guiding hand in what needs to be done for your business marketing. We can help! We can help take your business to the next level where the possibilities are infinite.</p>\r\n<p style=\"text-align: center;\"><a href=\"http://www.infinitymarketing.co.nz/work-with-me/\">Let\'s discover how to make that happen for your business</a></p>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#b3babf\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Connect CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Connect-1.png\" alt=\"Connect on Facebook\" show_in_lightbox=\"off\" url=\"http://www.facebook.com/infinitymarketing.co.nz\" url_new_window=\"on\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Services CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Services-1.png\" alt=\"View Services\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/work-with-me/\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Contact CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Contact-1.png\" alt=\"Contact us\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/contact/\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice.png\" alt=\"Candice Venter\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"About Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>About Candice</h2>\r\nCandice has has a passion for marketing for small businesses, having worked in both start up and large corporations, she has seen and done it all. She has an absolute passion for helping small businesses grow through the power of marketing.\r\n\r\nAn expert in understanding who your customers are, understanding where they are and delivering messages that inspire action, Candice thrives on creating marketing that works.\r\n\r\nAbove all, she is passionate to see your business succeed.\r\n\r\n[/et_pb_text][et_pb_button admin_label=\"Read More Button\" button_url=\"http://www.infinitymarketing.co.nz/about/\" url_new_window=\"off\" button_text=\"Read More\" button_alignment=\"left\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#f9f9f9\" button_bg_color=\"#009edb\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon=\"%%28%%\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-me/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\">Discover the services we provide</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "HOME", "", "inherit", "closed", "closed", "", "37-revision-v1", "", "", "2016-03-08 23:48:53", "2016-03-08 10:48:53", "", "37", "http://www.infinitymarketing.co.nz/37-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("147", "1", "2016-03-10 12:17:41", "2016-03-09 23:17:41", "[et_pb_section admin_label=\"Impact Background\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice-Infinity-Marketing-Banner-.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Impact Text\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/discover-v2.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_signup admin_label=\"Email Optin\" provider=\"mailchimp\" mailchimp_list=\"4419f44e8e\" aweber_list=\"none\" use_background_color=\"on\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"left\" use_focus_border_color=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" title=\"Get marketing tips to your inbox\" button_text=\"Sign me up!\" header_font=\"Open Sans||||\" header_font_size=\"22\" body_font=\"Open Sans||||\"] [/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\">DREAMING OF MARKETING THAT WORKS?</h2>\r\n<p style=\"text-align: center;\">We can make that happen for your small business through marketing that suits your business and the stage that it is at. We will work together to gain a thorough understanding of who your customers are and where they are to deliver the best marketing for your small business.</p>\r\n<p style=\"text-align: center;\">You might know exactly what your business needs to get the extra punch it needs, and simply just need help with implementation of your marketing plan, or you might need a guiding hand in what needs to be done for your business marketing. We can help! We can help take your business to the next level where the possibilities are infinite.</p>\r\n<p style=\"text-align: center;\"><a href=\"http://www.infinitymarketing.co.nz/work-with-me/\">Let\'s discover how to make that happen for your business</a></p>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#b3babf\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Connect CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Connect-1.png\" alt=\"Connect on Facebook\" show_in_lightbox=\"off\" url=\"http://www.facebook.com/infinitymarketing.co.nz\" url_new_window=\"on\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Services CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Services-1.png\" alt=\"View Services\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/work-with-me/\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Contact CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Contact-1.png\" alt=\"Contact us\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/contact/\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice-About_round.png\" alt=\"Candice Venter\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"About Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>About Candice</h2>\r\nCandice has has a passion for marketing for small businesses, having worked in both start up and large corporations, she has seen and done it all. She has an absolute passion for helping small businesses grow through the power of marketing.\r\n\r\nAn expert in understanding who your customers are, understanding where they are and delivering messages that inspire action, Candice thrives on creating marketing that works.\r\n\r\nAbove all, she is passionate to see your business succeed.\r\n\r\n[/et_pb_text][et_pb_button admin_label=\"Read More Button\" button_url=\"http://www.infinitymarketing.co.nz/about/\" url_new_window=\"off\" button_text=\"Read More\" button_alignment=\"left\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#f9f9f9\" button_bg_color=\"#009edb\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon=\"%%28%%\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-me/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\">Discover the services we provide</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "HOME", "", "inherit", "closed", "closed", "", "37-revision-v1", "", "", "2016-03-10 12:17:41", "2016-03-09 23:17:41", "", "37", "http://www.infinitymarketing.co.nz/37-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("287", "1", "2016-03-20 21:45:20", "2016-03-20 08:45:20", "[et_pb_section admin_label=\"Impact Background\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice-Infinity-Marketing-Banner-.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Impact Text\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/discover-v2.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_signup admin_label=\"Email Optin\" provider=\"mailchimp\" mailchimp_list=\"4419f44e8e\" aweber_list=\"none\" use_background_color=\"on\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"left\" use_focus_border_color=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" title=\"Get practical marketing tips delivered straight to your inbox\" button_text=\"Sign me up!\" header_font=\"Open Sans||||\" header_font_size=\"22\" body_font=\"Open Sans||||\"] [/et_pb_signup][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"0px|||\"]\r\n<h2 style=\"text-align: center;\">Building your dream business can be overwhelming</h2>\r\n<h2 style=\"text-align: center;\">and how do you know what marketing works?</h2>\r\n<p style=\"text-align: center;\">In your small business, you tend to try and juggle it all. Infinity Marketing is here to help you\r\nwith marketing that suits your unique business and the stage that it is at.</p>\r\n<p style=\"text-align: center;\">We will work together with you, to gain a thorough understanding of who your customers are,\r\nand where they are, to deliver the best marketing for your small business.</p>\r\n<p style=\"text-align: center;\">You might know exactly what your business needs to get the extra punch it requires,\r\nand need help with implementation of your marketing plan. Or you might\r\nbe starting out and need a guiding hand to identify what needs to be done for your business marketing.</p>\r\n<p style=\"text-align: center;\">Whatever stage you are at, we can help you take your business to the next level,\r\nwhere the possibilities are infinite.</p>\r\n<p style=\"text-align: center;\"><strong><a href=\"http://www.infinitymarketing.co.nz/work-with-us/\">Let\'s discover how to make that happen for your business</a></strong></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#b3babf\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Connect CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Connect.jpg\" alt=\"Connect on Facebook\" show_in_lightbox=\"off\" url=\"http://www.facebook.com/infinitymarketing.co.nz\" url_new_window=\"on\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Services CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Services.jpg\" alt=\"View Services\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/work-with-me/\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Contact CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Contact.jpg\" alt=\"Contact us\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/contact/\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice-About_round.png\" alt=\"Candice Venter\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"About Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>About Candice</h2>\r\nCandice has has a passion for marketing for small businesses, having worked in both start up and large corporations, she has seen and done a lot. She has an absolute passion for helping small businesses grow through the power of marketing.\r\n\r\nAn expert in understanding who your customers are, understanding where they are and delivering messages that inspire action, Candice thrives on creating marketing that works.\r\n\r\nAbove all, she is passionate to help your business succeed.\r\n\r\n[/et_pb_text][et_pb_button admin_label=\"Read More Button\" button_url=\"http://www.infinitymarketing.co.nz/about/\" url_new_window=\"off\" button_text=\"Read More\" button_alignment=\"left\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#f9f9f9\" button_bg_color=\"#009edb\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon=\"%%28%%\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-us/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\">Discover the services we provide</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "HOME", "", "inherit", "closed", "closed", "", "37-revision-v1", "", "", "2016-03-20 21:45:20", "2016-03-20 08:45:20", "", "37", "http://www.infinitymarketing.co.nz/37-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("148", "1", "2016-03-10 12:24:34", "2016-03-09 23:24:34", "[et_pb_section admin_label=\"Impact Background\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice-Infinity-Marketing-Banner-.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Impact Text\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/discover-v2.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_signup admin_label=\"Email Optin\" provider=\"mailchimp\" mailchimp_list=\"4419f44e8e\" aweber_list=\"none\" use_background_color=\"on\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"left\" use_focus_border_color=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" title=\"Get practical marketing tips delivered straight to your inbox\" button_text=\"Sign me up!\" header_font=\"Open Sans||||\" header_font_size=\"22\" body_font=\"Open Sans||||\"] [/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\">Building your dream business can be hugely overwhelming</h2>\r\n<h2 style=\"text-align: center;\">and how do you know what marketing works?</h2>\r\n<p style=\"text-align: center;\">In your small business, you tend to try and juggle it all. But Infinity Marketing is here to help you, through marketing that suits your unique business and the stage that it is at.</p>\r\n<p style=\"text-align: center;\">We will work together with you, to gain a thorough understanding of who your customers are, and where they are, to deliver the best marketing for your small business.</p>\r\n<p style=\"text-align: center;\">You might know exactly what your business needs to get the extra punch it requires, and simply need help with implementation of your marketing plan, or you might just be starting out and need a guiding hand to identify what needs to be done for your business marketing.</p>\r\n<p style=\"text-align: center;\">Whatever stage you are at, we can help you take your business to the next level, where the possibilities are infinite.</p>\r\n<p style=\"text-align: center;\"><a href=\"http://www.infinitymarketing.co.nz/work-with-me/\">Let\'s discover how to make that happen for your business</a></p>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#b3babf\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Connect CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Connect-1.png\" alt=\"Connect on Facebook\" show_in_lightbox=\"off\" url=\"http://www.facebook.com/infinitymarketing.co.nz\" url_new_window=\"on\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Services CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Services-1.png\" alt=\"View Services\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/work-with-me/\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Contact CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Contact-1.png\" alt=\"Contact us\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/contact/\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice-About_round.png\" alt=\"Candice Venter\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"About Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>About Candice</h2>\r\nCandice has has a passion for marketing for small businesses, having worked in both start up and large corporations, she has seen and done it all. She has an absolute passion for helping small businesses grow through the power of marketing.\r\n\r\nAn expert in understanding who your customers are, understanding where they are and delivering messages that inspire action, Candice thrives on creating marketing that works.\r\n\r\nAbove all, she is passionate to see your business succeed.\r\n\r\n[/et_pb_text][et_pb_button admin_label=\"Read More Button\" button_url=\"http://www.infinitymarketing.co.nz/about/\" url_new_window=\"off\" button_text=\"Read More\" button_alignment=\"left\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#f9f9f9\" button_bg_color=\"#009edb\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon=\"%%28%%\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-me/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\">Discover the services we provide</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "HOME", "", "inherit", "closed", "closed", "", "37-revision-v1", "", "", "2016-03-10 12:24:34", "2016-03-09 23:24:34", "", "37", "http://www.infinitymarketing.co.nz/37-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("150", "1", "2016-03-10 12:25:27", "2016-03-09 23:25:27", "[et_pb_section admin_label=\"Impact Background\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice-Infinity-Marketing-Banner-.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Impact Text\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/discover-v2.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_signup admin_label=\"Email Optin\" provider=\"mailchimp\" mailchimp_list=\"4419f44e8e\" aweber_list=\"none\" use_background_color=\"on\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"left\" use_focus_border_color=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" title=\"Get practical marketing tips delivered straight to your inbox\" button_text=\"Sign me up!\" header_font=\"Open Sans||||\" header_font_size=\"22\" body_font=\"Open Sans||||\"] [/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\">Building your dream business can be hugely overwhelming</h2>\r\n<h2 style=\"text-align: center;\">and how do you know what marketing works?</h2>\r\n<p style=\"text-align: center;\">In your small business, you tend to try and juggle it all. But Infinity Marketing is here to help you, through marketing that suits your unique business and the stage that it is at.</p>\r\n<p style=\"text-align: center;\">We will work together with you, to gain a thorough understanding of who your customers are, and where they are, to deliver the best marketing for your small business.</p>\r\n<p style=\"text-align: center;\">You might know exactly what your business needs to get the extra punch it requires, and simply need help with implementation of your marketing plan, or you might just be starting out and need a guiding hand to identify what needs to be done for your business marketing.</p>\r\n<p style=\"text-align: center;\">Whatever stage you are at, we can help you take your business to the next level, where the possibilities are infinite.</p>\r\n<p style=\"text-align: center;\"><a href=\"http://www.infinitymarketing.co.nz/work-with-me/\">Let\'s discover how to make that happen for your business</a></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#b3babf\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Connect CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Connect-1.png\" alt=\"Connect on Facebook\" show_in_lightbox=\"off\" url=\"http://www.facebook.com/infinitymarketing.co.nz\" url_new_window=\"on\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Services CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Services-1.png\" alt=\"View Services\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/work-with-me/\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Contact CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Contact-1.png\" alt=\"Contact us\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/contact/\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice-About_round.png\" alt=\"Candice Venter\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"About Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>About Candice</h2>\r\nCandice has has a passion for marketing for small businesses, having worked in both start up and large corporations, she has seen and done it all. She has an absolute passion for helping small businesses grow through the power of marketing.\r\n\r\nAn expert in understanding who your customers are, understanding where they are and delivering messages that inspire action, Candice thrives on creating marketing that works.\r\n\r\nAbove all, she is passionate to see your business succeed.\r\n\r\n[/et_pb_text][et_pb_button admin_label=\"Read More Button\" button_url=\"http://www.infinitymarketing.co.nz/about/\" url_new_window=\"off\" button_text=\"Read More\" button_alignment=\"left\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#f9f9f9\" button_bg_color=\"#009edb\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon=\"%%28%%\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-me/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\">Discover the services we provide</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "HOME", "", "inherit", "closed", "closed", "", "37-revision-v1", "", "", "2016-03-10 12:25:27", "2016-03-09 23:25:27", "", "37", "http://www.infinitymarketing.co.nz/37-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("149", "1", "2016-03-10 12:25:02", "2016-03-09 23:25:02", "[et_pb_section admin_label=\"Impact Background\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice-Infinity-Marketing-Banner-.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Impact Text\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/discover-v2.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_signup admin_label=\"Email Optin\" provider=\"mailchimp\" mailchimp_list=\"4419f44e8e\" aweber_list=\"none\" use_background_color=\"on\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"left\" use_focus_border_color=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" title=\"Get practical marketing tips delivered straight to your inbox\" button_text=\"Sign me up!\" header_font=\"Open Sans||||\" header_font_size=\"22\" body_font=\"Open Sans||||\"] [/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\">Building your dream business can be hugely overwhelming</h2>\r\n<h2 style=\"text-align: center;\">and how do you know what marketing works?</h2>\r\n<p style=\"text-align: center;\">In your small business, you tend to try and juggle it all. But Infinity Marketing is here to help you, through marketing that suits your unique business and the stage that it is at.</p>\r\n<p style=\"text-align: center;\">We will work together with you, to gain a thorough understanding of who your customers are, and where they are, to deliver the best marketing for your small business.</p>\r\n<p style=\"text-align: center;\">You might know exactly what your business needs to get the extra punch it requires, and simply need help with implementation of your marketing plan, or you might just be starting out and need a guiding hand to identify what needs to be done for your business marketing.</p>\r\n<p style=\"text-align: center;\">Whatever stage you are at, we can help you take your business to the next level, where the possibilities are infinite.</p>\r\n<p style=\"text-align: center;\"><a href=\"http://www.infinitymarketing.co.nz/work-with-me/\">Let\'s discover how to make that happen for your business</a></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#b3babf\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Connect CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Connect-1.png\" alt=\"Connect on Facebook\" show_in_lightbox=\"off\" url=\"http://www.facebook.com/infinitymarketing.co.nz\" url_new_window=\"on\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Services CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Services-1.png\" alt=\"View Services\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/work-with-me/\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Contact CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Contact-1.png\" alt=\"Contact us\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/contact/\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice-About_round.png\" alt=\"Candice Venter\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"About Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>About Candice</h2>\r\nCandice has has a passion for marketing for small businesses, having worked in both start up and large corporations, she has seen and done it all. She has an absolute passion for helping small businesses grow through the power of marketing.\r\n\r\nAn expert in understanding who your customers are, understanding where they are and delivering messages that inspire action, Candice thrives on creating marketing that works.\r\n\r\nAbove all, she is passionate to see your business succeed.\r\n\r\n[/et_pb_text][et_pb_button admin_label=\"Read More Button\" button_url=\"http://www.infinitymarketing.co.nz/about/\" url_new_window=\"off\" button_text=\"Read More\" button_alignment=\"left\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#f9f9f9\" button_bg_color=\"#009edb\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon=\"%%28%%\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-me/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\">Discover the services we provide</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "HOME", "", "inherit", "closed", "closed", "", "37-revision-v1", "", "", "2016-03-10 12:25:02", "2016-03-09 23:25:02", "", "37", "http://www.infinitymarketing.co.nz/37-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("151", "1", "2016-03-10 12:27:24", "2016-03-09 23:27:24", "[et_pb_section admin_label=\"Impact Background\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice-Infinity-Marketing-Banner-.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Impact Text\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/discover-v2.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_signup admin_label=\"Email Optin\" provider=\"mailchimp\" mailchimp_list=\"4419f44e8e\" aweber_list=\"none\" use_background_color=\"on\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"left\" use_focus_border_color=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" title=\"Get practical marketing tips delivered straight to your inbox\" button_text=\"Sign me up!\" header_font=\"Open Sans||||\" header_font_size=\"22\" body_font=\"Open Sans||||\"] [/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\">Building your dream business can be hugely overwhelming</h2>\r\n<h2 style=\"text-align: center;\">and how do you know what marketing works?</h2>\r\n<p style=\"text-align: center;\">In your small business, you tend to try and juggle it all. But Infinity Marketing is here to help you,\r\nthrough marketing that suits your unique business and the stage that it is at.</p>\r\n<p style=\"text-align: center;\">We will work together with you, to gain a thorough understanding of who your customers are,\r\nand where they are, to deliver the best marketing for your small business.</p>\r\n<p style=\"text-align: center;\">You might know exactly what your business needs to get the extra punch it requires,\r\nand simply need help with implementation of your marketing plan, or you might just\r\nbe starting out and need a guiding hand to identify what needs to be done for your business marketing.</p>\r\n<p style=\"text-align: center;\">Whatever stage you are at, we can help you take your business to the next level,\r\nwhere the possibilities are infinite.</p>\r\n<p style=\"text-align: center;\"><a href=\"http://www.infinitymarketing.co.nz/work-with-me/\">Let\'s discover how to make that happen for your business</a></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#b3babf\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Connect CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Connect-1.png\" alt=\"Connect on Facebook\" show_in_lightbox=\"off\" url=\"http://www.facebook.com/infinitymarketing.co.nz\" url_new_window=\"on\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Services CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Services-1.png\" alt=\"View Services\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/work-with-me/\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Contact CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Contact-1.png\" alt=\"Contact us\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/contact/\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice-About_round.png\" alt=\"Candice Venter\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"About Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>About Candice</h2>\r\nCandice has has a passion for marketing for small businesses, having worked in both start up and large corporations, she has seen and done it all. She has an absolute passion for helping small businesses grow through the power of marketing.\r\n\r\nAn expert in understanding who your customers are, understanding where they are and delivering messages that inspire action, Candice thrives on creating marketing that works.\r\n\r\nAbove all, she is passionate to see your business succeed.\r\n\r\n[/et_pb_text][et_pb_button admin_label=\"Read More Button\" button_url=\"http://www.infinitymarketing.co.nz/about/\" url_new_window=\"off\" button_text=\"Read More\" button_alignment=\"left\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#f9f9f9\" button_bg_color=\"#009edb\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon=\"%%28%%\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-me/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\">Discover the services we provide</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "HOME", "", "inherit", "closed", "closed", "", "37-revision-v1", "", "", "2016-03-10 12:27:24", "2016-03-09 23:27:24", "", "37", "http://www.infinitymarketing.co.nz/37-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("152", "1", "2016-03-10 12:28:21", "2016-03-09 23:28:21", "[et_pb_section admin_label=\"Impact Background\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice-Infinity-Marketing-Banner-.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Impact Text\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/discover-v2.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_signup admin_label=\"Email Optin\" provider=\"mailchimp\" mailchimp_list=\"4419f44e8e\" aweber_list=\"none\" use_background_color=\"on\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"left\" use_focus_border_color=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" title=\"Get practical marketing tips delivered straight to your inbox\" button_text=\"Sign me up!\" header_font=\"Open Sans||||\" header_font_size=\"22\" body_font=\"Open Sans||||\" custom_padding=\"||0px|\"] [/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\">Building your dream business can be hugely overwhelming</h2>\r\n<h2 style=\"text-align: center;\">and how do you know what marketing works?</h2>\r\n<p style=\"text-align: center;\">In your small business, you tend to try and juggle it all. But Infinity Marketing is here to help you,\r\nthrough marketing that suits your unique business and the stage that it is at.</p>\r\n<p style=\"text-align: center;\">We will work together with you, to gain a thorough understanding of who your customers are,\r\nand where they are, to deliver the best marketing for your small business.</p>\r\n<p style=\"text-align: center;\">You might know exactly what your business needs to get the extra punch it requires,\r\nand simply need help with implementation of your marketing plan, or you might just\r\nbe starting out and need a guiding hand to identify what needs to be done for your business marketing.</p>\r\n<p style=\"text-align: center;\">Whatever stage you are at, we can help you take your business to the next level,\r\nwhere the possibilities are infinite.</p>\r\n<p style=\"text-align: center;\"><a href=\"http://www.infinitymarketing.co.nz/work-with-me/\">Let\'s discover how to make that happen for your business</a></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#b3babf\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Connect CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Connect-1.png\" alt=\"Connect on Facebook\" show_in_lightbox=\"off\" url=\"http://www.facebook.com/infinitymarketing.co.nz\" url_new_window=\"on\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Services CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Services-1.png\" alt=\"View Services\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/work-with-me/\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Contact CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Contact-1.png\" alt=\"Contact us\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/contact/\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice-About_round.png\" alt=\"Candice Venter\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"About Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>About Candice</h2>\r\nCandice has has a passion for marketing for small businesses, having worked in both start up and large corporations, she has seen and done it all. She has an absolute passion for helping small businesses grow through the power of marketing.\r\n\r\nAn expert in understanding who your customers are, understanding where they are and delivering messages that inspire action, Candice thrives on creating marketing that works.\r\n\r\nAbove all, she is passionate to see your business succeed.\r\n\r\n[/et_pb_text][et_pb_button admin_label=\"Read More Button\" button_url=\"http://www.infinitymarketing.co.nz/about/\" url_new_window=\"off\" button_text=\"Read More\" button_alignment=\"left\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#f9f9f9\" button_bg_color=\"#009edb\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon=\"%%28%%\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-me/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\">Discover the services we provide</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "HOME", "", "inherit", "closed", "closed", "", "37-revision-v1", "", "", "2016-03-10 12:28:21", "2016-03-09 23:28:21", "", "37", "http://www.infinitymarketing.co.nz/37-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("153", "1", "2016-03-10 12:29:21", "2016-03-09 23:29:21", "[et_pb_section admin_label=\"Impact Background\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice-Infinity-Marketing-Banner-.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Impact Text\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/discover-v2.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_signup admin_label=\"Email Optin\" provider=\"mailchimp\" mailchimp_list=\"4419f44e8e\" aweber_list=\"none\" use_background_color=\"on\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"left\" use_focus_border_color=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" title=\"Get practical marketing tips delivered straight to your inbox\" button_text=\"Sign me up!\" header_font=\"Open Sans||||\" header_font_size=\"22\" body_font=\"Open Sans||||\"] [/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"5px|||\"]\r\n<h2 style=\"text-align: center;\">Building your dream business can be hugely overwhelming</h2>\r\n<h2 style=\"text-align: center;\">and how do you know what marketing works?</h2>\r\n<p style=\"text-align: center;\">In your small business, you tend to try and juggle it all. But Infinity Marketing is here to help you,\r\nthrough marketing that suits your unique business and the stage that it is at.</p>\r\n<p style=\"text-align: center;\">We will work together with you, to gain a thorough understanding of who your customers are,\r\nand where they are, to deliver the best marketing for your small business.</p>\r\n<p style=\"text-align: center;\">You might know exactly what your business needs to get the extra punch it requires,\r\nand simply need help with implementation of your marketing plan, or you might just\r\nbe starting out and need a guiding hand to identify what needs to be done for your business marketing.</p>\r\n<p style=\"text-align: center;\">Whatever stage you are at, we can help you take your business to the next level,\r\nwhere the possibilities are infinite.</p>\r\n<p style=\"text-align: center;\"><a href=\"http://www.infinitymarketing.co.nz/work-with-me/\">Let\'s discover how to make that happen for your business</a></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#b3babf\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Connect CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Connect-1.png\" alt=\"Connect on Facebook\" show_in_lightbox=\"off\" url=\"http://www.facebook.com/infinitymarketing.co.nz\" url_new_window=\"on\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Services CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Services-1.png\" alt=\"View Services\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/work-with-me/\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Contact CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Contact-1.png\" alt=\"Contact us\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/contact/\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice-About_round.png\" alt=\"Candice Venter\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"About Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>About Candice</h2>\r\nCandice has has a passion for marketing for small businesses, having worked in both start up and large corporations, she has seen and done it all. She has an absolute passion for helping small businesses grow through the power of marketing.\r\n\r\nAn expert in understanding who your customers are, understanding where they are and delivering messages that inspire action, Candice thrives on creating marketing that works.\r\n\r\nAbove all, she is passionate to see your business succeed.\r\n\r\n[/et_pb_text][et_pb_button admin_label=\"Read More Button\" button_url=\"http://www.infinitymarketing.co.nz/about/\" url_new_window=\"off\" button_text=\"Read More\" button_alignment=\"left\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#f9f9f9\" button_bg_color=\"#009edb\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon=\"%%28%%\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-me/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\">Discover the services we provide</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "HOME", "", "inherit", "closed", "closed", "", "37-revision-v1", "", "", "2016-03-10 12:29:21", "2016-03-09 23:29:21", "", "37", "http://www.infinitymarketing.co.nz/37-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("154", "1", "2016-03-10 12:29:56", "2016-03-09 23:29:56", "[et_pb_section admin_label=\"Impact Background\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice-Infinity-Marketing-Banner-.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Impact Text\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/discover-v2.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_signup admin_label=\"Email Optin\" provider=\"mailchimp\" mailchimp_list=\"4419f44e8e\" aweber_list=\"none\" use_background_color=\"on\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"left\" use_focus_border_color=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" title=\"Get practical marketing tips delivered straight to your inbox\" button_text=\"Sign me up!\" header_font=\"Open Sans||||\" header_font_size=\"22\" body_font=\"Open Sans||||\"] [/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"0px|||\"]\r\n<h2 style=\"text-align: center;\">Building your dream business can be hugely overwhelming</h2>\r\n<h2 style=\"text-align: center;\">and how do you know what marketing works?</h2>\r\n<p style=\"text-align: center;\">In your small business, you tend to try and juggle it all. But Infinity Marketing is here to help you,\r\nthrough marketing that suits your unique business and the stage that it is at.</p>\r\n<p style=\"text-align: center;\">We will work together with you, to gain a thorough understanding of who your customers are,\r\nand where they are, to deliver the best marketing for your small business.</p>\r\n<p style=\"text-align: center;\">You might know exactly what your business needs to get the extra punch it requires,\r\nand simply need help with implementation of your marketing plan, or you might just\r\nbe starting out and need a guiding hand to identify what needs to be done for your business marketing.</p>\r\n<p style=\"text-align: center;\">Whatever stage you are at, we can help you take your business to the next level,\r\nwhere the possibilities are infinite.</p>\r\n<p style=\"text-align: center;\"><a href=\"http://www.infinitymarketing.co.nz/work-with-me/\">Let\'s discover how to make that happen for your business</a></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#b3babf\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Connect CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Connect-1.png\" alt=\"Connect on Facebook\" show_in_lightbox=\"off\" url=\"http://www.facebook.com/infinitymarketing.co.nz\" url_new_window=\"on\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Services CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Services-1.png\" alt=\"View Services\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/work-with-me/\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Contact CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Contact-1.png\" alt=\"Contact us\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/contact/\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice-About_round.png\" alt=\"Candice Venter\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"About Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>About Candice</h2>\r\nCandice has has a passion for marketing for small businesses, having worked in both start up and large corporations, she has seen and done it all. She has an absolute passion for helping small businesses grow through the power of marketing.\r\n\r\nAn expert in understanding who your customers are, understanding where they are and delivering messages that inspire action, Candice thrives on creating marketing that works.\r\n\r\nAbove all, she is passionate to see your business succeed.\r\n\r\n[/et_pb_text][et_pb_button admin_label=\"Read More Button\" button_url=\"http://www.infinitymarketing.co.nz/about/\" url_new_window=\"off\" button_text=\"Read More\" button_alignment=\"left\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#f9f9f9\" button_bg_color=\"#009edb\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon=\"%%28%%\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-me/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\">Discover the services we provide</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "HOME", "", "inherit", "closed", "closed", "", "37-revision-v1", "", "", "2016-03-10 12:29:56", "2016-03-09 23:29:56", "", "37", "http://www.infinitymarketing.co.nz/37-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("156", "1", "2016-03-10 12:32:12", "2016-03-09 23:32:12", "[et_pb_section admin_label=\"Impact Background\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice-Infinity-Marketing-Banner-.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Impact Text\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/discover-v2.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_signup admin_label=\"Email Optin\" provider=\"mailchimp\" mailchimp_list=\"4419f44e8e\" aweber_list=\"none\" use_background_color=\"on\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"left\" use_focus_border_color=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" title=\"Get practical marketing tips delivered straight to your inbox\" button_text=\"Sign me up!\" header_font=\"Open Sans||||\" header_font_size=\"22\" body_font=\"Open Sans||||\"] [/et_pb_signup][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"0px|||\"]\r\n<h2 style=\"text-align: center;\">Building your dream business can be hugely overwhelming</h2>\r\n<h2 style=\"text-align: center;\">and how do you know what marketing works?</h2>\r\n<p style=\"text-align: center;\">In your small business, you tend to try and juggle it all. But Infinity Marketing is here to help you,\r\nthrough marketing that suits your unique business and the stage that it is at.</p>\r\n<p style=\"text-align: center;\">We will work together with you, to gain a thorough understanding of who your customers are,\r\nand where they are, to deliver the best marketing for your small business.</p>\r\n<p style=\"text-align: center;\">You might know exactly what your business needs to get the extra punch it requires,\r\nand simply need help with implementation of your marketing plan, or you might just\r\nbe starting out and need a guiding hand to identify what needs to be done for your business marketing.</p>\r\n<p style=\"text-align: center;\">Whatever stage you are at, we can help you take your business to the next level,\r\nwhere the possibilities are infinite.</p>\r\n<p style=\"text-align: center;\"><strong><a href=\"http://www.infinitymarketing.co.nz/work-with-me/\">Let\'s discover how to make that happen for your business</a></strong></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#b3babf\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Connect CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Connect-1.png\" alt=\"Connect on Facebook\" show_in_lightbox=\"off\" url=\"http://www.facebook.com/infinitymarketing.co.nz\" url_new_window=\"on\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Services CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Services-1.png\" alt=\"View Services\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/work-with-me/\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Contact CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Contact-1.png\" alt=\"Contact us\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/contact/\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice-About_round.png\" alt=\"Candice Venter\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"About Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>About Candice</h2>\r\nCandice has has a passion for marketing for small businesses, having worked in both start up and large corporations, she has seen and done it all. She has an absolute passion for helping small businesses grow through the power of marketing.\r\n\r\nAn expert in understanding who your customers are, understanding where they are and delivering messages that inspire action, Candice thrives on creating marketing that works.\r\n\r\nAbove all, she is passionate to see your business succeed.\r\n\r\n[/et_pb_text][et_pb_button admin_label=\"Read More Button\" button_url=\"http://www.infinitymarketing.co.nz/about/\" url_new_window=\"off\" button_text=\"Read More\" button_alignment=\"left\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#f9f9f9\" button_bg_color=\"#009edb\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon=\"%%28%%\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-me/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\">Discover the services we provide</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "HOME", "", "inherit", "closed", "closed", "", "37-revision-v1", "", "", "2016-03-10 12:32:12", "2016-03-09 23:32:12", "", "37", "http://www.infinitymarketing.co.nz/37-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("155", "1", "2016-03-10 12:31:00", "2016-03-09 23:31:00", "[et_pb_section admin_label=\"Impact Background\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice-Infinity-Marketing-Banner-.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Impact Text\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/discover-v2.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_signup admin_label=\"Email Optin\" provider=\"mailchimp\" mailchimp_list=\"4419f44e8e\" aweber_list=\"none\" use_background_color=\"on\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"left\" use_focus_border_color=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" title=\"Get practical marketing tips delivered straight to your inbox\" button_text=\"Sign me up!\" header_font=\"Open Sans||||\" header_font_size=\"22\" body_font=\"Open Sans||||\"] [/et_pb_signup][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"0px|||\"]\r\n<h2 style=\"text-align: center;\">Building your dream business can be hugely overwhelming</h2>\r\n<h2 style=\"text-align: center;\">and how do you know what marketing works?</h2>\r\n<p style=\"text-align: center;\">In your small business, you tend to try and juggle it all. But Infinity Marketing is here to help you,\r\nthrough marketing that suits your unique business and the stage that it is at.</p>\r\n<p style=\"text-align: center;\">We will work together with you, to gain a thorough understanding of who your customers are,\r\nand where they are, to deliver the best marketing for your small business.</p>\r\n<p style=\"text-align: center;\">You might know exactly what your business needs to get the extra punch it requires,\r\nand simply need help with implementation of your marketing plan, or you might just\r\nbe starting out and need a guiding hand to identify what needs to be done for your business marketing.</p>\r\n<p style=\"text-align: center;\">Whatever stage you are at, we can help you take your business to the next level,\r\nwhere the possibilities are infinite.</p>\r\n<p style=\"text-align: center;\"><strong><a href=\"http://www.infinitymarketing.co.nz/work-with-me/\">Let\'s discover how to make that happen for your business</a></strong></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#b3babf\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Connect CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Connect-1.png\" alt=\"Connect on Facebook\" show_in_lightbox=\"off\" url=\"http://www.facebook.com/infinitymarketing.co.nz\" url_new_window=\"on\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Services CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Services-1.png\" alt=\"View Services\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/work-with-me/\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Contact CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Contact-1.png\" alt=\"Contact us\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/contact/\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice-About_round.png\" alt=\"Candice Venter\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"About Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>About Candice</h2>\r\nCandice has has a passion for marketing for small businesses, having worked in both start up and large corporations, she has seen and done it all. She has an absolute passion for helping small businesses grow through the power of marketing.\r\n\r\nAn expert in understanding who your customers are, understanding where they are and delivering messages that inspire action, Candice thrives on creating marketing that works.\r\n\r\nAbove all, she is passionate to see your business succeed.\r\n\r\n[/et_pb_text][et_pb_button admin_label=\"Read More Button\" button_url=\"http://www.infinitymarketing.co.nz/about/\" url_new_window=\"off\" button_text=\"Read More\" button_alignment=\"left\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#f9f9f9\" button_bg_color=\"#009edb\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon=\"%%28%%\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-me/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\">Discover the services we provide</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "HOME", "", "inherit", "closed", "closed", "", "37-revision-v1", "", "", "2016-03-10 12:31:00", "2016-03-09 23:31:00", "", "37", "http://www.infinitymarketing.co.nz/37-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("157", "1", "2016-03-10 12:40:56", "2016-03-09 23:40:56", "About Infinity Marketing", "About Infinity Marketing", "", "inherit", "open", "closed", "", "about-infinity", "", "", "2016-03-10 12:41:33", "2016-03-09 23:41:33", "", "2", "http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/About-Infinity.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("158", "1", "2016-03-10 12:41:39", "2016-03-09 23:41:39", "[et_pb_section admin_label=\"section\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/About-Infinity.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">About Infinity Marketing</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]", "ABOUT", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2016-03-10 12:41:39", "2016-03-09 23:41:39", "", "2", "http://www.infinitymarketing.co.nz/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("159", "1", "2016-03-10 12:48:12", "2016-03-09 23:48:12", "[et_pb_section admin_label=\"Impact Background\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice-Infinity-Marketing-Banner-.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Impact Text\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/discover-v2.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_signup admin_label=\"Email Optin\" provider=\"mailchimp\" mailchimp_list=\"4419f44e8e\" aweber_list=\"none\" use_background_color=\"on\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"left\" use_focus_border_color=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" title=\"Get practical marketing tips delivered straight to your inbox\" button_text=\"Sign me up!\" header_font=\"Open Sans||||\" header_font_size=\"22\" body_font=\"Open Sans||||\"] [/et_pb_signup][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"0px|||\"]\r\n<h2 style=\"text-align: center;\">Building your dream business can be overwhelming</h2>\r\n<h2 style=\"text-align: center;\">and how do you know what marketing works?</h2>\r\n<p style=\"text-align: center;\">In your small business, you tend to try and juggle it all. But Infinity Marketing is here to help you,\r\nthrough marketing that suits your unique business and the stage that it is at.</p>\r\n<p style=\"text-align: center;\">We will work together with you, to gain a thorough understanding of who your customers are,\r\nand where they are, to deliver the best marketing for your small business.</p>\r\n<p style=\"text-align: center;\">You might know exactly what your business needs to get the extra punch it requires,\r\nand simply need help with implementation of your marketing plan, or you might just\r\nbe starting out and need a guiding hand to identify what needs to be done for your business marketing.</p>\r\n<p style=\"text-align: center;\">Whatever stage you are at, we can help you take your business to the next level,\r\nwhere the possibilities are infinite.</p>\r\n<p style=\"text-align: center;\"><strong><a href=\"http://www.infinitymarketing.co.nz/work-with-me/\">Let\'s discover how to make that happen for your business</a></strong></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#b3babf\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Connect CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Connect-1.png\" alt=\"Connect on Facebook\" show_in_lightbox=\"off\" url=\"http://www.facebook.com/infinitymarketing.co.nz\" url_new_window=\"on\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Services CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Services-1.png\" alt=\"View Services\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/work-with-me/\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Contact CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Contact-1.png\" alt=\"Contact us\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/contact/\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice-About_round.png\" alt=\"Candice Venter\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"About Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>About Candice</h2>\r\nCandice has has a passion for marketing for small businesses, having worked in both start up and large corporations, she has seen and done it all. She has an absolute passion for helping small businesses grow through the power of marketing.\r\n\r\nAn expert in understanding who your customers are, understanding where they are and delivering messages that inspire action, Candice thrives on creating marketing that works.\r\n\r\nAbove all, she is passionate to see your business succeed.\r\n\r\n[/et_pb_text][et_pb_button admin_label=\"Read More Button\" button_url=\"http://www.infinitymarketing.co.nz/about/\" url_new_window=\"off\" button_text=\"Read More\" button_alignment=\"left\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#f9f9f9\" button_bg_color=\"#009edb\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon=\"%%28%%\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-me/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\">Discover the services we provide</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "HOME", "", "inherit", "closed", "closed", "", "37-revision-v1", "", "", "2016-03-10 12:48:12", "2016-03-09 23:48:12", "", "37", "http://www.infinitymarketing.co.nz/37-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("160", "1", "2016-03-10 12:49:29", "2016-03-09 23:49:29", "[et_pb_section admin_label=\"section\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/About-Infinity.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: left;\">About Infinity Marketing</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]", "ABOUT", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2016-03-10 12:49:29", "2016-03-09 23:49:29", "", "2", "http://www.infinitymarketing.co.nz/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("161", "1", "2016-03-10 12:52:30", "2016-03-09 23:52:30", "Candice ", "Candice", "", "inherit", "open", "closed", "", "cropped-candice-about_round-png", "", "", "2016-03-20 22:22:46", "2016-03-20 09:22:46", "", "0", "http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/cropped-Candice-About_round.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("162", "1", "2016-03-10 12:58:05", "2016-03-09 23:58:05", "[et_pb_section admin_label=\"section\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/About-Infinity.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: left;\">About Infinity Marketing</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>Welcome! I\'m Candice, your outsourced marketing team, here to help you with marketing your small business with marketing that works!</h2>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nRight now, I\'m sure you\'re feeling like you are trying to juggle it all, to know every aspect of how to do everything for your business, and not sure how to get the results you need for your business to grow (or even survive!) and overall just frustrated and bombarded!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]", "ABOUT", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2016-03-10 12:58:05", "2016-03-09 23:58:05", "", "2", "http://www.infinitymarketing.co.nz/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("163", "1", "2016-03-10 12:58:53", "2016-03-09 23:58:53", "[et_pb_section admin_label=\"section\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/About-Infinity.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: left;\">About Infinity Marketing</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\">Welcome! I\'m Candice,\r\nyour outsourced marketing team,\r\nhere to help you with marketing\r\nyour small business with\r\nmarketing that works!</h2>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nRight now, I\'m sure you\'re feeling like you are trying to juggle it all, to know every aspect of how to do everything for your business, and not sure how to get the results you need for your business to grow (or even survive!) and overall just frustrated and bombarded!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]", "ABOUT", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2016-03-10 12:58:53", "2016-03-09 23:58:53", "", "2", "http://www.infinitymarketing.co.nz/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("164", "1", "2016-03-10 13:00:26", "2016-03-10 00:00:26", "[et_pb_section admin_label=\"section\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/About-Infinity.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: left;\">About Infinity Marketing</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\">Welcome! I\'m Candice Venter.</h2>\r\n<h2 style=\"text-align: center;\">\r\nYour outsourced marketing team,\r\nhere to help you with marketing your small business\r\nwith marketing that works!</h2>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nRight now, I\'m sure you\'re feeling like you are trying to juggle it all, to know every aspect of how to do everything for your business, and not sure how to get the results you need for your business to grow (or even survive!) and overall just frustrated and bombarded!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]", "ABOUT", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2016-03-10 13:00:26", "2016-03-10 00:00:26", "", "2", "http://www.infinitymarketing.co.nz/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("165", "1", "2016-03-10 13:02:48", "2016-03-10 00:02:48", "About Candice", "About Candice", "", "inherit", "open", "closed", "", "candice-5", "", "", "2016-03-10 13:03:02", "2016-03-10 00:03:02", "", "2", "http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/candice-5.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("166", "1", "2016-03-10 13:03:15", "2016-03-10 00:03:15", "[et_pb_section admin_label=\"section\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/About-Infinity.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: left;\">About Infinity Marketing</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\">Hello, I\'m Candice Venter.</h2>\r\n<h2 style=\"text-align: center;\">Your outsourced marketing team,\r\nhere to help you with marketing your small business\r\nwith marketing that works!</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nRight now, I\'m sure you\'re feeling like you are trying to juggle it all, to know every aspect of how to do everything for your business, and not sure how to get the results you need for your business to grow (or even survive!) and overall just frustrated and bombarded!\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/candice-5.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]", "ABOUT", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2016-03-10 13:03:15", "2016-03-10 00:03:15", "", "2", "http://www.infinitymarketing.co.nz/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("167", "1", "2016-03-10 13:05:15", "2016-03-10 00:05:15", "About Candice", "About Candice", "", "inherit", "open", "closed", "", "about-candice", "", "", "2016-03-10 13:05:20", "2016-03-10 00:05:20", "", "2", "http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/About-Candice-.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("169", "1", "2016-03-10 13:07:48", "2016-03-10 00:07:48", "[et_pb_section admin_label=\"section\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/About-Infinity.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: left;\">About Infinity Marketing</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\">Hello, I\'m Candice Venter.</h2>\r\n<h2 style=\"text-align: center;\">Your outsourced marketing team,\r\nhere to help you with marketing your small business\r\nwith marketing that works!</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nRight now, I\'m sure you\'re feeling like you are trying to juggle it all, to know every aspect of how to do everything for your business, and not sure how to get the results you need for your business to grow (or even survive!) and overall just frustrated and bombarded!\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><strong>I get it, balancing everything is HARD and you quite simply can\'t be the expert at everything. </strong></h3>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/About-Candice-.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]", "ABOUT", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2016-03-10 13:07:48", "2016-03-10 00:07:48", "", "2", "http://www.infinitymarketing.co.nz/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("168", "1", "2016-03-10 13:05:26", "2016-03-10 00:05:26", "[et_pb_section admin_label=\"section\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/About-Infinity.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: left;\">About Infinity Marketing</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\">Hello, I\'m Candice Venter.</h2>\r\n<h2 style=\"text-align: center;\">Your outsourced marketing team,\r\nhere to help you with marketing your small business\r\nwith marketing that works!</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nRight now, I\'m sure you\'re feeling like you are trying to juggle it all, to know every aspect of how to do everything for your business, and not sure how to get the results you need for your business to grow (or even survive!) and overall just frustrated and bombarded!\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/About-Candice-.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]", "ABOUT", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2016-03-10 13:05:26", "2016-03-10 00:05:26", "", "2", "http://www.infinitymarketing.co.nz/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("170", "1", "2016-03-10 13:09:13", "2016-03-10 00:09:13", "[et_pb_section admin_label=\"section\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/About-Infinity.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: left;\">About Infinity Marketing</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\">Hello, I\'m Candice Venter.</h2>\r\n<h2 style=\"text-align: center;\">Your outsourced marketing team,\r\nhere to help you with marketing your small business\r\nwith marketing that works!</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nRight now, I\'m sure you\'re feeling like you are trying to juggle it all, to know every aspect of how to do everything for your business, and not sure how to get the results you need for your business to grow (or even survive!) and overall just frustrated and bombarded!\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><strong>I get it, balancing everything is HARD and you quite simply can\'t be the expert at everything. </strong></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI\'m here to show you that there is help and a light at the end of the tunnel where your business can succeed.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/About-Candice-.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]", "ABOUT", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2016-03-10 13:09:13", "2016-03-10 00:09:13", "", "2", "http://www.infinitymarketing.co.nz/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("172", "1", "2016-03-10 13:30:01", "2016-03-10 00:30:01", "[et_pb_section admin_label=\"section\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/About-Infinity.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"About Infinity Marketing Header\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: left;\">About Infinity Marketing</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hello I\'m Candice Venter Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\">Hello, I\'m Candice Venter.</h2>\r\n<h2 style=\"text-align: center;\">Your outsourced marketing team,\r\nhere to help you with marketing your small business\r\nwith marketing that works!</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nRight now, I\'m sure you\'re feeling like you are trying to juggle it all, to know every aspect of how to do everything for your business, and not sure how to get the results you need for your business to grow (or even survive!) and overall just frustrated and bombarded!\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><strong>I get it, balancing everything is HARD and you quite simply can\'t be the expert at everything. </strong></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI\'m here to show you that there is help and a light at the end of the tunnel where your business can succeed.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhy I love helping small businesses deliver outstanding marketing and see their businesses grow as a result, is because I am inspired by what amazing people and talents there are in our community. My passion is seeing other people succeed and I believe that everyone <strong>deserves</strong> to succeed.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI want this for you! I want to share my sills as a qualified and experienced marketing professional, to help your business grow and succeed.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/About-Candice-.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Get Personal Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: justify;\">Care to get personal?</h2>\r\n<ul>\r\n	<li>Originally from South Africa, I have now lived half my life in Auckland, New Zealand. That means I have a good mix of being able to tell it straight, with a good lot of kiwi ingenuity.</li>\r\n	<li>I studied at the University of Auckland and have gained my professional experience in both Global corporations and a great kiwi start-up.</li>\r\n	<li>Family is my everything, this includes my 15 year old miniature sausage dog, Dante. It\'s for them, that I do what I do.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "ABOUT", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2016-03-10 13:30:01", "2016-03-10 00:30:01", "", "2", "http://www.infinitymarketing.co.nz/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("171", "1", "2016-03-10 13:28:59", "2016-03-10 00:28:59", "[et_pb_section admin_label=\"section\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/About-Infinity.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"About Infinity Marketing Header\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: left;\">About Infinity Marketing</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hello I\'m Candice Venter Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\">Hello, I\'m Candice Venter.</h2>\r\n<h2 style=\"text-align: center;\">Your outsourced marketing team,\r\nhere to help you with marketing your small business\r\nwith marketing that works!</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nRight now, I\'m sure you\'re feeling like you are trying to juggle it all, to know every aspect of how to do everything for your business, and not sure how to get the results you need for your business to grow (or even survive!) and overall just frustrated and bombarded!\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><strong>I get it, balancing everything is HARD and you quite simply can\'t be the expert at everything. </strong></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI\'m here to show you that there is help and a light at the end of the tunnel where your business can succeed.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhy I love helping small businesses deliver outstanding marketing and see their businesses grow as a result, is because I am inspired by what amazing people and talents there are in our community. My passion is seeing other people succeed and I believe that everyone <strong>deserves</strong> to succeed.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI want this for you! I want to share my sills as a qualified and experienced marketing professional, to help your business grow and succeed.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/About-Candice-.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" admin_label=\"Section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Get Personal Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: justify;\">Care to get personal?</h2>\r\n<ul>\r\n	<li>Originally from South Africa, I have now lived half my life in Auckland, New Zealand. That means I have a good mix of being able to tell it straight, with a good lot of kiwi ingenuity.</li>\r\n	<li>I studied at the University of Auckland and have gained my professional experience in both Global corporations and a great kiwi start-up.</li>\r\n	<li>Family is my everything, this includes my 15 year old miniature sausage dog, Dante. It\'s for them, that I do what I do.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][/et_pb_row][/et_pb_section]", "ABOUT", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2016-03-10 13:28:59", "2016-03-10 00:28:59", "", "2", "http://www.infinitymarketing.co.nz/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("173", "1", "2016-03-10 13:32:41", "2016-03-10 00:32:41", "[et_pb_section admin_label=\"section\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/About-Infinity.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"About Infinity Marketing Header\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: left;\">About Infinity Marketing</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hello I\'m Candice Venter Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\">Hello, I\'m Candice Venter.</h2>\r\n<h2 style=\"text-align: center;\">Your outsourced marketing team,\r\nhere to help you with marketing your small business\r\nwith marketing that works!</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nRight now, I\'m sure you\'re feeling like you are trying to juggle it all, to know every aspect of how to do everything for your business, and not sure how to get the results you need for your business to grow (or even survive!) and overall just frustrated and bombarded!\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><strong>I get it, balancing everything is HARD and you quite simply can\'t be the expert at everything. </strong></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI\'m here to show you that there is help and a light at the end of the tunnel where your business can succeed.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhy I love helping small businesses deliver outstanding marketing and see their businesses grow as a result, is because I am inspired by what amazing people and talents there are in our community. My passion is seeing other people succeed and I believe that everyone <strong>deserves</strong> to succeed.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI want this for you! I want to share my sills as a qualified and experienced marketing professional, to help your business grow and succeed.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/About-Candice-.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Get Personal Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"on\" border_color=\"#888e8f\" border_style=\"solid\"]\r\n<h2 style=\"text-align: justify;\">Care to get personal?</h2>\r\n<ul>\r\n	<li>Originally from South Africa, I have now lived half my life in Auckland, New Zealand. That means I have a good mix of being able to tell it straight, with a good lot of kiwi ingenuity.</li>\r\n	<li>I studied at the University of Auckland and have gained my professional experience in both Global corporations and a great kiwi start-up.</li>\r\n	<li>Family is my everything, this includes my 15 year old miniature sausage dog, Dante. It\'s for them, that I do what I do.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "ABOUT", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2016-03-10 13:32:41", "2016-03-10 00:32:41", "", "2", "http://www.infinitymarketing.co.nz/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("174", "1", "2016-03-10 13:33:36", "2016-03-10 00:33:36", "[et_pb_section admin_label=\"section\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/About-Infinity.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"About Infinity Marketing Header\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: left;\">About Infinity Marketing</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hello I\'m Candice Venter Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\">Hello, I\'m Candice Venter.</h2>\r\n<h2 style=\"text-align: center;\">Your outsourced marketing team,\r\nhere to help you with marketing your small business\r\nwith marketing that works!</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nRight now, I\'m sure you\'re feeling like you are trying to juggle it all, to know every aspect of how to do everything for your business, and not sure how to get the results you need for your business to grow (or even survive!) and overall just frustrated and bombarded!\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><strong>I get it, balancing everything is HARD and you quite simply can\'t be the expert at everything. </strong></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI\'m here to show you that there is help and a light at the end of the tunnel where your business can succeed.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhy I love helping small businesses deliver outstanding marketing and see their businesses grow as a result, is because I am inspired by what amazing people and talents there are in our community. My passion is seeing other people succeed and I believe that everyone <strong>deserves</strong> to succeed.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI want this for you! I want to share my sills as a qualified and experienced marketing professional, to help your business grow and succeed.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/About-Candice-.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Get Personal Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"on\" border_color=\"#888e8f\" border_style=\"outset\" border_width=\"2px\" custom_margin=\"2px|2px|2px|2px\"]\r\n<h2 style=\"text-align: justify;\">Care to get personal?</h2>\r\n<ul>\r\n	<li>Originally from South Africa, I have now lived half my life in Auckland, New Zealand. That means I have a good mix of being able to tell it straight, with a good lot of kiwi ingenuity.</li>\r\n	<li>I studied at the University of Auckland and have gained my professional experience in both Global corporations and a great kiwi start-up.</li>\r\n	<li>Family is my everything, this includes my 15 year old miniature sausage dog, Dante. It\'s for them, that I do what I do.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "ABOUT", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2016-03-10 13:33:36", "2016-03-10 00:33:36", "", "2", "http://www.infinitymarketing.co.nz/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("175", "1", "2016-03-10 13:36:30", "2016-03-10 00:36:30", "[et_pb_section admin_label=\"section\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/About-Infinity.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"About Infinity Marketing Header\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: left;\">About Infinity Marketing</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hello I\'m Candice Venter Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\">Hello, I\'m Candice Venter.</h2>\r\n<h2 style=\"text-align: center;\">Your outsourced marketing team,\r\nhere to help you with marketing your small business\r\nwith marketing that works!</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nRight now, I\'m sure you\'re feeling like you are trying to juggle it all, to know every aspect of how to do everything for your business, and not sure how to get the results you need for your business to grow (or even survive!) and overall just frustrated and bombarded!\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><strong>I get it, balancing everything is HARD and you quite simply can\'t be the expert at everything. </strong></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI\'m here to show you that there is help and a light at the end of the tunnel where your business can succeed.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhy I love helping small businesses deliver outstanding marketing and see their businesses grow as a result, is because I am inspired by what amazing people and talents there are in our community. My passion is seeing other people succeed and I believe that everyone <strong>deserves</strong> to succeed.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI want this for you! I want to share my sills as a qualified and experienced marketing professional, to help your business grow and succeed.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/About-Candice-.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Get Personal Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#888e8f\" border_style=\"outset\" border_width=\"2px\"]\r\n<h2 style=\"text-align: justify;\">Care to get personal?</h2>\r\n<ul>\r\n	<li>Originally from South Africa, I have now lived half my life in Auckland, New Zealand. That means I have a good mix of being able to tell it straight, with a good lot of kiwi ingenuity.</li>\r\n	<li>I studied at the University of Auckland and have gained my professional experience in both Global corporations and a great kiwi start-up.</li>\r\n	<li>Family is my everything, this includes my 15 year old miniature sausage dog, Dante. It\'s for them, that I do what I do.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" admin_label=\"Section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTake the first step toward your new future and <a href=\"http://www.infinitymarketing.co.nz/work-with-me/\">click here to Work With Me</a>\r\n\r\n[/et_pb_text][et_pb_button admin_label=\"Work With Me Button\" button_url=\"http://www.infinitymarketing.co.nz/work-with-me/\" url_new_window=\"off\" button_text=\"Work With Me\" button_alignment=\"center\" background_layout=\"dark\" custom_button=\"on\" button_bg_color=\"#009edb\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" /][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][/et_pb_row][/et_pb_section]", "ABOUT", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2016-03-10 13:36:30", "2016-03-10 00:36:30", "", "2", "http://www.infinitymarketing.co.nz/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("176", "1", "2016-03-10 13:37:43", "2016-03-10 00:37:43", "[et_pb_section admin_label=\"section\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/About-Infinity.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"About Infinity Marketing Header\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: left;\">About Infinity Marketing</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hello I\'m Candice Venter Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\">Hello, I\'m Candice Venter.</h2>\r\n<h2 style=\"text-align: center;\">Your outsourced marketing team,\r\nhere to help you with marketing your small business\r\nwith marketing that works!</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nRight now, I\'m sure you\'re feeling like you are trying to juggle it all, to know every aspect of how to do everything for your business, and not sure how to get the results you need for your business to grow (or even survive!) and overall just frustrated and bombarded!\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><strong>I get it, balancing everything is HARD and you quite simply can\'t be the expert at everything. </strong></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI\'m here to show you that there is help and a light at the end of the tunnel where your business can succeed.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhy I love helping small businesses deliver outstanding marketing and see their businesses grow as a result, is because I am inspired by what amazing people and talents there are in our community. My passion is seeing other people succeed and I believe that everyone <strong>deserves</strong> to succeed.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI want this for you! I want to share my sills as a qualified and experienced marketing professional, to help your business grow and succeed.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/About-Candice-.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Get Personal Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#888e8f\" border_style=\"outset\" border_width=\"2px\"]\r\n<h2 style=\"text-align: justify;\">Care to get personal?</h2>\r\n<ul>\r\n	<li>Originally from South Africa, I have now lived half my life in Auckland, New Zealand. That means I have a good mix of being able to tell it straight, with a good lot of kiwi ingenuity.</li>\r\n	<li>I studied at the University of Auckland and have gained my professional experience in both Global corporations and a great kiwi start-up.</li>\r\n	<li>Family is my everything, this includes my 15 year old miniature sausage dog, Dante. It\'s for them, that I do what I do.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">Take the first step toward your new future\r\nand click below here to Work With Me</p>\r\n[/et_pb_text][et_pb_button admin_label=\"Work With Me Button\" button_url=\"http://www.infinitymarketing.co.nz/work-with-me/\" url_new_window=\"off\" button_text=\"Work With Me\" button_alignment=\"center\" background_layout=\"dark\" custom_button=\"on\" button_bg_color=\"#009edb\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][/et_pb_row][/et_pb_section]", "ABOUT", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2016-03-10 13:37:43", "2016-03-10 00:37:43", "", "2", "http://www.infinitymarketing.co.nz/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("185", "1", "2016-03-10 13:42:45", "2016-03-10 00:42:45", "[et_pb_section admin_label=\"section\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background-1.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"About Infinity Marketing Header\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: left;\">About Infinity Marketing</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hello I\'m Candice Venter Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\">Hello, I\'m Candice Venter.</h2>\r\n<h2 style=\"text-align: center;\">Your outsourced marketing team,\r\nhere to help you with marketing your small business\r\nwith marketing that works!</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nRight now, I\'m sure you\'re feeling like you are trying to juggle it all, to know every aspect of how to do everything for your business, and not sure how to get the results you need for your business to grow (or even survive!) and overall just frustrated and bombarded!\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><strong>I get it, balancing everything is HARD and you quite simply can\'t be the expert at everything. </strong></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI\'m here to show you that there is help and a light at the end of the tunnel where your business can succeed.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhy I love helping small businesses deliver outstanding marketing and see their businesses grow as a result, is because I am inspired by what amazing people and talents there are in our community. My passion is seeing other people succeed and I believe that everyone <strong>deserves</strong> to succeed.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI want this for you! I want to share my sills as a qualified and experienced marketing professional, to help your business grow and succeed.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/About-Candice-.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Get Personal Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#888e8f\" border_style=\"outset\" border_width=\"2px\"]\r\n<h2 style=\"text-align: justify;\">Care to get personal?</h2>\r\n<ul>\r\n	<li>Originally from South Africa, I have now lived half my life in Auckland, New Zealand. That means I have a good mix of being able to tell it straight, with a good lot of kiwi ingenuity.</li>\r\n	<li>I studied at the University of Auckland and have gained my professional experience in both Global corporations and a great kiwi start-up.</li>\r\n	<li>Family is my everything, this includes my 15 year old miniature sausage dog, Dante. It\'s for them, that I do what I do.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" global_module=\"179\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"179\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"179\" admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-me/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\">Take the first step toward your new future</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "ABOUT", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2016-03-10 13:42:45", "2016-03-10 00:42:45", "", "2", "http://www.infinitymarketing.co.nz/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("181", "1", "2016-03-10 13:41:38", "2016-03-10 00:41:38", "[et_pb_section admin_label=\"section\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background-1.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"About Infinity Marketing Header\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: left;\">About Infinity Marketing</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hello I\'m Candice Venter Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\">Hello, I\'m Candice Venter.</h2>\r\n<h2 style=\"text-align: center;\">Your outsourced marketing team,\r\nhere to help you with marketing your small business\r\nwith marketing that works!</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nRight now, I\'m sure you\'re feeling like you are trying to juggle it all, to know every aspect of how to do everything for your business, and not sure how to get the results you need for your business to grow (or even survive!) and overall just frustrated and bombarded!\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><strong>I get it, balancing everything is HARD and you quite simply can\'t be the expert at everything. </strong></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI\'m here to show you that there is help and a light at the end of the tunnel where your business can succeed.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhy I love helping small businesses deliver outstanding marketing and see their businesses grow as a result, is because I am inspired by what amazing people and talents there are in our community. My passion is seeing other people succeed and I believe that everyone <strong>deserves</strong> to succeed.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI want this for you! I want to share my sills as a qualified and experienced marketing professional, to help your business grow and succeed.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/About-Candice-.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Get Personal Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#888e8f\" border_style=\"outset\" border_width=\"2px\"]\r\n<h2 style=\"text-align: justify;\">Care to get personal?</h2>\r\n<ul>\r\n	<li>Originally from South Africa, I have now lived half my life in Auckland, New Zealand. That means I have a good mix of being able to tell it straight, with a good lot of kiwi ingenuity.</li>\r\n	<li>I studied at the University of Auckland and have gained my professional experience in both Global corporations and a great kiwi start-up.</li>\r\n	<li>Family is my everything, this includes my 15 year old miniature sausage dog, Dante. It\'s for them, that I do what I do.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" global_module=\"179\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"179\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"179\" admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-me/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\">Take the first step toward your new future\r\nand click below to Work With Me</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "ABOUT", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2016-03-10 13:41:38", "2016-03-10 00:41:38", "", "2", "http://www.infinitymarketing.co.nz/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("177", "1", "2016-03-10 13:38:33", "2016-03-10 00:38:33", "[et_pb_section admin_label=\"section\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background-1.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"About Infinity Marketing Header\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: left;\">About Infinity Marketing</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hello I\'m Candice Venter Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\">Hello, I\'m Candice Venter.</h2>\r\n<h2 style=\"text-align: center;\">Your outsourced marketing team,\r\nhere to help you with marketing your small business\r\nwith marketing that works!</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nRight now, I\'m sure you\'re feeling like you are trying to juggle it all, to know every aspect of how to do everything for your business, and not sure how to get the results you need for your business to grow (or even survive!) and overall just frustrated and bombarded!\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><strong>I get it, balancing everything is HARD and you quite simply can\'t be the expert at everything. </strong></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI\'m here to show you that there is help and a light at the end of the tunnel where your business can succeed.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhy I love helping small businesses deliver outstanding marketing and see their businesses grow as a result, is because I am inspired by what amazing people and talents there are in our community. My passion is seeing other people succeed and I believe that everyone <strong>deserves</strong> to succeed.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI want this for you! I want to share my sills as a qualified and experienced marketing professional, to help your business grow and succeed.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/About-Candice-.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Get Personal Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#888e8f\" border_style=\"outset\" border_width=\"2px\"]\r\n<h2 style=\"text-align: justify;\">Care to get personal?</h2>\r\n<ul>\r\n	<li>Originally from South Africa, I have now lived half my life in Auckland, New Zealand. That means I have a good mix of being able to tell it straight, with a good lot of kiwi ingenuity.</li>\r\n	<li>I studied at the University of Auckland and have gained my professional experience in both Global corporations and a great kiwi start-up.</li>\r\n	<li>Family is my everything, this includes my 15 year old miniature sausage dog, Dante. It\'s for them, that I do what I do.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background-1.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">Take the first step toward your new future\r\nand click below here to Work With Me</p>\r\n[/et_pb_text][et_pb_button admin_label=\"Work With Me Button\" button_url=\"http://www.infinitymarketing.co.nz/work-with-me/\" url_new_window=\"off\" button_text=\"Work With Me\" button_alignment=\"center\" background_layout=\"dark\" custom_button=\"on\" button_bg_color=\"#009edb\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][/et_pb_row][/et_pb_section]", "ABOUT", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2016-03-10 13:38:33", "2016-03-10 00:38:33", "", "2", "http://www.infinitymarketing.co.nz/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("178", "1", "2016-03-10 13:39:25", "2016-03-10 00:39:25", "[et_pb_section admin_label=\"section\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background-1.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"About Infinity Marketing Header\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: left;\">About Infinity Marketing</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hello I\'m Candice Venter Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\">Hello, I\'m Candice Venter.</h2>\r\n<h2 style=\"text-align: center;\">Your outsourced marketing team,\r\nhere to help you with marketing your small business\r\nwith marketing that works!</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nRight now, I\'m sure you\'re feeling like you are trying to juggle it all, to know every aspect of how to do everything for your business, and not sure how to get the results you need for your business to grow (or even survive!) and overall just frustrated and bombarded!\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><strong>I get it, balancing everything is HARD and you quite simply can\'t be the expert at everything. </strong></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI\'m here to show you that there is help and a light at the end of the tunnel where your business can succeed.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhy I love helping small businesses deliver outstanding marketing and see their businesses grow as a result, is because I am inspired by what amazing people and talents there are in our community. My passion is seeing other people succeed and I believe that everyone <strong>deserves</strong> to succeed.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI want this for you! I want to share my sills as a qualified and experienced marketing professional, to help your business grow and succeed.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/About-Candice-.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Get Personal Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#888e8f\" border_style=\"outset\" border_width=\"2px\"]\r\n<h2 style=\"text-align: justify;\">Care to get personal?</h2>\r\n<ul>\r\n	<li>Originally from South Africa, I have now lived half my life in Auckland, New Zealand. That means I have a good mix of being able to tell it straight, with a good lot of kiwi ingenuity.</li>\r\n	<li>I studied at the University of Auckland and have gained my professional experience in both Global corporations and a great kiwi start-up.</li>\r\n	<li>Family is my everything, this includes my 15 year old miniature sausage dog, Dante. It\'s for them, that I do what I do.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background-1.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3 style=\"text-align: center;\">Take the first step toward your new future\r\nand click below to Work With Me</h3>\r\n[/et_pb_text][et_pb_button admin_label=\"Work With Me Button\" button_url=\"http://www.infinitymarketing.co.nz/work-with-me/\" url_new_window=\"off\" button_text=\"Work With Me\" button_alignment=\"center\" background_layout=\"dark\" custom_button=\"on\" button_bg_color=\"#009edb\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][/et_pb_row][/et_pb_section]", "ABOUT", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2016-03-10 13:39:25", "2016-03-10 00:39:25", "", "2", "http://www.infinitymarketing.co.nz/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("179", "1", "2016-03-10 13:40:38", "2016-03-10 00:40:38", "[et_pb_section admin_label=\"CTA Background\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-us/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\n\n<p style=\"text-align: center;\">Take the first step toward your new future</p>\n\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Work With Me", "", "publish", "closed", "closed", "", "work-with-me", "", "", "2016-03-30 12:04:32", "2016-03-29 23:04:32", "", "0", "http://www.infinitymarketing.co.nz/et_pb_layout/work-with-me/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("180", "1", "2016-03-10 13:41:30", "2016-03-10 00:41:30", "[et_pb_section admin_label=\"CTA Background\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-me/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\n\n<p style=\"text-align: center;\">Take the first step toward your new future<br />and click below to Work With Me</p>\n\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Work With Me", "", "inherit", "closed", "closed", "", "179-revision-v1", "", "", "2016-03-10 13:41:30", "2016-03-10 00:41:30", "", "179", "http://www.infinitymarketing.co.nz/179-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("182", "1", "2016-03-10 13:42:12", "2016-03-10 00:42:12", "[et_pb_section admin_label=\"CTA Background\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-me/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\n\n<p style=\"text-align: center;\">Take the first step toward your new future<br /><br /></p>\n\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Work With Me", "", "inherit", "closed", "closed", "", "179-revision-v1", "", "", "2016-03-10 13:42:12", "2016-03-10 00:42:12", "", "179", "http://www.infinitymarketing.co.nz/179-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("183", "1", "2016-03-10 13:42:17", "2016-03-10 00:42:17", "[et_pb_section admin_label=\"section\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background-1.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"About Infinity Marketing Header\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: left;\">About Infinity Marketing</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hello I\'m Candice Venter Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\">Hello, I\'m Candice Venter.</h2>\r\n<h2 style=\"text-align: center;\">Your outsourced marketing team,\r\nhere to help you with marketing your small business\r\nwith marketing that works!</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nRight now, I\'m sure you\'re feeling like you are trying to juggle it all, to know every aspect of how to do everything for your business, and not sure how to get the results you need for your business to grow (or even survive!) and overall just frustrated and bombarded!\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><strong>I get it, balancing everything is HARD and you quite simply can\'t be the expert at everything. </strong></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI\'m here to show you that there is help and a light at the end of the tunnel where your business can succeed.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhy I love helping small businesses deliver outstanding marketing and see their businesses grow as a result, is because I am inspired by what amazing people and talents there are in our community. My passion is seeing other people succeed and I believe that everyone <strong>deserves</strong> to succeed.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI want this for you! I want to share my sills as a qualified and experienced marketing professional, to help your business grow and succeed.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/About-Candice-.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Get Personal Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#888e8f\" border_style=\"outset\" border_width=\"2px\"]\r\n<h2 style=\"text-align: justify;\">Care to get personal?</h2>\r\n<ul>\r\n	<li>Originally from South Africa, I have now lived half my life in Auckland, New Zealand. That means I have a good mix of being able to tell it straight, with a good lot of kiwi ingenuity.</li>\r\n	<li>I studied at the University of Auckland and have gained my professional experience in both Global corporations and a great kiwi start-up.</li>\r\n	<li>Family is my everything, this includes my 15 year old miniature sausage dog, Dante. It\'s for them, that I do what I do.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" global_module=\"179\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"179\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"179\" admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-me/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\">Take the first step toward your new future\r\n\r\n</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "ABOUT", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2016-03-10 13:42:17", "2016-03-10 00:42:17", "", "2", "http://www.infinitymarketing.co.nz/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("184", "1", "2016-03-10 13:42:41", "2016-03-10 00:42:41", "[et_pb_section admin_label=\"CTA Background\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-me/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\n\n<p style=\"text-align: center;\">Take the first step toward your new future</p>\n\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Work With Me", "", "inherit", "closed", "closed", "", "179-revision-v1", "", "", "2016-03-10 13:42:41", "2016-03-10 00:42:41", "", "179", "http://www.infinitymarketing.co.nz/179-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("186", "1", "2016-03-10 14:23:20", "2016-03-10 01:23:20", "[et_pb_section admin_label=\"Impact Background\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice-Infinity-Marketing-Banner-.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Impact Text\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/discover-v2.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_signup admin_label=\"Email Optin\" provider=\"mailchimp\" mailchimp_list=\"4419f44e8e\" aweber_list=\"none\" use_background_color=\"on\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"left\" use_focus_border_color=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" title=\"Get practical marketing tips delivered straight to your inbox\" button_text=\"Sign me up!\" header_font=\"Open Sans||||\" header_font_size=\"22\" body_font=\"Open Sans||||\"] [/et_pb_signup][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"0px|||\"]\r\n<h2 style=\"text-align: center;\">Building your dream business can be overwhelming</h2>\r\n<h2 style=\"text-align: center;\">and how do you know what marketing works?</h2>\r\n<p style=\"text-align: center;\">In your small business, you tend to try and juggle it all. But Infinity Marketing is here to help you,\r\nthrough marketing that suits your unique business and the stage that it is at.</p>\r\n<p style=\"text-align: center;\">We will work together with you, to gain a thorough understanding of who your customers are,\r\nand where they are, to deliver the best marketing for your small business.</p>\r\n<p style=\"text-align: center;\">You might know exactly what your business needs to get the extra punch it requires,\r\nand simply need help with implementation of your marketing plan, or you might just\r\nbe starting out and need a guiding hand to identify what needs to be done for your business marketing.</p>\r\n<p style=\"text-align: center;\">Whatever stage you are at, we can help you take your business to the next level,\r\nwhere the possibilities are infinite.</p>\r\n<p style=\"text-align: center;\"><strong><a href=\"http://www.infinitymarketing.co.nz/work-with-me/\">Let\'s discover how to make that happen for your business</a></strong></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#b3babf\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Connect CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Connect-1.png\" alt=\"Connect on Facebook\" show_in_lightbox=\"off\" url=\"http://www.facebook.com/infinitymarketing.co.nz\" url_new_window=\"on\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Services CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Services-1.png\" alt=\"View Services\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/work-with-me/\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Contact CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Contact-1.png\" alt=\"Contact us\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/contact/\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice-About_round.png\" alt=\"Candice Venter\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"About Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>About Candice</h2>\r\nCandice has has a passion for marketing for small businesses, having worked in both start up and large corporations, she has seen and done a lot. She has an absolute passion for helping small businesses grow through the power of marketing.\r\n\r\nAn expert in understanding who your customers are, understanding where they are and delivering messages that inspire action, Candice thrives on creating marketing that works.\r\n\r\nAbove all, she is passionate to see your business succeed.\r\n\r\n[/et_pb_text][et_pb_button admin_label=\"Read More Button\" button_url=\"http://www.infinitymarketing.co.nz/about/\" url_new_window=\"off\" button_text=\"Read More\" button_alignment=\"left\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#f9f9f9\" button_bg_color=\"#009edb\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon=\"%%28%%\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-me/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\">Discover the services we provide</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "HOME", "", "inherit", "closed", "closed", "", "37-revision-v1", "", "", "2016-03-10 14:23:20", "2016-03-10 01:23:20", "", "37", "http://www.infinitymarketing.co.nz/37-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("187", "1", "2016-03-10 14:24:28", "2016-03-10 01:24:28", "[et_pb_section admin_label=\"section\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background-1.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Blog Title\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBlog\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_blog admin_label=\"Blog\" fullwidth=\"on\" show_thumbnail=\"on\" show_content=\"off\" show_more=\"on\" show_author=\"on\" show_date=\"on\" show_categories=\"on\" show_comments=\"on\" show_pagination=\"on\" offset_number=\"0\" use_overlay=\"off\" background_layout=\"light\" use_dropshadow=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blog][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"right\" area=\"sidebar-1\" background_layout=\"light\" remove_border=\"off\"] [/et_pb_sidebar][/et_pb_column][/et_pb_row][/et_pb_section]", "BLOG", "", "inherit", "closed", "closed", "", "98-revision-v1", "", "", "2016-03-10 14:24:28", "2016-03-10 01:24:28", "", "98", "http://www.infinitymarketing.co.nz/98-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("188", "1", "2016-03-10 14:24:49", "2016-03-10 01:24:49", "[et_pb_section admin_label=\"section\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background-1.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Blog Title\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>Blog</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_blog admin_label=\"Blog\" fullwidth=\"on\" show_thumbnail=\"on\" show_content=\"off\" show_more=\"on\" show_author=\"on\" show_date=\"on\" show_categories=\"on\" show_comments=\"on\" show_pagination=\"on\" offset_number=\"0\" use_overlay=\"off\" background_layout=\"light\" use_dropshadow=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blog][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"right\" area=\"sidebar-1\" background_layout=\"light\" remove_border=\"off\"] [/et_pb_sidebar][/et_pb_column][/et_pb_row][/et_pb_section]", "BLOG", "", "inherit", "closed", "closed", "", "98-revision-v1", "", "", "2016-03-10 14:24:49", "2016-03-10 01:24:49", "", "98", "http://www.infinitymarketing.co.nz/98-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("189", "1", "2016-03-10 14:25:52", "2016-03-10 01:25:52", "[et_pb_section admin_label=\"section\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background-1.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"About Infinity Marketing Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">About Infinity Marketing</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hello I\'m Candice Venter Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\">Hello, I\'m Candice Venter.</h2>\r\n<h2 style=\"text-align: center;\">Your outsourced marketing team,\r\nhere to help you with marketing your small business\r\nwith marketing that works!</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nRight now, I\'m sure you\'re feeling like you are trying to juggle it all, to know every aspect of how to do everything for your business, and not sure how to get the results you need for your business to grow (or even survive!) and overall just frustrated and bombarded!\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><strong>I get it, balancing everything is HARD and you quite simply can\'t be the expert at everything. </strong></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI\'m here to show you that there is help and a light at the end of the tunnel where your business can succeed.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhy I love helping small businesses deliver outstanding marketing and see their businesses grow as a result, is because I am inspired by what amazing people and talents there are in our community. My passion is seeing other people succeed and I believe that everyone <strong>deserves</strong> to succeed.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI want this for you! I want to share my sills as a qualified and experienced marketing professional, to help your business grow and succeed.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/About-Candice-.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Get Personal Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#888e8f\" border_style=\"outset\" border_width=\"2px\"]\r\n<h2 style=\"text-align: justify;\">Care to get personal?</h2>\r\n<ul>\r\n	<li>Originally from South Africa, I have now lived half my life in Auckland, New Zealand. That means I have a good mix of being able to tell it straight, with a good lot of kiwi ingenuity.</li>\r\n	<li>I studied at the University of Auckland and have gained my professional experience in both Global corporations and a great kiwi start-up.</li>\r\n	<li>Family is my everything, this includes my 15 year old miniature sausage dog, Dante. It\'s for them, that I do what I do.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" global_module=\"179\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"179\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"179\" admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-me/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\">Take the first step toward your new future</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "ABOUT", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2016-03-10 14:25:52", "2016-03-10 01:25:52", "", "2", "http://www.infinitymarketing.co.nz/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("190", "1", "2016-03-10 14:26:34", "2016-03-10 01:26:34", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background-1.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Me Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Work With Me</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">We offer a raft of marketing services for your small business. Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.</p>\r\n<p style=\"text-align: center;\">We offer great monthly packages, which are fully customisable to suit your business needs; and one-off services.</p>\r\n<p style=\"text-align: center;\">All costs include any graphic design needed to deliver the messages beautifully.</p>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Monthly Packages Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>Monthly Packages</h2>\r\nMonthly marketing packages are customisable to your business needs. Need one thing one month and something else the next? Easy, we can swap it out!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\"] [et_pb_pricing_table featured=\"off\" title=\"Incredible\" currency=\"$\" per=\"month\" sum=\"xxx\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Monthly email\r\n\r\nFacebook cover and 2 posts\r\n\r\nWebsite content\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>One-off Services</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "WORK WITH ME", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2016-03-10 14:26:34", "2016-03-10 01:26:34", "", "39", "http://www.infinitymarketing.co.nz/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("191", "1", "2016-03-10 14:27:10", "2016-03-10 01:27:10", "[et_pb_section admin_label=\"section\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background-1.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Blog Title\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Blog</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_blog admin_label=\"Blog\" fullwidth=\"on\" show_thumbnail=\"on\" show_content=\"off\" show_more=\"on\" show_author=\"on\" show_date=\"on\" show_categories=\"on\" show_comments=\"on\" show_pagination=\"on\" offset_number=\"0\" use_overlay=\"off\" background_layout=\"light\" use_dropshadow=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blog][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"right\" area=\"sidebar-1\" background_layout=\"light\" remove_border=\"off\"] [/et_pb_sidebar][/et_pb_column][/et_pb_row][/et_pb_section]", "BLOG", "", "inherit", "closed", "closed", "", "98-revision-v1", "", "", "2016-03-10 14:27:10", "2016-03-10 01:27:10", "", "98", "http://www.infinitymarketing.co.nz/98-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("192", "1", "2016-03-10 14:28:41", "2016-03-10 01:28:41", "[et_pb_section fullwidth=\"off\" specialty=\"off\" admin_label=\"Section\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background-1.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Contact Title\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Contact</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nInfinity Marketing is based in Howick, Auckland; New Zealand\r\n\r\n<span class=\"phone\"><strong>Phone:</strong> 021 159 1215\r\n</span><span class=\"email\"><strong>E-mail: </strong>candice@infinitymarketing.co.nz</span>\r\n\r\nOr complete the form below to email us:\r\n\r\n[/et_pb_text][et_pb_contact_form admin_label=\"Contact Form\" captcha=\"on\" email=\"contact@infinitymarketing.co.nz\" use_redirect=\"off\" success_message=\"Sent!\" input_border_radius=\"0\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_contact_field field_title=\"Name\" field_type=\"input\" field_id=\"Name\" required_mark=\"on\" fullwidth_field=\"off\" /][et_pb_contact_field field_title=\"Email Address\" field_type=\"email\" field_id=\"Email\" required_mark=\"on\" fullwidth_field=\"off\" /][et_pb_contact_field field_title=\"Message\" field_type=\"text\" field_id=\"Message\" required_mark=\"on\" /] [/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][/et_pb_row][/et_pb_section]", "CONTACT", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2016-03-10 14:28:41", "2016-03-10 01:28:41", "", "43", "http://www.infinitymarketing.co.nz/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("193", "1", "2016-03-10 20:42:52", "2016-03-10 07:42:52", "[et_pb_section admin_label=\"section\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background-1.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"About Infinity Marketing Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">About Infinity Marketing</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hello I\'m Candice Venter Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\">Hello, I\'m Candice Venter.</h2>\r\n<h2 style=\"text-align: center;\">Your outsourced marketing team,\r\nhere to help you with marketing your small business\r\nwith marketing that works!</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nRight now, I\'m sure you\'re feeling like you are trying to juggle it all, to know every aspect of how to do everything for your business, and not sure how to get the results you need for your business to grow (or even survive!) and overall just frustrated and bombarded!\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><strong>I get it, balancing everything is HARD and you quite simply can\'t be the expert at everything. </strong></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI\'m here to show you that there is help and a light at the end of the tunnel where your business can succeed.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhy I love helping small businesses deliver outstanding marketing and see their businesses grow as a result, is because I am inspired by what amazing people and talents there are in our community. My passion is seeing other people succeed and I believe that everyone <strong>deserves</strong> to succeed.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI want this for you! I want to share my sills as a qualified and experienced marketing professional, to help your business grow and succeed.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/About-Candice-.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Get Personal Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#888e8f\" border_style=\"outset\" border_width=\"2px\"]\r\n<h2 style=\"text-align: justify;\">Let\'s get personal</h2>\r\n<ul>\r\n	<li>Originally from South Africa, I have now lived half my life in Auckland, New Zealand. That means I have a good mix of being able to tell it straight, with a good lot of kiwi ingenuity.</li>\r\n	<li>I studied at the University of Auckland and have gained my professional experience in both Global corporations and a great kiwi start-up.</li>\r\n	<li>Family is my everything, this includes my 15 year old miniature sausage dog, Dante. It\'s for them, that I do what I do.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" global_module=\"179\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"179\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"179\" admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-me/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\">Take the first step toward your new future</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "ABOUT", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2016-03-10 20:42:52", "2016-03-10 07:42:52", "", "2", "http://www.infinitymarketing.co.nz/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("195", "1", "2016-03-15 16:52:11", "2016-03-15 03:52:11", "Infinity Marketing", "Infinity Marketing", "", "inherit", "open", "closed", "", "infinity", "", "", "2016-03-15 16:52:30", "2016-03-15 03:52:30", "", "0", "http://www.infinitymarketing.co.nz/wp-content/uploads/2016/03/Infinity.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("196", "1", "2016-03-15 16:57:03", "2016-03-15 03:57:03", "[et_pb_section admin_label=\"section\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background-1.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"About Infinity Marketing Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">About Infinity Marketing</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hello I\'m Candice Venter Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\">Hello, I\'m Candice Venter.</h2>\r\n<h2 style=\"text-align: center;\"><em>Your outsourced marketing expert,</em>\r\n<em> here to help you with marketing your small business</em>\r\n<em> with marketing that works!</em></h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nRight now, I\'m sure you\'re feeling like you are trying to juggle it all, to know every aspect of how to do everything for your business, and not sure how to get the results you need for your business to grow (or even survive!) and overall just frustrated and bombarded!\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><strong>I get it, balancing everything is HARD and you quite simply can\'t be the expert at everything. </strong></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI\'m here to show you that there is help and a light at the end of the tunnel where your business can succeed.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhy I love helping small businesses deliver outstanding marketing and see their businesses grow as a result, is because I am inspired by what amazing people and talents there are in our community. My passion is seeing other people succeed and I believe that everyone <strong>deserves</strong> to succeed.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI want this for you! I want to share my sills as a qualified and experienced marketing professional, to help your business grow and succeed.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/About-Candice-.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Get Personal Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#888e8f\" border_style=\"outset\" border_width=\"2px\"]\r\n<h2 style=\"text-align: justify;\">Let\'s get personal</h2>\r\n<ul>\r\n	<li>Originally from South Africa, I have now lived half my life in Auckland, New Zealand. That means I have a good mix of being able to tell it straight, with a good lot of kiwi ingenuity.</li>\r\n	<li>I studied at the University of Auckland and have gained my professional experience in both Global corporations and a great kiwi start-up.</li>\r\n	<li>Family is my everything, this includes my 15 year old miniature sausage dog, Dante. It\'s for them, that I do what I do.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" global_module=\"179\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"179\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"179\" admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-me/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\">Take the first step toward your new future</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "ABOUT", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2016-03-15 16:57:03", "2016-03-15 03:57:03", "", "2", "http://www.infinitymarketing.co.nz/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("197", "1", "2016-03-15 16:58:12", "2016-03-15 03:58:12", "[et_pb_section admin_label=\"section\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background-1.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"About Infinity Marketing Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">About Infinity Marketing</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hello I\'m Candice Venter Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\">Hello, I\'m Candice Venter.</h2>\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h2 style=\"text-align: center;\"><em>Your outsourced marketing expert, </em><em>here to help you\r\nwith marketing your small business</em>\r\n<em> with marketing that works!</em></h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nRight now, I\'m sure you\'re feeling like you are trying to juggle it all, to know every aspect of how to do everything for your business, and not sure how to get the results you need for your business to grow (or even survive!) and overall just frustrated and bombarded!\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><strong>I get it, balancing everything is HARD and you quite simply can\'t be the expert at everything. </strong></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI\'m here to show you that there is help and a light at the end of the tunnel where your business can succeed.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhy I love helping small businesses deliver outstanding marketing and see their businesses grow as a result, is because I am inspired by what amazing people and talents there are in our community. My passion is seeing other people succeed and I believe that everyone <strong>deserves</strong> to succeed.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI want this for you! I want to share my sills as a qualified and experienced marketing professional, to help your business grow and succeed.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/About-Candice-.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Get Personal Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#888e8f\" border_style=\"outset\" border_width=\"2px\"]\r\n<h2 style=\"text-align: justify;\">Let\'s get personal</h2>\r\n<ul>\r\n	<li>Originally from South Africa, I have now lived half my life in Auckland, New Zealand. That means I have a good mix of being able to tell it straight, with a good lot of kiwi ingenuity.</li>\r\n	<li>I studied at the University of Auckland and have gained my professional experience in both Global corporations and a great kiwi start-up.</li>\r\n	<li>Family is my everything, this includes my 15 year old miniature sausage dog, Dante. It\'s for them, that I do what I do.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" global_module=\"179\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"179\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"179\" admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-me/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\">Take the first step toward your new future</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "ABOUT", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2016-03-15 16:58:12", "2016-03-15 03:58:12", "", "2", "http://www.infinitymarketing.co.nz/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("198", "1", "2016-03-15 16:59:08", "2016-03-15 03:59:08", "[et_pb_section admin_label=\"section\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background-1.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"About Infinity Marketing Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">About Infinity Marketing</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hello I\'m Candice Venter Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\"><strong>Hello, I\'m Candice Venter</strong></h2>\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h2 style=\"text-align: center;\"><em>Your outsourced marketing expert, </em><em>here to help you\r\nwith marketing your small business</em>\r\n<em> with marketing that works!</em></h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nRight now, I\'m sure you\'re feeling like you are trying to juggle it all, to know every aspect of how to do everything for your business, and not sure how to get the results you need for your business to grow (or even survive!) and overall just frustrated and bombarded!\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><strong>I get it, balancing everything is HARD and you quite simply can\'t be the expert at everything. </strong></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI\'m here to show you that there is help and a light at the end of the tunnel where your business can succeed.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhy I love helping small businesses deliver outstanding marketing and see their businesses grow as a result, is because I am inspired by what amazing people and talents there are in our community. My passion is seeing other people succeed and I believe that everyone <strong>deserves</strong> to succeed.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI want this for you! I want to share my sills as a qualified and experienced marketing professional, to help your business grow and succeed.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/About-Candice-.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Get Personal Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#888e8f\" border_style=\"outset\" border_width=\"2px\"]\r\n<h2 style=\"text-align: justify;\">Let\'s get personal</h2>\r\n<ul>\r\n	<li>Originally from South Africa, I have now lived half my life in Auckland, New Zealand. That means I have a good mix of being able to tell it straight, with a good lot of kiwi ingenuity.</li>\r\n	<li>I studied at the University of Auckland and have gained my professional experience in both Global corporations and a great kiwi start-up.</li>\r\n	<li>Family is my everything, this includes my 15 year old miniature sausage dog, Dante. It\'s for them, that I do what I do.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" global_module=\"179\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"179\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"179\" admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-me/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\">Take the first step toward your new future</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "ABOUT", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2016-03-15 16:59:08", "2016-03-15 03:59:08", "", "2", "http://www.infinitymarketing.co.nz/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("199", "1", "2016-03-15 17:03:34", "2016-03-15 04:03:34", "[et_pb_section admin_label=\"section\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background-1.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"About Infinity Marketing Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">About Infinity Marketing</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hello I\'m Candice Venter Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\"><strong>Hello, I\'m Candice Venter</strong></h2>\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h2 style=\"text-align: center;\"><em>Your outsourced marketing expert, </em><em>here to help you\r\nwith marketing your small business</em>\r\n<em> with marketing that works!</em></h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nRight now, I\'m sure you\'re feeling like you are trying to juggle it all, to know every aspect of how to do everything for your business, and not sure how to get the results you need for your business to grow (or even survive!) and overall just frustrated and bombarded!\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><strong>I get it, balancing everything is HARD and you quite simply can\'t be the expert at everything. </strong></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI\'m here to show you that there is help and a light at the end of the tunnel where your business can succeed.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhy I love helping small businesses deliver outstanding marketing and see their businesses grow as a result, is because I am inspired by what amazing people and talents there are in our community. My passion is seeing other people succeed and I believe that everyone <strong>deserves</strong> to succeed.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI want this for you! I want to share my sills as a qualified and experienced marketing professional, to help your business grow and succeed.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/About-Candice-.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#888e8f\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Get Personal Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#888e8f\" border_style=\"outset\" border_width=\"2px\"]\r\n<h2 style=\"text-align: justify;\">Let\'s get personal</h2>\r\n<ul>\r\n	<li>Originally from South Africa, I have now lived half my life in Auckland, New Zealand. That means I have a good mix of being able to tell it straight, with a good lot of kiwi ingenuity.</li>\r\n	<li>I studied at the University of Auckland and have gained my professional experience in both Global corporations and a great kiwi start-up.</li>\r\n	<li>Family is my everything, this includes my 15 year old miniature sausage dog, Dante. It\'s for them, that I do what I do.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" global_module=\"179\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"179\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"179\" admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-me/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\">Take the first step toward your new future</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "ABOUT", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2016-03-15 17:03:34", "2016-03-15 04:03:34", "", "2", "http://www.infinitymarketing.co.nz/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("202", "1", "2016-03-15 17:24:26", "2016-03-15 04:24:26", "[et_pb_section admin_label=\"section\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background-1.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"About Infinity Marketing Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">About Infinity Marketing</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hello I\'m Candice Venter Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\"><strong>Hello, I\'m Candice Venter</strong></h2>\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h2 style=\"text-align: center;\"><em>Your outsourced marketing expert, </em><em>here to help you\r\nwith marketing your small business</em>\r\n<em> with marketing that works!</em></h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nRight now, I\'m sure you\'re feeling like you are trying to juggle it all, to know every aspect of how to do everything for your business, and not sure how to get the results you need for your business to grow (or even survive!) and overall just frustrated and bombarded!\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><strong>I get it, balancing everything is HARD and you quite simply can\'t be the expert at everything. </strong></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI\'m here to show you that there is help and a light at the end of the tunnel where your business can succeed.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhy I love helping small businesses deliver outstanding marketing and see their businesses grow as a result, is because I am inspired by what amazing people and talents there are in our community. My passion is seeing other people succeed and I believe that everyone <strong>deserves</strong> to succeed.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI want this for you! I want to share my sills as a qualified and experienced marketing professional, to help your business grow and succeed.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/About-Candice-.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Get Personal Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#888e8f\" border_style=\"outset\" border_width=\"2px\"]\r\n<h2 style=\"text-align: justify;\">Let\'s get personal</h2>\r\n[/et_pb_text][et_pb_text admin_label=\"Get Personal Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOriginally from South Africa, I have now lived over half my life in Auckland, New Zealand. That means I have a good mix of being able to tell it straight, with a good dose of kiwi ingenuity. I studied a Bachelor of Business and Information Management, with a second major in Marketing at the University of Auckland and have gained my professional experience in both global corporations and a great kiwi start-up.\r\n\r\nFamily is my everything, this includes my 15 year old miniature sausage dog, Dante. It\'s for them, that I do what I do.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" global_module=\"179\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"179\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"179\" admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-me/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\">Take the first step toward your new future</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "ABOUT", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2016-03-15 17:24:26", "2016-03-15 04:24:26", "", "2", "http://www.infinitymarketing.co.nz/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("200", "1", "2016-03-15 17:09:04", "2016-03-15 04:09:04", "[et_pb_section admin_label=\"section\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background-1.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"About Infinity Marketing Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">About Infinity Marketing</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hello I\'m Candice Venter Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\"><strong>Hello, I\'m Candice Venter</strong></h2>\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h2 style=\"text-align: center;\"><em>Your outsourced marketing expert, </em><em>here to help you\r\nwith marketing your small business</em>\r\n<em> with marketing that works!</em></h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nRight now, I\'m sure you\'re feeling like you are trying to juggle it all, to know every aspect of how to do everything for your business, and not sure how to get the results you need for your business to grow (or even survive!) and overall just frustrated and bombarded!\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><strong>I get it, balancing everything is HARD and you quite simply can\'t be the expert at everything. </strong></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI\'m here to show you that there is help and a light at the end of the tunnel where your business can succeed.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhy I love helping small businesses deliver outstanding marketing and see their businesses grow as a result, is because I am inspired by what amazing people and talents there are in our community. My passion is seeing other people succeed and I believe that everyone <strong>deserves</strong> to succeed.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI want this for you! I want to share my sills as a qualified and experienced marketing professional, to help your business grow and succeed.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/About-Candice-.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Get Personal Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#888e8f\" border_style=\"outset\" border_width=\"2px\"]\r\n<h2 style=\"text-align: justify;\">Let\'s get personal</h2>\r\n[/et_pb_text][et_pb_text admin_label=\"Get Personal Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOriginally from South Africa, I have now lived over half my life in Auckland, New Zealand. That means I have a good mix of being able to tell it straight, with a good dose of kiwi ingenuity. I studied a Bachelor of Business and Information Management, with a second major in Marketing at the University of Auckland and have gained my professional experience in both global corporations and a great kiwi start-up.\r\n\r\nFamily is my everything, this includes my 15 year old miniature sausage dog, Dante. It\'s for them, that I do what I do.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" global_module=\"179\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"179\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"179\" admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-me/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\">Take the first step toward your new future</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "ABOUT", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2016-03-15 17:09:04", "2016-03-15 04:09:04", "", "2", "http://www.infinitymarketing.co.nz/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("201", "1", "2016-03-15 17:19:29", "2016-03-15 04:19:29", "[et_pb_section admin_label=\"section\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background-1.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"About Infinity Marketing Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">About Infinity Marketing</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hello I\'m Candice Venter Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\"><strong>Hello, I\'m Candice Venter</strong></h2>\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h2 style=\"text-align: center;\"><em>Your outsourced marketing expert, </em><em>here to help you\r\nwith marketing your small business</em>\r\n<em> with marketing that works!</em></h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nRight now, I\'m sure you\'re feeling like you are trying to juggle it all, to know every aspect of how to do everything for your business, and not sure how to get the results you need for your business to grow (or even survive!) and overall just frustrated and bombarded!\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><strong>I get it, balancing everything is HARD and you quite simply can\'t be the expert at everything. </strong></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI\'m here to show you that there is help and a light at the end of the tunnel where your business can succeed.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhy I love helping small businesses deliver outstanding marketing and see their businesses grow as a result, is because I am inspired by what amazing people and talents there are in our community. My passion is seeing other people succeed and I believe that everyone <strong>deserves</strong> to succeed.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI want this for you! I want to share my sills as a qualified and experienced marketing professional, to help your business grow and succeed.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Get Personal Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#888e8f\" border_style=\"outset\" border_width=\"2px\"]\r\n<h2 style=\"text-align: justify;\">Let\'s get personal</h2>\r\n[/et_pb_text][et_pb_text admin_label=\"Get Personal Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOriginally from South Africa, I have now lived over half my life in Auckland, New Zealand. That means I have a good mix of being able to tell it straight, with a good dose of kiwi ingenuity. I studied a Bachelor of Business and Information Management, with a second major in Marketing at the University of Auckland and have gained my professional experience in both global corporations and a great kiwi start-up.\r\n\r\nFamily is my everything, this includes my 15 year old miniature sausage dog, Dante. It\'s for them, that I do what I do.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/About-Candice-.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" global_module=\"179\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"179\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"179\" admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-me/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\">Take the first step toward your new future</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "ABOUT", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2016-03-15 17:19:29", "2016-03-15 04:19:29", "", "2", "http://www.infinitymarketing.co.nz/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("524", "1", "2016-12-20 15:47:29", "0000-00-00 00:00:00", "", "Auto Draft", "", "auto-draft", "open", "open", "", "", "", "", "2016-12-20 15:47:29", "0000-00-00 00:00:00", "", "0", "http://www.infinitymarketing.co.nz/?p=524", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("430", "1", "2016-04-29 16:34:38", "2016-04-29 04:34:38", "[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<h2>We also provide the following services</h2>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Coaching Blurb\" title=\"Coaching\" url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One on One coaching and consulting services, either as a one-off service or on an on-going basis. Helping you get your marketing on track, and stay on track.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Marketing Services Blurb\" title=\"Marketing Services\" url=\"www.infinitymarketing.co.nz/marketing-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p style=\"text-align: center;\">Ongoing Marketing Services ensures your marketing happens like clock-work. The wheels keep churning, and your marketing keeps working for you.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Other Services Blurb\" title=\"Other Services\" url=\"www.infinitymarketing.co.nz/other-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%171%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>We aim to provide all your marketing needs in one place, and work with specialists in order to do this. No need to find alternative suppliers, we can help you.</p>\n\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "We Also Provide Coaching, Marketing Services & Other Services", "", "inherit", "closed", "closed", "", "414-revision-v1", "", "", "2016-04-29 16:34:38", "2016-04-29 04:34:38", "", "414", "http://www.infinitymarketing.co.nz/414-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("429", "1", "2016-04-29 16:34:36", "2016-04-29 04:34:36", "[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<h2>We also provide the following services</h2>\n\n[/et_pb_text][et_pb_text admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<h2>We also provide the following services</h2>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Coaching Blurb\" title=\"Coaching\" url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One on One coaching and consulting services, either as a one-off service or on an on-going basis. Helping you get your marketing on track, and stay on track.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Marketing Services Blurb\" title=\"Marketing Services\" url=\"www.infinitymarketing.co.nz/marketing-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p style=\"text-align: center;\">Ongoing Marketing Services ensures your marketing happens like clock-work. The wheels keep churning, and your marketing keeps working for you.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Other Services Blurb\" title=\"Other Services\" url=\"www.infinitymarketing.co.nz/other-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%171%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>We aim to provide all your marketing needs in one place, and work with specialists in order to do this. No need to find alternative suppliers, we can help you.</p>\n\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "We Also Provide Coaching, Marketing Services & Other Services", "", "inherit", "closed", "closed", "", "414-revision-v1", "", "", "2016-04-29 16:34:36", "2016-04-29 04:34:36", "", "414", "http://www.infinitymarketing.co.nz/414-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("203", "1", "2016-03-16 12:46:04", "2016-03-15 23:46:04", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background-1.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Me Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Work With Me</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">We offer a raft of marketing services for your small business. Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.</p>\r\n<p style=\"text-align: center;\">We offer great monthly packages, which are fully customisable to suit your business needs; and one-off services.</p>\r\n<p style=\"text-align: center;\">All costs include any graphic design needed to deliver the messages beautifully.</p>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" admin_label=\"Section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Coaching Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>Coaching Packages</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTRO Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>INTRO Package</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTRO Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis is about getting the basics right. We look at your current activity, recognise what is working, recommend any improvements and establish a plan going forward. This may suit those who have already started marketing their business and need help to get more customers or get themselves on track.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Establish a top line plan to get you where you want to be</li>\r\n</ul>\r\nThis involves a 1 hour face-to-face (where possible) or skype session and you will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nThis package can be upgraded to the INITIATE package if you feel you would like to go into more detail and create an initial marketing plan.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTRO Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" /][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INITIATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>INITIATE Package</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INITIATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThe INITIATE package is about giving your marketing the huge push it needs, either when you first start your business or a little later down the track. This is a holistic approach, taking you from strategy, goals, and tactics through to implementation. This will provide a plan of action for the next year.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Explore your positioning and they key messages and selling points for your customers</li>\r\n	<li>Understand who your competitors are and what your point of difference is</li>\r\n	<li>Talk tactics on where to be present, identifying why and how to achieve this</li>\r\n	<li>Establish a plan for making your customers take action</li>\r\n	<li>Work together to formulate a marketing plan for the year</li>\r\n</ul>\r\nThis involves a 2 x 1.5 hour face-to-face (where possible) or skype sessions.  You will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nWe recommend you follow on to the INTEGRATE package as this package measures the effectiveness of your plan as implemented, and refines this on an ongoing basis.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INITIATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" /][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTEGRATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>INTEGRATE Package</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTEGRATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n(3 month minimum)\r\n\r\nThis is a one on one session twice per month where together, we ensure your marketing is on track. We can utilise measurement techniques to assess the effectiveness of your strategies and keeping you on track to achieve the desired goals.\r\n\r\nWe meet via skype* twice per month to discuss your progress, any ideas or opportunities, and bounce ideas around. (*This can also be done in one longer face to face session if possible)\r\n\r\nThese sessions will help to keep on track with your marketing plan, and guide you throughout the year to meet and exceed your marketing and business goals. By measuring the effectiveness of current strategies, refinements can be effected to ensure your marketing continues to maximise results.\r\n\r\nSupport is available by e-mail, Facebook or reasonable phone support throughout the month if required.\r\n\r\nWe recommend you begin with the INTRO Package before commencing this INTEGRATE Package .\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTEGRATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Monthly Packages Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>Monthly Packages</h2>\r\nMonthly marketing packages are customisable to your business needs. Need one thing one month and something else the next? Easy, we can swap it out!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\"] [et_pb_pricing_table featured=\"off\" title=\"Incredible\" currency=\"$\" per=\"month\" sum=\"xxx\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Monthly email\r\n\r\nFacebook cover and 2 posts\r\n\r\nWebsite content\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>One-off Services</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "WORK WITH ME", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2016-03-16 12:46:04", "2016-03-15 23:46:04", "", "39", "http://www.infinitymarketing.co.nz/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("204", "1", "2016-03-16 13:29:27", "2016-03-16 00:29:27", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background-1.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Me Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Work With Me</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">We offer a raft of marketing services for your small business. Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.</p>\r\n<p style=\"text-align: center;\">We offer great monthly packages, which are fully customisable to suit your business needs; and one-off services.</p>\r\n<p style=\"text-align: center;\">All costs include any graphic design needed to deliver the messages beautifully.</p>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Coaching Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>Coaching Packages</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTRO Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>INTRO Package</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTRO Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis is about getting the basics right. We look at your current activity, recognise what is working, recommend any improvements and establish a plan going forward. This may suit those who have already started marketing their business and need help to get more customers or get themselves on track.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Establish a top line plan to get you where you want to be</li>\r\n</ul>\r\nThis involves a 1 hour face-to-face (where possible) or skype session and you will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nThis package can be upgraded to the INITIATE package if you feel you would like to go into more detail and create an initial marketing plan.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTRO Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INITIATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>INITIATE Package</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INITIATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThe INITIATE package is about giving your marketing the huge push it needs, either when you first start your business or a little later down the track. This is a holistic approach, taking you from strategy, goals, and tactics through to implementation. This will provide a plan of action for the next year.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Explore your positioning and they key messages and selling points for your customers</li>\r\n	<li>Understand who your competitors are and what your point of difference is</li>\r\n	<li>Talk tactics on where to be present, identifying why and how to achieve this</li>\r\n	<li>Establish a plan for making your customers take action</li>\r\n	<li>Work together to formulate a marketing plan for the year</li>\r\n</ul>\r\nThis involves a 2 x 1.5 hour face-to-face (where possible) or skype sessions.  You will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nWe recommend you follow on to the INTEGRATE package as this package measures the effectiveness of your plan as implemented, and refines this on an ongoing basis.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INITIATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTEGRATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>INTEGRATE Package</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTEGRATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n(3 month minimum)\r\n\r\nThis is a one on one session twice per month where together, we ensure your marketing is on track. We can utilise measurement techniques to assess the effectiveness of your strategies and keeping you on track to achieve the desired goals.\r\n\r\nWe meet via skype* twice per month to discuss your progress, any ideas or opportunities, and bounce ideas around. (*This can also be done in one longer face to face session if possible)\r\n\r\nThese sessions will help to keep on track with your marketing plan, and guide you throughout the year to meet and exceed your marketing and business goals. By measuring the effectiveness of current strategies, refinements can be effected to ensure your marketing continues to maximise results.\r\n\r\nSupport is available by e-mail, Facebook or reasonable phone support throughout the month if required.\r\n\r\nWe recommend you begin with the INTRO Package before commencing this INTEGRATE Package .\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTEGRATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hands-on Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>Hands-on Packages</h2>\r\n<h3>We do the work for you</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\"] [et_pb_pricing_table featured=\"off\" title=\"Incredible\" currency=\"$\" per=\"month\" sum=\"300\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\n1 x Facebook/Instagram post content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\nMonthly e-mail newsletter\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table][et_pb_pricing_table featured=\"off\" title=\"Intermediate\" currency=\"$\" per=\"month\" sum=\"600\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\n2 x Facebook/ Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised  content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nFortnightly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>One-off Services</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "WORK WITH ME", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2016-03-16 13:29:27", "2016-03-16 00:29:27", "", "39", "http://www.infinitymarketing.co.nz/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("205", "1", "2016-03-16 13:34:05", "2016-03-16 00:34:05", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background-1.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Me Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Work With Me</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">We offer a raft of marketing services for your small business. Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.</p>\r\n<p style=\"text-align: center;\">We offer great monthly packages, which are fully customisable to suit your business needs; and one-off services.</p>\r\n<p style=\"text-align: center;\">All costs include any graphic design needed to deliver the messages beautifully.</p>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Coaching Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>Coaching Packages</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTRO Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>INTRO Package</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTRO Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis is about getting the basics right. We look at your current activity, recognise what is working, recommend any improvements and establish a plan going forward. This may suit those who have already started marketing their business and need help to get more customers or get themselves on track.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Establish a top line plan to get you where you want to be</li>\r\n</ul>\r\nThis involves a 1 hour face-to-face (where possible) or skype session and you will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nThis package can be upgraded to the INITIATE package if you feel you would like to go into more detail and create an initial marketing plan.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTRO Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INITIATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>INITIATE Package</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INITIATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThe INITIATE package is about giving your marketing the huge push it needs, either when you first start your business or a little later down the track. This is a holistic approach, taking you from strategy, goals, and tactics through to implementation. This will provide a plan of action for the next year.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Explore your positioning and they key messages and selling points for your customers</li>\r\n	<li>Understand who your competitors are and what your point of difference is</li>\r\n	<li>Talk tactics on where to be present, identifying why and how to achieve this</li>\r\n	<li>Establish a plan for making your customers take action</li>\r\n	<li>Work together to formulate a marketing plan for the year</li>\r\n</ul>\r\nThis involves a 2 x 1.5 hour face-to-face (where possible) or skype sessions.  You will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nWe recommend you follow on to the INTEGRATE package as this package measures the effectiveness of your plan as implemented, and refines this on an ongoing basis.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INITIATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTEGRATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>INTEGRATE Package</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTEGRATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n(3 month minimum)\r\n\r\nThis is a one on one session twice per month where together, we ensure your marketing is on track. We can utilise measurement techniques to assess the effectiveness of your strategies and keeping you on track to achieve the desired goals.\r\n\r\nWe meet via skype* twice per month to discuss your progress, any ideas or opportunities, and bounce ideas around. (*This can also be done in one longer face to face session if possible)\r\n\r\nThese sessions will help to keep on track with your marketing plan, and guide you throughout the year to meet and exceed your marketing and business goals. By measuring the effectiveness of current strategies, refinements can be effected to ensure your marketing continues to maximise results.\r\n\r\nSupport is available by e-mail, Facebook or reasonable phone support throughout the month if required.\r\n\r\nWe recommend you begin with the INTRO Package before commencing this INTEGRATE Package .\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTEGRATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hands-on Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>Hands-on Packages</h2>\r\n<h3>We do the work for you</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\"] [et_pb_pricing_table featured=\"off\" title=\"Incredible\" currency=\"$\" per=\"month\" sum=\"300\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\n1 x Facebook/Instagram post content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\nMonthly e-mail newsletter\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table][et_pb_pricing_table featured=\"off\" title=\"Intermediate\" currency=\"$\" per=\"month\" sum=\"600\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\n2 x Facebook/ Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised  content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nFortnightly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" /][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" /][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>One-off Services</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "WORK WITH ME", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2016-03-16 13:34:05", "2016-03-16 00:34:05", "", "39", "http://www.infinitymarketing.co.nz/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("436", "1", "2016-04-29 16:35:08", "2016-04-29 04:35:08", "[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<h2>We also provide the following services</h2>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Coaching Blurb\" title=\"Coaching\" url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One on One coaching and consulting services, either as a one-off service or on an on-going basis. Helping you get your marketing on track, and stay on track.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Marketing Services Blurb\" title=\"Marketing Services\" url=\"www.infinitymarketing.co.nz/marketing-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p style=\"text-align: center;\">Ongoing Marketing Services ensures your marketing happens like clock-work. The wheels keep churning, and your marketing keeps working for you.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Other Services Blurb\" title=\"Other Services\" url=\"www.infinitymarketing.co.nz/other-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%171%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>We aim to provide all your marketing needs in one place, and work with specialists in order to do this. No need to find alternative suppliers, we can help you.</p>\n\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "We Also Provide Coaching, Marketing Services & Other Services", "", "inherit", "closed", "closed", "", "414-revision-v1", "", "", "2016-04-29 16:35:08", "2016-04-29 04:35:08", "", "414", "http://www.infinitymarketing.co.nz/414-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("435", "1", "2016-04-29 16:35:06", "2016-04-29 04:35:06", "[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<h2>We also provide the following services</h2>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Coaching Blurb\" title=\"Coaching\" url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One on One coaching and consulting services, either as a one-off service or on an on-going basis. Helping you get your marketing on track, and stay on track.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Marketing Services Blurb\" title=\"Marketing Services\" url=\"www.infinitymarketing.co.nz/marketing-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p style=\"text-align: center;\">Ongoing Marketing Services ensures your marketing happens like clock-work. The wheels keep churning, and your marketing keeps working for you.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Other Services Blurb\" title=\"Other Services\" url=\"www.infinitymarketing.co.nz/other-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%171%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>We aim to provide all your marketing needs in one place, and work with specialists in order to do this. No need to find alternative suppliers, we can help you.</p>\n\n[/et_pb_blurb][et_pb_blurb admin_label=\"Other Services Blurb\" title=\"Other Services\" url=\"www.infinitymarketing.co.nz/other-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%171%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>We aim to provide all your marketing needs in one place, and work with specialists in order to do this. No need to find alternative suppliers, we can help you.</p>\n\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "We Also Provide Coaching, Marketing Services & Other Services", "", "inherit", "closed", "closed", "", "414-revision-v1", "", "", "2016-04-29 16:35:06", "2016-04-29 04:35:06", "", "414", "http://www.infinitymarketing.co.nz/414-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("206", "1", "2016-03-16 13:40:49", "2016-03-16 00:40:49", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background-1.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Me Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Work With Me</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">We offer a raft of marketing services for your small business. Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.</p>\r\n<p style=\"text-align: center;\">We offer great monthly packages, which are fully customisable to suit your business needs; and one-off services.</p>\r\n<p style=\"text-align: center;\">All costs include any graphic design needed to deliver the messages beautifully.</p>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Coaching Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>Coaching Packages</h2>\r\n<h3>We coach, and you implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTRO Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>INTRO Package</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTRO Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis is about getting the basics right. We look at your current activity, recognise what is working, recommend any improvements and establish a plan going forward. This may suit those who have already started marketing their business and need help to get more customers or get themselves on track.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Establish a top line plan to get you where you want to be</li>\r\n</ul>\r\nThis involves a 1 hour face-to-face (where possible) or skype session and you will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nThis package can be upgraded to the INITIATE package if you feel you would like to go into more detail and create an initial marketing plan.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTRO Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INITIATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>INITIATE Package</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INITIATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThe INITIATE package is about giving your marketing the huge push it needs, either when you first start your business or a little later down the track. This is a holistic approach, taking you from strategy, goals, and tactics through to implementation. This will provide a plan of action for the next year.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Explore your positioning and they key messages and selling points for your customers</li>\r\n	<li>Understand who your competitors are and what your point of difference is</li>\r\n	<li>Talk tactics on where to be present, identifying why and how to achieve this</li>\r\n	<li>Establish a plan for making your customers take action</li>\r\n	<li>Work together to formulate a marketing plan for the year</li>\r\n</ul>\r\nThis involves a 2 x 1.5 hour face-to-face (where possible) or skype sessions.  You will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nWe recommend you follow on to the INTEGRATE package as this package measures the effectiveness of your plan as implemented, and refines this on an ongoing basis.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INITIATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTEGRATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>INTEGRATE Package</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTEGRATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n(3 month minimum)\r\n\r\nThis is a one on one session twice per month where together, we ensure your marketing is on track. We can utilise measurement techniques to assess the effectiveness of your strategies and keeping you on track to achieve the desired goals.\r\n\r\nWe meet via skype* twice per month to discuss your progress, any ideas or opportunities, and bounce ideas around. (*This can also be done in one longer face to face session if possible)\r\n\r\nThese sessions will help to keep on track with your marketing plan, and guide you throughout the year to meet and exceed your marketing and business goals. By measuring the effectiveness of current strategies, refinements can be effected to ensure your marketing continues to maximise results.\r\n\r\nSupport is available by e-mail, Facebook or reasonable phone support throughout the month if required.\r\n\r\nWe recommend you begin with the INTRO Package before commencing this INTEGRATE Package .\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTEGRATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hands-on Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>Hands-on Packages</h2>\r\n<h3>We implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Incredible Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\"] [et_pb_pricing_table featured=\"off\" title=\"Incredible\" currency=\"$\" per=\"month\" sum=\"300\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\n1 x Facebook / Instagram post content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\nMonthly e-mail newsletter\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Intermediate Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\"] [et_pb_pricing_table featured=\"off\" title=\"Intermediate\" currency=\"$\" per=\"month\" sum=\"600\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\n2 x Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised  content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nFortnightly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Advanced Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\"] [et_pb_pricing_table featured=\"off\" title=\"Advanced\" currency=\"$\" per=\"month\" sum=\"900\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nWeekly Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nWeekly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\"] [et_pb_pricing_table featured=\"off\" title=\"Expert\" currency=\"$\" per=\"month\" sum=\"1500\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nTwice weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n2 x Facebook cover content &amp; artwork\r\n\r\n2 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n2 x blog posts with search engine optimised\r\n\r\nPoint of sale content &amp; artwork\r\n\r\nManage media bookings/ad campaigns (Social Media/Google)\r\n\r\nWeekly e-mail newsletter\r\n\r\nWebsite updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\"] [et_pb_pricing_table featured=\"off\" title=\"Custom\" currency=\"$\" per=\"month\" sum=\"?\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nWe can design a custom package that suits the unique needs of your business.\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>One-off Services</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "WORK WITH ME", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2016-03-16 13:40:49", "2016-03-16 00:40:49", "", "39", "http://www.infinitymarketing.co.nz/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("207", "1", "2016-03-16 14:26:52", "2016-03-16 01:26:52", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background-1.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Me Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Work With Me</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Me Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">We offer a range of marketing services for your small business. Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.</p>\r\n<p style=\"text-align: center;\">We offer great monthly packages, which are fully customisable to suit your business needs; and one-off services.</p>\r\n<p style=\"text-align: center;\">All costs include any graphic design needed to deliver the messages beautifully.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Coaching Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>Coaching Packages</h2>\r\n<h3>We coach, and you implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTRO Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>INTRO Package</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTRO Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis is about getting the basics right. We look at your current activity, recognise what is working, recommend any improvements and establish a plan going forward. This may suit those who have already started marketing their business and need help to get more customers or get themselves on track.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Establish a top line plan to get you where you want to be</li>\r\n</ul>\r\nThis involves a 1 hour face-to-face (where possible) or skype session and you will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nThis package can be upgraded to the INITIATE package if you feel you would like to go into more detail and create an initial marketing plan.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTRO Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INITIATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>INITIATE Package</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INITIATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThe INITIATE package is about giving your marketing the huge push it needs, either when you first start your business or a little later down the track. This is a holistic approach, taking you from strategy, goals, and tactics through to implementation. This will provide a plan of action for the next year.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Explore your positioning and they key messages and selling points for your customers</li>\r\n	<li>Understand who your competitors are and what your point of difference is</li>\r\n	<li>Talk tactics on where to be present, identifying why and how to achieve this</li>\r\n	<li>Establish a plan for making your customers take action</li>\r\n	<li>Work together to formulate a marketing plan for the year</li>\r\n</ul>\r\nThis involves a 2 x 1.5 hour face-to-face (where possible) or skype sessions.  You will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nWe recommend you follow on to the INTEGRATE package as this package measures the effectiveness of your plan as implemented, and refines this on an ongoing basis.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INITIATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTEGRATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>INTEGRATE Package</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTEGRATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n(3 month minimum)\r\n\r\nThis is a one on one session twice per month where together, we ensure your marketing is on track. We can utilise measurement techniques to assess the effectiveness of your strategies and keeping you on track to achieve the desired goals.\r\n\r\nWe meet via skype* twice per month to discuss your progress, any ideas or opportunities, and bounce ideas around. (*This can also be done in one longer face to face session if possible)\r\n\r\nThese sessions will help to keep on track with your marketing plan, and guide you throughout the year to meet and exceed your marketing and business goals. By measuring the effectiveness of current strategies, refinements can be effected to ensure your marketing continues to maximise results.\r\n\r\nSupport is available by e-mail, Facebook or reasonable phone support throughout the month if required.\r\n\r\nWe recommend you begin with the INTRO Package before commencing this INTEGRATE Package .\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTEGRATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hands-on Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>Hands-on Packages</h2>\r\n<h3>We implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\"] [et_pb_pricing_table featured=\"off\" title=\"Custom\" currency=\"$\" per=\"month\" sum=\"?\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nWe can design a custom package that suits the unique needs of your business.\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Incredible Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\"] [et_pb_pricing_table featured=\"off\" title=\"Incredible\" currency=\"$\" per=\"month\" sum=\"300\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\n1 x Facebook / Instagram post content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\nMonthly e-mail newsletter\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Intermediate Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\"] [et_pb_pricing_table featured=\"off\" title=\"Intermediate\" currency=\"$\" per=\"month\" sum=\"600\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\n2 x Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised  content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nFortnightly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Advanced Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\"] [et_pb_pricing_table featured=\"off\" title=\"Advanced\" currency=\"$\" per=\"month\" sum=\"900\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nWeekly Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nWeekly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\"] [et_pb_pricing_table featured=\"off\" title=\"Expert\" currency=\"$\" per=\"month\" sum=\"1500\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nTwice weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n2 x Facebook cover content &amp; artwork\r\n\r\n2 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n2 x blog posts with search engine optimised\r\n\r\nPoint of sale content &amp; artwork\r\n\r\nManage media bookings/ad campaigns (Social Media/Google)\r\n\r\nWeekly e-mail newsletter\r\n\r\nWebsite updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Projects Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>Individual Projects</h2>\r\n<h3>We help you with a specific item of work</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nPrices below include effective marketing copy and design.\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"234\">Brochures</td>\r\n<td width=\"95\">&nbsp;</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          One sided flyer</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Double sided flyer</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Multi-page  DLE brochure</td>\r\n<td width=\"95\">$195</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Poster</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Point of sale</td>\r\n<td width=\"95\">$ P.O.A</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website Content (200 words)</td>\r\n<td width=\"95\">$89</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Blog (400-600 words)</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">E-mail Campaign</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Cover Photo &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Post artwork &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website content revamp^</td>\r\n<td width=\"95\">$725</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Products Footer Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n^A more accurate quote will be given depending on your website and amount of content\r\n\r\nPrices shown in NZD &amp; Excludes GST and travel.\r\n\r\nExcludes cost of stock images (if required). Any detailed artwork such as illustration or other will be quoted separately.\r\n\r\nIf what you are looking for is not listed above, it does not necessarily mean we do not offer the service, please contact us for a quote.\r\n\r\nPrices above include marketing copy and design and includes 2 revisions, further revisions will be quoted. Prices are available for content only options, proofing only options and design only options.\r\n\r\nPrinting can be arranged and will be quoted separately. Photography and video options can be arranged and quoted for separately\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" admin_label=\"Section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>Other Services</h2>\r\n<h3>We offer a number of other services - please contact us for a quote</h3>\r\n[/et_pb_text][et_pb_portfolio admin_label=\"Other Services Portfolio\" fullwidth=\"on\" posts_number=\"8\" show_title=\"on\" show_categories=\"on\" show_pagination=\"on\" background_layout=\"light\" hover_overlay_color=\"rgba(255,255,255,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "WORK WITH ME", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2016-03-16 14:26:52", "2016-03-16 01:26:52", "", "39", "http://www.infinitymarketing.co.nz/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("208", "1", "2016-03-16 14:30:54", "2016-03-16 01:30:54", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background-1.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Me Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Work With Me</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Me Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">We offer a range of marketing services for your small business. Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.</p>\r\n<p style=\"text-align: center;\">We offer great monthly packages, which are fully customisable to suit your business needs; and one-off services.</p>\r\n<p style=\"text-align: center;\">All costs include any graphic design needed to deliver the messages beautifully.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Coaching Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>Coaching Packages</h2>\r\n<h3>We coach, and you implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTRO Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>INTRO Package</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTRO Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis is about getting the basics right. We look at your current activity, recognise what is working, recommend any improvements and establish a plan going forward. This may suit those who have already started marketing their business and need help to get more customers or get themselves on track.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Establish a top line plan to get you where you want to be</li>\r\n</ul>\r\nThis involves a 1 hour face-to-face (where possible) or skype session and you will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nThis package can be upgraded to the INITIATE package if you feel you would like to go into more detail and create an initial marketing plan.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTRO Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INITIATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>INITIATE Package</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INITIATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThe INITIATE package is about giving your marketing the huge push it needs, either when you first start your business or a little later down the track. This is a holistic approach, taking you from strategy, goals, and tactics through to implementation. This will provide a plan of action for the next year.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Explore your positioning and they key messages and selling points for your customers</li>\r\n	<li>Understand who your competitors are and what your point of difference is</li>\r\n	<li>Talk tactics on where to be present, identifying why and how to achieve this</li>\r\n	<li>Establish a plan for making your customers take action</li>\r\n	<li>Work together to formulate a marketing plan for the year</li>\r\n</ul>\r\nThis involves a 2 x 1.5 hour face-to-face (where possible) or skype sessions.  You will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nWe recommend you follow on to the INTEGRATE package as this package measures the effectiveness of your plan as implemented, and refines this on an ongoing basis.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INITIATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTEGRATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>INTEGRATE Package</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTEGRATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n(3 month minimum)\r\n\r\nThis is a one on one session twice per month where together, we ensure your marketing is on track. We can utilise measurement techniques to assess the effectiveness of your strategies and keeping you on track to achieve the desired goals.\r\n\r\nWe meet via skype* twice per month to discuss your progress, any ideas or opportunities, and bounce ideas around. (*This can also be done in one longer face to face session if possible)\r\n\r\nThese sessions will help to keep on track with your marketing plan, and guide you throughout the year to meet and exceed your marketing and business goals. By measuring the effectiveness of current strategies, refinements can be effected to ensure your marketing continues to maximise results.\r\n\r\nSupport is available by e-mail, Facebook or reasonable phone support throughout the month if required.\r\n\r\nWe recommend you begin with the INTRO Package before commencing this INTEGRATE Package .\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTEGRATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hands-on Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>Hands-on Packages</h2>\r\n<h3>We implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\"] [et_pb_pricing_table featured=\"off\" title=\"Custom\" currency=\"$\" per=\"month\" sum=\"?\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nWe can design a custom package that suits the unique needs of your business.\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Incredible Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\"] [et_pb_pricing_table featured=\"off\" title=\"Incredible\" currency=\"$\" per=\"month\" sum=\"300\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\n1 x Facebook / Instagram post content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\nMonthly e-mail newsletter\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Intermediate Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\"] [et_pb_pricing_table featured=\"off\" title=\"Intermediate\" currency=\"$\" per=\"month\" sum=\"600\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\n2 x Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised  content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nFortnightly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Advanced Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\"] [et_pb_pricing_table featured=\"off\" title=\"Advanced\" currency=\"$\" per=\"month\" sum=\"900\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nWeekly Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nWeekly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\"] [et_pb_pricing_table featured=\"off\" title=\"Expert\" currency=\"$\" per=\"month\" sum=\"1500\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nTwice weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n2 x Facebook cover content &amp; artwork\r\n\r\n2 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n2 x blog posts with search engine optimised\r\n\r\nPoint of sale content &amp; artwork\r\n\r\nManage media bookings/ad campaigns (Social Media/Google)\r\n\r\nWeekly e-mail newsletter\r\n\r\nWebsite updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Projects Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>Individual Projects</h2>\r\n<h3>We help you with a specific item of work</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nPrices below include effective marketing copy and design.\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"234\">Brochures</td>\r\n<td width=\"95\"></td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          One sided flyer</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Double sided flyer</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Multi-page  DLE brochure</td>\r\n<td width=\"95\">$195</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Poster</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Point of sale</td>\r\n<td width=\"95\">$ P.O.A</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website Content (200 words)</td>\r\n<td width=\"95\">$89</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Blog (400-600 words)</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">E-mail Campaign</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Cover Photo &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Post artwork &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website content revamp^</td>\r\n<td width=\"95\">$725</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Products Footer Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n^A more accurate quote will be given depending on your website and amount of content\r\n\r\nPrices shown in NZD &amp; Excludes GST and travel.\r\n\r\nExcludes cost of stock images (if required). Any detailed artwork such as illustration or other will be quoted separately.\r\n\r\nIf what you are looking for is not listed above, it does not necessarily mean we do not offer the service, please contact us for a quote.\r\n\r\nPrices above include marketing copy and design and includes 2 revisions, further revisions will be quoted. Prices are available for content only options, proofing only options and design only options.\r\n\r\nPrinting can be arranged and will be quoted separately. Photography and video options can be arranged and quoted for separately\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>Other Services</h2>\r\n<h3>We offer a number of other services - please contact us for a quote</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Graphic Design</p>\r\n</td>\r\n<td style=\"text-align: center;\" width=\"154\">Printing</td>\r\n<td style=\"text-align: center;\" width=\"154\">Photography</td>\r\n<td style=\"text-align: center;\" width=\"154\">Videography</td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\">Event Management</td>\r\n<td style=\"text-align: center;\" width=\"154\">Website Development</td>\r\n<td style=\"text-align: center;\" width=\"154\">Proof Reading</td>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Advertising Bookings &amp; Management</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "WORK WITH ME", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2016-03-16 14:30:54", "2016-03-16 01:30:54", "", "39", "http://www.infinitymarketing.co.nz/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("209", "1", "2016-03-16 14:33:56", "2016-03-16 01:33:56", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background-1.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Me Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Work With Me</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Me Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">We offer a range of marketing services for your small business. Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.</p>\r\n<p style=\"text-align: center;\">We offer great monthly packages, which are fully customisable to suit your business needs; and one-off services.</p>\r\n<p style=\"text-align: center;\">All costs include any graphic design needed to deliver the messages beautifully.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Coaching Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>Coaching Packages</h2>\r\n<h3>We coach, and you implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTRO Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>INTRO Package</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTRO Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis is about getting the basics right. We look at your current activity, recognise what is working, recommend any improvements and establish a plan going forward. This may suit those who have already started marketing their business and need help to get more customers or get themselves on track.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Establish a top line plan to get you where you want to be</li>\r\n</ul>\r\nThis involves a 1 hour face-to-face (where possible) or skype session and you will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nThis package can be upgraded to the INITIATE package if you feel you would like to go into more detail and create an initial marketing plan.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTRO Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INITIATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>INITIATE Package</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INITIATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThe INITIATE package is about giving your marketing the huge push it needs, either when you first start your business or a little later down the track. This is a holistic approach, taking you from strategy, goals, and tactics through to implementation. This will provide a plan of action for the next year.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Explore your positioning and they key messages and selling points for your customers</li>\r\n	<li>Understand who your competitors are and what your point of difference is</li>\r\n	<li>Talk tactics on where to be present, identifying why and how to achieve this</li>\r\n	<li>Establish a plan for making your customers take action</li>\r\n	<li>Work together to formulate a marketing plan for the year</li>\r\n</ul>\r\nThis involves a 2 x 1.5 hour face-to-face (where possible) or skype sessions.  You will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nWe recommend you follow on to the INTEGRATE package as this package measures the effectiveness of your plan as implemented, and refines this on an ongoing basis.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INITIATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTEGRATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>INTEGRATE Package</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTEGRATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n(3 month minimum)\r\n\r\nThis is a one on one session twice per month where together, we ensure your marketing is on track. We can utilise measurement techniques to assess the effectiveness of your strategies and keeping you on track to achieve the desired goals.\r\n\r\nWe meet via skype* twice per month to discuss your progress, any ideas or opportunities, and bounce ideas around. (*This can also be done in one longer face to face session if possible)\r\n\r\nThese sessions will help to keep on track with your marketing plan, and guide you throughout the year to meet and exceed your marketing and business goals. By measuring the effectiveness of current strategies, refinements can be effected to ensure your marketing continues to maximise results.\r\n\r\nSupport is available by e-mail, Facebook or reasonable phone support throughout the month if required.\r\n\r\nWe recommend you begin with the INTRO Package before commencing this INTEGRATE Package .\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTEGRATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hands-on Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>Hands-on Packages</h2>\r\n<h3>We implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\"] [et_pb_pricing_table featured=\"off\" title=\"Custom\" currency=\"$\" per=\"month\" sum=\"?\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nWe can design a custom package that suits the unique needs of your business.\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Incredible Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"70\"] [et_pb_pricing_table featured=\"off\" title=\"Incredible\" currency=\"$\" per=\"month\" sum=\"300\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\n1 x Facebook / Instagram post content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\nMonthly e-mail newsletter\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Intermediate Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"70\"] [et_pb_pricing_table featured=\"off\" title=\"Intermediate\" currency=\"$\" per=\"month\" sum=\"600\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\n2 x Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised  content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nFortnightly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Advanced Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"70\"] [et_pb_pricing_table featured=\"off\" title=\"Advanced\" currency=\"$\" per=\"month\" sum=\"900\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nWeekly Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nWeekly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Expert Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"70\"] [et_pb_pricing_table featured=\"off\" title=\"Expert\" currency=\"$\" per=\"month\" sum=\"1500\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nTwice weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n2 x Facebook cover content &amp; artwork\r\n\r\n2 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n2 x blog posts with search engine optimised\r\n\r\nPoint of sale content &amp; artwork\r\n\r\nManage media bookings/ad campaigns (Social Media/Google)\r\n\r\nWeekly e-mail newsletter\r\n\r\nWebsite updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Projects Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>Individual Projects</h2>\r\n<h3>We help you with a specific item of work</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nPrices below include effective marketing copy and design.\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"234\">Brochures</td>\r\n<td width=\"95\"></td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          One sided flyer</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Double sided flyer</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Multi-page  DLE brochure</td>\r\n<td width=\"95\">$195</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Poster</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Point of sale</td>\r\n<td width=\"95\">$ P.O.A</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website Content (200 words)</td>\r\n<td width=\"95\">$89</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Blog (400-600 words)</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">E-mail Campaign</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Cover Photo &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Post artwork &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website content revamp^</td>\r\n<td width=\"95\">$725</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Products Footer Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n^A more accurate quote will be given depending on your website and amount of content\r\n\r\nPrices shown in NZD &amp; Excludes GST and travel.\r\n\r\nExcludes cost of stock images (if required). Any detailed artwork such as illustration or other will be quoted separately.\r\n\r\nIf what you are looking for is not listed above, it does not necessarily mean we do not offer the service, please contact us for a quote.\r\n\r\nPrices above include marketing copy and design and includes 2 revisions, further revisions will be quoted. Prices are available for content only options, proofing only options and design only options.\r\n\r\nPrinting can be arranged and will be quoted separately. Photography and video options can be arranged and quoted for separately\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>Other Services</h2>\r\n<h3>We offer a number of other services - please contact us for a quote</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Graphic Design</p>\r\n</td>\r\n<td style=\"text-align: center;\" width=\"154\">Printing</td>\r\n<td style=\"text-align: center;\" width=\"154\">Photography</td>\r\n<td style=\"text-align: center;\" width=\"154\">Videography</td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\">Event Management</td>\r\n<td style=\"text-align: center;\" width=\"154\">Website Development</td>\r\n<td style=\"text-align: center;\" width=\"154\">Proof Reading</td>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Advertising Bookings &amp; Management</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "WORK WITH ME", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2016-03-16 14:33:56", "2016-03-16 01:33:56", "", "39", "http://www.infinitymarketing.co.nz/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("210", "1", "2016-03-16 14:36:24", "2016-03-16 01:36:24", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background-1.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Me Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Work With Me</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Me Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">We offer a range of marketing services for your small business. Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.</p>\r\n<p style=\"text-align: center;\">We offer great monthly packages, which are fully customisable to suit your business needs; and one-off services.</p>\r\n<p style=\"text-align: center;\">All costs include any graphic design needed to deliver the messages beautifully.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Coaching Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>Coaching Packages</h2>\r\n<h3>We coach, and you implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTRO Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>INTRO Package</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTRO Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis is about getting the basics right. We look at your current activity, recognise what is working, recommend any improvements and establish a plan going forward. This may suit those who have already started marketing their business and need help to get more customers or get themselves on track.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Establish a top line plan to get you where you want to be</li>\r\n</ul>\r\nThis involves a 1 hour face-to-face (where possible) or skype session and you will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nThis package can be upgraded to the INITIATE package if you feel you would like to go into more detail and create an initial marketing plan.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTRO Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INITIATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>INITIATE Package</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INITIATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThe INITIATE package is about giving your marketing the huge push it needs, either when you first start your business or a little later down the track. This is a holistic approach, taking you from strategy, goals, and tactics through to implementation. This will provide a plan of action for the next year.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Explore your positioning and they key messages and selling points for your customers</li>\r\n	<li>Understand who your competitors are and what your point of difference is</li>\r\n	<li>Talk tactics on where to be present, identifying why and how to achieve this</li>\r\n	<li>Establish a plan for making your customers take action</li>\r\n	<li>Work together to formulate a marketing plan for the year</li>\r\n</ul>\r\nThis involves a 2 x 1.5 hour face-to-face (where possible) or skype sessions.  You will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nWe recommend you follow on to the INTEGRATE package as this package measures the effectiveness of your plan as implemented, and refines this on an ongoing basis.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INITIATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTEGRATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>INTEGRATE Package</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTEGRATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n(3 month minimum)\r\n\r\nThis is a one on one session twice per month where together, we ensure your marketing is on track. We can utilise measurement techniques to assess the effectiveness of your strategies and keeping you on track to achieve the desired goals.\r\n\r\nWe meet via skype* twice per month to discuss your progress, any ideas or opportunities, and bounce ideas around. (*This can also be done in one longer face to face session if possible)\r\n\r\nThese sessions will help to keep on track with your marketing plan, and guide you throughout the year to meet and exceed your marketing and business goals. By measuring the effectiveness of current strategies, refinements can be effected to ensure your marketing continues to maximise results.\r\n\r\nSupport is available by e-mail, Facebook or reasonable phone support throughout the month if required.\r\n\r\nWe recommend you begin with the INTRO Package before commencing this INTEGRATE Package .\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTEGRATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hands-on Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>Hands-on Packages</h2>\r\n<h3>We implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Custom\" currency=\"$\" per=\"month\" sum=\"?\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nWe can design a custom package that suits the unique needs of your business.\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Incredible Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Incredible\" currency=\"$\" per=\"month\" sum=\"300\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\n1 x Facebook / Instagram post content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\nMonthly e-mail newsletter\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Intermediate Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Intermediate\" currency=\"$\" per=\"month\" sum=\"600\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\n2 x Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised  content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nFortnightly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Advanced Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Advanced\" currency=\"$\" per=\"month\" sum=\"900\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nWeekly Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nWeekly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Expert Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Expert\" currency=\"$\" per=\"month\" sum=\"1500\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nTwice weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n2 x Facebook cover content &amp; artwork\r\n\r\n2 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n2 x blog posts with search engine optimised\r\n\r\nPoint of sale content &amp; artwork\r\n\r\nManage media bookings/ad campaigns (Social Media/Google)\r\n\r\nWeekly e-mail newsletter\r\n\r\nWebsite updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Projects Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>Individual Projects</h2>\r\n<h3>We help you with a specific item of work</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nPrices below include effective marketing copy and design.\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"234\">Brochures</td>\r\n<td width=\"95\"></td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          One sided flyer</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Double sided flyer</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Multi-page  DLE brochure</td>\r\n<td width=\"95\">$195</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Poster</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Point of sale</td>\r\n<td width=\"95\">$ P.O.A</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website Content (200 words)</td>\r\n<td width=\"95\">$89</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Blog (400-600 words)</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">E-mail Campaign</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Cover Photo &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Post artwork &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website content revamp^</td>\r\n<td width=\"95\">$725</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Products Footer Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n^A more accurate quote will be given depending on your website and amount of content\r\n\r\nPrices shown in NZD &amp; Excludes GST and travel.\r\n\r\nExcludes cost of stock images (if required). Any detailed artwork such as illustration or other will be quoted separately.\r\n\r\nIf what you are looking for is not listed above, it does not necessarily mean we do not offer the service, please contact us for a quote.\r\n\r\nPrices above include marketing copy and design and includes 2 revisions, further revisions will be quoted. Prices are available for content only options, proofing only options and design only options.\r\n\r\nPrinting can be arranged and will be quoted separately. Photography and video options can be arranged and quoted for separately\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>Other Services</h2>\r\n<h3>We offer a number of other services - please contact us for a quote</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Graphic Design</p>\r\n</td>\r\n<td style=\"text-align: center;\" width=\"154\">Printing</td>\r\n<td style=\"text-align: center;\" width=\"154\">Photography</td>\r\n<td style=\"text-align: center;\" width=\"154\">Videography</td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\">Event Management</td>\r\n<td style=\"text-align: center;\" width=\"154\">Website Development</td>\r\n<td style=\"text-align: center;\" width=\"154\">Proof Reading</td>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Advertising Bookings &amp; Management</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "WORK WITH ME", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2016-03-16 14:36:24", "2016-03-16 01:36:24", "", "39", "http://www.infinitymarketing.co.nz/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("211", "1", "2016-03-16 14:46:15", "2016-03-16 01:46:15", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background-1.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Me Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<h1 style=\"text-align: center;\">Work With Me</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Me Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p style=\"text-align: center;\">We offer a range of marketing services for your small business. Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.</p>\r\n<p style=\"text-align: center;\">We offer great monthly packages, which are fully customisable to suit your business needs; and one-off services.</p>\r\n<p style=\"text-align: center;\">All costs include any graphic design needed to deliver the messages beautifully.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Coaching Image\" show_in_lightbox=\"off\" url=\"#Coaching-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Hands-on Packages Image\" show_in_lightbox=\"off\" url=\"#Hands-on-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Individual Services Image\" show_in_lightbox=\"off\" url=\"#Individual-Projects\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Other Services Image\" show_in_lightbox=\"off\" url=\"#Other-Serivces\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Coaching Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<a name=\"Coaching-Packages\"><h2>Coaching Packages</h2></a>\r\n<h3>We coach, and you implement your marketing</h3>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTRO Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<h3>INTRO Package</h3>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"INTRO Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis is about getting the basics right. We look at your current activity, recognise what is working, recommend any improvements and establish a plan going forward. This may suit those who have already started marketing their business and need help to get more customers or get themselves on track.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Establish a top line plan to get you where you want to be</li>\r\n</ul>\r\nThis involves a 1 hour face-to-face (where possible) or skype session and you will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nThis package can be upgraded to the INITIATE package if you feel you would like to go into more detail and create an initial marketing plan.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTRO Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INITIATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<h3>INITIATE Package</h3>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"INITIATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThe INITIATE package is about giving your marketing the huge push it needs, either when you first start your business or a little later down the track. This is a holistic approach, taking you from strategy, goals, and tactics through to implementation. This will provide a plan of action for the next year.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Explore your positioning and they key messages and selling points for your customers</li>\r\n	<li>Understand who your competitors are and what your point of difference is</li>\r\n	<li>Talk tactics on where to be present, identifying why and how to achieve this</li>\r\n	<li>Establish a plan for making your customers take action</li>\r\n	<li>Work together to formulate a marketing plan for the year</li>\r\n</ul>\r\nThis involves a 2 x 1.5 hour face-to-face (where possible) or skype sessions.  You will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nWe recommend you follow on to the INTEGRATE package as this package measures the effectiveness of your plan as implemented, and refines this on an ongoing basis.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INITIATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTEGRATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<h3>INTEGRATE Package</h3>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"INTEGRATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n(3 month minimum)\r\n\r\nThis is a one on one session twice per month where together, we ensure your marketing is on track. We can utilise measurement techniques to assess the effectiveness of your strategies and keeping you on track to achieve the desired goals.\r\n\r\nWe meet via skype* twice per month to discuss your progress, any ideas or opportunities, and bounce ideas around. (*This can also be done in one longer face to face session if possible)\r\n\r\nThese sessions will help to keep on track with your marketing plan, and guide you throughout the year to meet and exceed your marketing and business goals. By measuring the effectiveness of current strategies, refinements can be effected to ensure your marketing continues to maximise results.\r\n\r\nSupport is available by e-mail, Facebook or reasonable phone support throughout the month if required.\r\n\r\nWe recommend you begin with the INTRO Package before commencing this INTEGRATE Package .\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTEGRATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hands-on Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<a name=\"Hands-on-Packages\"><h2>Hands-on&nbsp;Packages</h2></a>\r\n<h3>We implement your marketing</h3>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"]\r\n\r\n[et_pb_pricing_table featured=\"off\" title=\"Custom\" currency=\"$\" per=\"month\" sum=\"?\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]We can design a custom package that suits the unique needs of your business.\r\n\r\n[/et_pb_pricing_table]\r\n\r\n[/et_pb_pricing_tables][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Incredible Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"]\r\n\r\n[et_pb_pricing_table featured=\"off\" title=\"Incredible\" currency=\"$\" per=\"month\" sum=\"300\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]1 x Facebook / Instagram post content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\nMonthly e-mail newsletter\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table]\r\n\r\n[/et_pb_pricing_tables][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Intermediate Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"]\r\n\r\n[et_pb_pricing_table featured=\"off\" title=\"Intermediate\" currency=\"$\" per=\"month\" sum=\"600\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]2 x Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised  content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nFortnightly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table]\r\n\r\n[/et_pb_pricing_tables][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Advanced Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"]\r\n\r\n[et_pb_pricing_table featured=\"off\" title=\"Advanced\" currency=\"$\" per=\"month\" sum=\"900\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nWeekly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table]\r\n\r\n[/et_pb_pricing_tables][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Expert Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"]\r\n\r\n[et_pb_pricing_table featured=\"off\" title=\"Expert\" currency=\"$\" per=\"month\" sum=\"1500\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Twice weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n2 x Facebook cover content &amp; artwork\r\n\r\n2 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n2 x blog posts with search engine optimised\r\n\r\nPoint of sale content &amp; artwork\r\n\r\nManage media bookings/ad campaigns (Social Media/Google)\r\n\r\nWeekly e-mail newsletter\r\n\r\nWebsite updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table]\r\n\r\n[/et_pb_pricing_tables][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Projects Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<a name=\"Individual-Projects\"><h2>Individual Projects</h2></a>\r\n<h3>We help you with a specific item of work</h3>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nPrices below include effective marketing copy and design.\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"234\">Brochures</td>\r\n<td width=\"95\"></td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          One sided flyer</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Double sided flyer</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Multi-page  DLE brochure</td>\r\n<td width=\"95\">$195</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Poster</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Point of sale</td>\r\n<td width=\"95\">$ P.O.A</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website Content (200 words)</td>\r\n<td width=\"95\">$89</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Blog (400-600 words)</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">E-mail Campaign</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Cover Photo &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Post artwork &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website content revamp^</td>\r\n<td width=\"95\">$725</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Products Footer Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n^A more accurate quote will be given depending on your website and amount of content\r\n\r\nPrices shown in NZD &amp; Excludes GST and travel.\r\n\r\nExcludes cost of stock images (if required). Any detailed artwork such as illustration or other will be quoted separately.\r\n\r\nIf what you are looking for is not listed above, it does not necessarily mean we do not offer the service, please contact us for a quote.\r\n\r\nPrices above include marketing copy and design and includes 2 revisions, further revisions will be quoted. Prices are available for content only options, proofing only options and design only options.\r\n\r\nPrinting can be arranged and will be quoted separately. Photography and video options can be arranged and quoted for separately\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<a name=\"Other-Services\"><h2>Other Services</h2></a>\r\n<h3>We offer a number of other services - please contact us for a quote</h3>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Graphic Design</p>\r\n</td>\r\n<td style=\"text-align: center;\" width=\"154\">Printing</td>\r\n<td style=\"text-align: center;\" width=\"154\">Photography</td>\r\n<td style=\"text-align: center;\" width=\"154\">Videography</td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\">Event Management</td>\r\n<td style=\"text-align: center;\" width=\"154\">Website Development</td>\r\n<td style=\"text-align: center;\" width=\"154\">Proof Reading</td>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Advertising Bookings &amp; Management</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "WORK WITH ME", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2016-03-16 14:46:15", "2016-03-16 01:46:15", "", "39", "http://www.infinitymarketing.co.nz/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("212", "1", "2016-03-16 15:32:59", "2016-03-16 02:32:59", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background-1.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Me Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Work With Me</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Me Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">We offer a range of marketing services for your small business. Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.</p>\r\n<p style=\"text-align: center;\">We offer great monthly packages, which are fully customisable to suit your business needs; and one-off services.</p>\r\n<p style=\"text-align: center;\">All costs include any graphic design needed to deliver the messages beautifully.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Coaching Image\" show_in_lightbox=\"off\" url=\"#Coaching-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Hands-on Packages Image\" show_in_lightbox=\"off\" url=\"#Hands-on-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Individual Services Image\" show_in_lightbox=\"off\" url=\"#Individual-Projects\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Other Services Image\" show_in_lightbox=\"off\" url=\"#Other-Serivces\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Coaching Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<a name=\"Coaching-Packages\"></a>\r\n<h2>Coaching Packages</h2>\r\n<a name=\"Coaching-Packages\"></a>\r\n\r\n&nbsp;\r\n\r\n<a name=\"Coaching-Packages\"></a>\r\n<h3>We coach, and you implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTRO Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>INTRO Package - $189</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTRO Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis is about getting the basics right. We look at your current activity, recognise what is working, recommend any improvements and establish a plan going forward. This may suit those who have already started marketing their business and need help to get more customers or get themselves on track.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Establish a top line plan to get you where you want to be</li>\r\n</ul>\r\nThis involves a 1 hour face-to-face (where possible) or skype session and you will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nThis package can be upgraded to the INITIATE package if you feel you would like to go into more detail and create an initial marketing plan.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTRO Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INITIATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>INITIATE Package - $589</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INITIATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThe INITIATE package is about giving your marketing the huge push it needs, either when you first start your business or a little later down the track. This is a holistic approach, taking you from strategy, goals, and tactics through to implementation. This will provide a plan of action for the next year.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Explore your positioning and they key messages and selling points for your customers</li>\r\n	<li>Understand who your competitors are and what your point of difference is</li>\r\n	<li>Talk tactics on where to be present, identifying why and how to achieve this</li>\r\n	<li>Establish a plan for making your customers take action</li>\r\n	<li>Work together to formulate a marketing plan for the year</li>\r\n</ul>\r\nThis involves a 2 x 1.5 hour face-to-face (where possible) or skype sessions.  You will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nWe recommend you follow on to the INTEGRATE package as this package measures the effectiveness of your plan as implemented, and refines this on an ongoing basis.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INITIATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTEGRATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>INTEGRATE Monthly Package - $289 per month</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTEGRATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n(3 month minimum)\r\n\r\nThis is a one on one session twice per month where together, we ensure your marketing is on track. We can utilise measurement techniques to assess the effectiveness of your strategies and keeping you on track to achieve the desired goals.\r\n\r\nWe meet via skype* twice per month to discuss your progress, any ideas or opportunities, and bounce ideas around. (*This can also be done in one longer face to face session if possible)\r\n\r\nThese sessions will help to keep on track with your marketing plan, and guide you throughout the year to meet and exceed your marketing and business goals. By measuring the effectiveness of current strategies, refinements can be effected to ensure your marketing continues to maximise results.\r\n\r\nSupport is available by e-mail, Facebook or reasonable phone support throughout the month if required.\r\n\r\nWe recommend you begin with the INTRO Package before commencing this INTEGRATE Package .\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTEGRATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hands-on Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<a name=\"Hands-on-Packages\"></a>\r\n<h2>Hands-on Packages</h2>\r\n<a name=\"Hands-on-Packages\"></a>\r\n\r\n&nbsp;\r\n\r\n<a name=\"Hands-on-Packages\"></a>\r\n<h3>We implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"]\r\n\r\n[et_pb_pricing_table featured=\"off\" title=\"Custom\" currency=\"$\" per=\"month\" sum=\"?\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]We can design a custom package that suits the unique needs of your business.\r\n\r\n[/et_pb_pricing_table]\r\n\r\n[/et_pb_pricing_tables][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Incredible Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"]\r\n\r\n[et_pb_pricing_table featured=\"off\" title=\"Incredible\" currency=\"$\" per=\"month\" sum=\"300\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]1 x Facebook / Instagram post content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\nMonthly e-mail newsletter\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table]\r\n\r\n[/et_pb_pricing_tables][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Intermediate Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"]\r\n\r\n[et_pb_pricing_table featured=\"off\" title=\"Intermediate\" currency=\"$\" per=\"month\" sum=\"600\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]2 x Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised  content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nFortnightly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table]\r\n\r\n[/et_pb_pricing_tables][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Advanced Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"]\r\n\r\n[et_pb_pricing_table featured=\"off\" title=\"Advanced\" currency=\"$\" per=\"month\" sum=\"900\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nWeekly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table]\r\n\r\n[/et_pb_pricing_tables][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Expert Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"]\r\n\r\n[et_pb_pricing_table featured=\"off\" title=\"Expert\" currency=\"$\" per=\"month\" sum=\"1500\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Twice weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n2 x Facebook cover content &amp; artwork\r\n\r\n2 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n2 x blog posts with search engine optimised\r\n\r\nPoint of sale content &amp; artwork\r\n\r\nManage media bookings/ad campaigns (Social Media/Google)\r\n\r\nWeekly e-mail newsletter\r\n\r\nWebsite updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table]\r\n\r\n[/et_pb_pricing_tables][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Projects Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<a name=\"Individual-Projects\"></a>\r\n<h2>Individual Projects</h2>\r\n<a name=\"Individual-Projects\"></a>\r\n\r\n&nbsp;\r\n\r\n<a name=\"Individual-Projects\"></a>\r\n<h3>We help you with a specific item of work</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nPrices below include effective marketing copy and design.\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"234\">Brochures</td>\r\n<td width=\"95\"></td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          One sided flyer</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Double sided flyer</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Multi-page  DLE brochure</td>\r\n<td width=\"95\">$195</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Poster</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Point of sale</td>\r\n<td width=\"95\">$ P.O.A</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website Content (200 words)</td>\r\n<td width=\"95\">$89</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Blog (400-600 words)</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">E-mail Campaign</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Cover Photo &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Post artwork &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website content revamp^</td>\r\n<td width=\"95\">$725</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Products Footer Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n^A more accurate quote will be given depending on your website and amount of content\r\n\r\nPrices shown in NZD &amp; Excludes GST and travel.\r\n\r\nExcludes cost of stock images (if required). Any detailed artwork such as illustration or other will be quoted separately.\r\n\r\nIf what you are looking for is not listed above, it does not necessarily mean we do not offer the service, please contact us for a quote.\r\n\r\nPrices above include marketing copy and design and includes 2 revisions, further revisions will be quoted. Prices are available for content only options, proofing only options and design only options.\r\n\r\nPrinting can be arranged and will be quoted separately. Photography and video options can be arranged and quoted for separately\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<a name=\"Other-Services\"></a>\r\n<h2>Other Services</h2>\r\n<a name=\"Other-Services\"></a>\r\n\r\n&nbsp;\r\n\r\n<a name=\"Other-Services\"></a>\r\n<h3>We offer a number of other services - please contact us for a quote</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Graphic Design</p>\r\n</td>\r\n<td style=\"text-align: center;\" width=\"154\">Printing</td>\r\n<td style=\"text-align: center;\" width=\"154\">Photography</td>\r\n<td style=\"text-align: center;\" width=\"154\">Videography</td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\">Event Management</td>\r\n<td style=\"text-align: center;\" width=\"154\">Website Development</td>\r\n<td style=\"text-align: center;\" width=\"154\">Proof Reading</td>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Advertising Bookings &amp; Management</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "WORK WITH ME", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2016-03-16 15:32:59", "2016-03-16 02:32:59", "", "39", "http://www.infinitymarketing.co.nz/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("214", "1", "2016-03-16 15:38:23", "2016-03-16 02:38:23", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background-1.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Me Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Work With Me</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Me Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">We offer a range of marketing services for your small business. Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.</p>\r\n<p style=\"text-align: center;\">We offer great monthly packages, which are fully customisable to suit your business needs; and one-off services.</p>\r\n<p style=\"text-align: center;\">All costs include any graphic design needed to deliver the messages beautifully.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Coaching Image\" show_in_lightbox=\"off\" url=\"#Coaching-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Hands-on Packages Image\" show_in_lightbox=\"off\" url=\"#Hands-on-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Individual Services Image\" show_in_lightbox=\"off\" url=\"#Individual-Projects\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Other Services Image\" show_in_lightbox=\"off\" url=\"#Other-Serivces\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Coaching Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Coaching-Packages\"></a>Coaching Packages<a name=\"Coaching-Packages\"></a></h2>\r\n<h3>We coach, and you implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTRO Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTRO Package - $189</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTRO Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis is about getting the basics right. We look at your current activity, recognise what is working, recommend any improvements and establish a plan going forward. This may suit those who have already started marketing their business and need help to get more customers or get themselves on track.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Establish a top line plan to get you where you want to be</li>\r\n</ul>\r\nThis involves a 1 hour face-to-face (where possible) or skype session and you will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nThis package can be upgraded to the INITIATE package if you feel you would like to go into more detail and create an initial marketing plan.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTRO Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INITIATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INITIATE Package - $589</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INITIATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThe INITIATE package is about giving your marketing the huge push it needs, either when you first start your business or a little later down the track. This is a holistic approach, taking you from strategy, goals, and tactics through to implementation. This will provide a plan of action for the next year.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Explore your positioning and they key messages and selling points for your customers</li>\r\n	<li>Understand who your competitors are and what your point of difference is</li>\r\n	<li>Talk tactics on where to be present, identifying why and how to achieve this</li>\r\n	<li>Establish a plan for making your customers take action</li>\r\n	<li>Work together to formulate a marketing plan for the year</li>\r\n</ul>\r\nThis involves a 2 x 1.5 hour face-to-face (where possible) or skype sessions.  You will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nWe recommend you follow on to the INTEGRATE package as this package measures the effectiveness of your plan as implemented, and refines this on an ongoing basis.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INITIATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTEGRATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTEGRATE Monthly Package - $289 per month</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTEGRATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n(3 month minimum)\r\n\r\nThis is a one on one session twice per month where together, we ensure your marketing is on track. We can utilise measurement techniques to assess the effectiveness of your strategies and keeping you on track to achieve the desired goals.\r\n\r\nWe meet via skype* twice per month to discuss your progress, any ideas or opportunities, and bounce ideas around. (*This can also be done in one longer face to face session if possible)\r\n\r\nThese sessions will help to keep on track with your marketing plan, and guide you throughout the year to meet and exceed your marketing and business goals. By measuring the effectiveness of current strategies, refinements can be effected to ensure your marketing continues to maximise results.\r\n\r\nSupport is available by e-mail, Facebook or reasonable phone support throughout the month if required.\r\n\r\nWe recommend you begin with the INTRO Package before commencing this INTEGRATE Package .\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTEGRATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hands-on Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Hands-on-Packages\"></a>Hands-on Packages<a name=\"Hands-on-Packages\"></a></h2>\r\n<h3>We implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Custom\" currency=\"$\" per=\"month\" sum=\"?\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]We can design a custom package that suits the unique needs of your business.[/et_pb_pricing_table] [/et_pb_pricing_tables][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Incredible Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Incredible\" currency=\"$\" per=\"month\" sum=\"300\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]1 x Facebook / Instagram post content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\nMonthly e-mail newsletter\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Intermediate Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Intermediate\" currency=\"$\" per=\"month\" sum=\"600\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]2 x Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised  content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nFortnightly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Advanced Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Advanced\" currency=\"$\" per=\"month\" sum=\"900\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nWeekly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Expert Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Expert\" currency=\"$\" per=\"month\" sum=\"1500\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Twice weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n2 x Facebook cover content &amp; artwork\r\n\r\n2 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n2 x blog posts with search engine optimised\r\n\r\nPoint of sale content &amp; artwork\r\n\r\nManage media bookings/ad campaigns (Social Media/Google)\r\n\r\nWeekly e-mail newsletter\r\n\r\nWebsite updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Projects Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Individual-Projects\"></a>Individual Projects<a name=\"Individual-Projects\"></a></h2>\r\n<h3>We help you with a specific item of work</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nPrices below include effective marketing copy and design.\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"234\">Brochures</td>\r\n<td width=\"95\"></td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          One sided flyer</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Double sided flyer</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Multi-page  DLE brochure</td>\r\n<td width=\"95\">$195</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Poster</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Point of sale</td>\r\n<td width=\"95\">$ P.O.A</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website Content (200 words)</td>\r\n<td width=\"95\">$89</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Blog (400-600 words)</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">E-mail Campaign</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Cover Photo &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Post artwork &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website content revamp^</td>\r\n<td width=\"95\">$725</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Products Footer Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n^A more accurate quote will be given depending on your website and amount of content\r\n\r\nPrices shown in NZD &amp; Excludes GST and travel.\r\n\r\nExcludes cost of stock images (if required). Any detailed artwork such as illustration or other will be quoted separately.\r\n\r\nIf what you are looking for is not listed above, it does not necessarily mean we do not offer the service, please contact us for a quote.\r\n\r\nPrices above include marketing copy and design and includes 2 revisions, further revisions will be quoted. Prices are available for content only options, proofing only options and design only options.\r\n\r\nPrinting can be arranged and will be quoted separately. Photography and video options can be arranged and quoted for separately\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Other-Services\"></a>Other Services<a name=\"Other-Services\"></a></h2>\r\n<h3>We offer a number of other services - please contact us for a quote</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Graphic Design</p>\r\n</td>\r\n<td style=\"text-align: center;\" width=\"154\">Printing</td>\r\n<td style=\"text-align: center;\" width=\"154\">Photography</td>\r\n<td style=\"text-align: center;\" width=\"154\">Videography</td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\">Event Management</td>\r\n<td style=\"text-align: center;\" width=\"154\">Website Development</td>\r\n<td style=\"text-align: center;\" width=\"154\">Proof Reading</td>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Advertising Bookings &amp; Management</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "WORK WITH ME", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2016-03-16 15:38:23", "2016-03-16 02:38:23", "", "39", "http://www.infinitymarketing.co.nz/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("213", "1", "2016-03-16 15:36:01", "2016-03-16 02:36:01", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background-1.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Me Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Work With Me</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Me Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">We offer a range of marketing services for your small business. Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.</p>\r\n<p style=\"text-align: center;\">We offer great monthly packages, which are fully customisable to suit your business needs; and one-off services.</p>\r\n<p style=\"text-align: center;\">All costs include any graphic design needed to deliver the messages beautifully.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Coaching Image\" show_in_lightbox=\"off\" url=\"#Coaching-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Hands-on Packages Image\" show_in_lightbox=\"off\" url=\"#Hands-on-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Individual Services Image\" show_in_lightbox=\"off\" url=\"#Individual-Projects\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Other Services Image\" show_in_lightbox=\"off\" url=\"#Other-Serivces\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Coaching Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<a name=\"Coaching-Packages\"></a>\r\n<h2>Coaching Packages</h2>\r\n<a name=\"Coaching-Packages\"></a>\r\n\r\n&nbsp;\r\n\r\n<a name=\"Coaching-Packages\"></a>\r\n<h3>We coach, and you implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTRO Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTRO Package - $189</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTRO Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis is about getting the basics right. We look at your current activity, recognise what is working, recommend any improvements and establish a plan going forward. This may suit those who have already started marketing their business and need help to get more customers or get themselves on track.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Establish a top line plan to get you where you want to be</li>\r\n</ul>\r\nThis involves a 1 hour face-to-face (where possible) or skype session and you will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nThis package can be upgraded to the INITIATE package if you feel you would like to go into more detail and create an initial marketing plan.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTRO Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INITIATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INITIATE Package - $589</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INITIATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThe INITIATE package is about giving your marketing the huge push it needs, either when you first start your business or a little later down the track. This is a holistic approach, taking you from strategy, goals, and tactics through to implementation. This will provide a plan of action for the next year.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Explore your positioning and they key messages and selling points for your customers</li>\r\n	<li>Understand who your competitors are and what your point of difference is</li>\r\n	<li>Talk tactics on where to be present, identifying why and how to achieve this</li>\r\n	<li>Establish a plan for making your customers take action</li>\r\n	<li>Work together to formulate a marketing plan for the year</li>\r\n</ul>\r\nThis involves a 2 x 1.5 hour face-to-face (where possible) or skype sessions.  You will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nWe recommend you follow on to the INTEGRATE package as this package measures the effectiveness of your plan as implemented, and refines this on an ongoing basis.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INITIATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTEGRATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTEGRATE Monthly Package - $289 per month</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTEGRATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n(3 month minimum)\r\n\r\nThis is a one on one session twice per month where together, we ensure your marketing is on track. We can utilise measurement techniques to assess the effectiveness of your strategies and keeping you on track to achieve the desired goals.\r\n\r\nWe meet via skype* twice per month to discuss your progress, any ideas or opportunities, and bounce ideas around. (*This can also be done in one longer face to face session if possible)\r\n\r\nThese sessions will help to keep on track with your marketing plan, and guide you throughout the year to meet and exceed your marketing and business goals. By measuring the effectiveness of current strategies, refinements can be effected to ensure your marketing continues to maximise results.\r\n\r\nSupport is available by e-mail, Facebook or reasonable phone support throughout the month if required.\r\n\r\nWe recommend you begin with the INTRO Package before commencing this INTEGRATE Package .\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTEGRATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hands-on Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<a name=\"Hands-on-Packages\"></a>\r\n<h2>Hands-on Packages</h2>\r\n<a name=\"Hands-on-Packages\"></a>\r\n\r\n&nbsp;\r\n\r\n<a name=\"Hands-on-Packages\"></a>\r\n<h3>We implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Custom\" currency=\"$\" per=\"month\" sum=\"?\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]We can design a custom package that suits the unique needs of your business.[/et_pb_pricing_table] [/et_pb_pricing_tables][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Incredible Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Incredible\" currency=\"$\" per=\"month\" sum=\"300\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]1 x Facebook / Instagram post content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\nMonthly e-mail newsletter\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Intermediate Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Intermediate\" currency=\"$\" per=\"month\" sum=\"600\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]2 x Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised  content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nFortnightly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Advanced Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Advanced\" currency=\"$\" per=\"month\" sum=\"900\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nWeekly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Expert Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Expert\" currency=\"$\" per=\"month\" sum=\"1500\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Twice weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n2 x Facebook cover content &amp; artwork\r\n\r\n2 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n2 x blog posts with search engine optimised\r\n\r\nPoint of sale content &amp; artwork\r\n\r\nManage media bookings/ad campaigns (Social Media/Google)\r\n\r\nWeekly e-mail newsletter\r\n\r\nWebsite updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Projects Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<a name=\"Individual-Projects\"></a>\r\n<h2>Individual Projects</h2>\r\n<a name=\"Individual-Projects\"></a>\r\n\r\n&nbsp;\r\n\r\n<a name=\"Individual-Projects\"></a>\r\n<h3>We help you with a specific item of work</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nPrices below include effective marketing copy and design.\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"234\">Brochures</td>\r\n<td width=\"95\"></td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          One sided flyer</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Double sided flyer</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Multi-page  DLE brochure</td>\r\n<td width=\"95\">$195</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Poster</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Point of sale</td>\r\n<td width=\"95\">$ P.O.A</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website Content (200 words)</td>\r\n<td width=\"95\">$89</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Blog (400-600 words)</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">E-mail Campaign</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Cover Photo &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Post artwork &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website content revamp^</td>\r\n<td width=\"95\">$725</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Products Footer Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n^A more accurate quote will be given depending on your website and amount of content\r\n\r\nPrices shown in NZD &amp; Excludes GST and travel.\r\n\r\nExcludes cost of stock images (if required). Any detailed artwork such as illustration or other will be quoted separately.\r\n\r\nIf what you are looking for is not listed above, it does not necessarily mean we do not offer the service, please contact us for a quote.\r\n\r\nPrices above include marketing copy and design and includes 2 revisions, further revisions will be quoted. Prices are available for content only options, proofing only options and design only options.\r\n\r\nPrinting can be arranged and will be quoted separately. Photography and video options can be arranged and quoted for separately\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<a name=\"Other-Services\"></a>\r\n<h2>Other Services</h2>\r\n<a name=\"Other-Services\"></a>\r\n\r\n&nbsp;\r\n\r\n<a name=\"Other-Services\"></a>\r\n<h3>We offer a number of other services - please contact us for a quote</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Graphic Design</p>\r\n</td>\r\n<td style=\"text-align: center;\" width=\"154\">Printing</td>\r\n<td style=\"text-align: center;\" width=\"154\">Photography</td>\r\n<td style=\"text-align: center;\" width=\"154\">Videography</td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\">Event Management</td>\r\n<td style=\"text-align: center;\" width=\"154\">Website Development</td>\r\n<td style=\"text-align: center;\" width=\"154\">Proof Reading</td>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Advertising Bookings &amp; Management</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "WORK WITH ME", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2016-03-16 15:36:01", "2016-03-16 02:36:01", "", "39", "http://www.infinitymarketing.co.nz/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("434", "1", "2016-04-29 16:35:04", "2016-04-29 04:35:04", "[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<h2>We also provide the following services</h2>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Coaching Blurb\" title=\"Coaching\" url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One on One coaching and consulting services, either as a one-off service or on an on-going basis. Helping you get your marketing on track, and stay on track.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Marketing Services Blurb\" title=\"Marketing Services\" url=\"www.infinitymarketing.co.nz/marketing-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p style=\"text-align: center;\">Ongoing Marketing Services ensures your marketing happens like clock-work. The wheels keep churning, and your marketing keeps working for you.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Other Services Blurb\" title=\"Other Services\" url=\"www.infinitymarketing.co.nz/other-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%171%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>We aim to provide all your marketing needs in one place, and work with specialists in order to do this. No need to find alternative suppliers, we can help you.</p>\n\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "We Also Provide Coaching, Marketing Services & Other Services", "", "inherit", "closed", "closed", "", "414-revision-v1", "", "", "2016-04-29 16:35:04", "2016-04-29 04:35:04", "", "414", "http://www.infinitymarketing.co.nz/414-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("433", "1", "2016-04-29 16:35:01", "2016-04-29 04:35:01", "[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<h2>We also provide the following services</h2>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Coaching Blurb\" title=\"Coaching\" url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One on One coaching and consulting services, either as a one-off service or on an on-going basis. Helping you get your marketing on track, and stay on track.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Marketing Services Blurb\" title=\"Marketing Services\" url=\"www.infinitymarketing.co.nz/marketing-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p style=\"text-align: center;\">Ongoing Marketing Services ensures your marketing happens like clock-work. The wheels keep churning, and your marketing keeps working for you.</p>\n\n[/et_pb_blurb][et_pb_blurb admin_label=\"Marketing Services Blurb\" title=\"Marketing Services\" url=\"www.infinitymarketing.co.nz/marketing-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p style=\"text-align: center;\">Ongoing Marketing Services ensures your marketing happens like clock-work. The wheels keep churning, and your marketing keeps working for you.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Other Services Blurb\" title=\"Other Services\" url=\"www.infinitymarketing.co.nz/other-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%171%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>We aim to provide all your marketing needs in one place, and work with specialists in order to do this. No need to find alternative suppliers, we can help you.</p>\n\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "We Also Provide Coaching, Marketing Services & Other Services", "", "inherit", "closed", "closed", "", "414-revision-v1", "", "", "2016-04-29 16:35:01", "2016-04-29 04:35:01", "", "414", "http://www.infinitymarketing.co.nz/414-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("440", "1", "2016-04-29 16:45:46", "2016-04-29 04:45:46", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Coaching Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Coaching</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Coaching Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Coaching-Packages\"></a>Coaching Packages<a name=\"Coaching-Packages\"></a></h2>\r\n<h3>We coach, and you implement your marketing</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Coaching Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: left;\">Our <strong>marketing coaching and consulting packages</strong> are here to help you when you\'re starting out, if you need a helping hand to get you on track later down the line, or if you need someone to help guide you on an on-going basis.</p>\r\n<p style=\"text-align: left;\"><strong>You have complete control over implementation, with the aid of an expert resource to guide you.</strong></p>\r\n<p style=\"text-align: left;\">We offer <strong>great monthly packages</strong>, which are<strong> fully customisable</strong> to suit your business needs; and <strong>one-off services.</strong></p>\r\n<p style=\"text-align: left;\">All prices exclude GST and are shown in NZD.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTRO Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTRO Package - $189</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTRO Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis is about getting the basics right. We look at your current activity, recognise what is working, recommend any improvements and establish a plan going forward. This may suit those who have already started marketing their business and need help to get more customers or get themselves on track.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Establish a top line plan to get you where you want to be</li>\r\n</ul>\r\nThis involves a 1 hour face-to-face (where possible) or skype session and you will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nThis package can be upgraded to the INITIATE package if you feel you would like to go into more detail and create an initial marketing plan.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTRO Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Intro-Candice-v3.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=V46576J27YZG4\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INITIATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INITIATE Package - $589</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INITIATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThe INITIATE package is about giving your marketing the huge push it needs, either when you first start your business or a little later down the track. This is a holistic approach, taking you from strategy, goals, and tactics through to implementation. This will provide a plan of action for the next year.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Explore your positioning and the key messages and selling points for your customers</li>\r\n	<li>Understand who your competitors are and what your point of difference is</li>\r\n	<li>Talk tactics on where to be present, identifying why and how to achieve this</li>\r\n	<li>Establish a plan for making your customers take action</li>\r\n	<li>Work together to formulate a marketing plan for the year</li>\r\n</ul>\r\nThis involves a 2 x 1.5 hour face-to-face (where possible) or skype sessions.  You will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nWe recommend you follow on to the INTEGRATE package as this package measures the effectiveness of your plan as implemented, and refines this on an ongoing basis.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INITIATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Initiate-Candice-v2.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=W9P8XUK654W6G\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTEGRATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTEGRATE Monthly Package - $289 per month</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTEGRATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n(3 month minimum)\r\n\r\nThis is a one on one session twice per month where together, we ensure your marketing is on track. We can utilise measurement techniques to assess the effectiveness of your strategies and keeping you on track to achieve the desired goals.\r\n\r\nWe meet via skype* twice per month to discuss your progress, any ideas or opportunities, and bounce ideas around. (*This can also be done in one longer face to face session if possible)\r\n\r\nThese sessions will help to keep on track with your marketing plan, and guide you throughout the year to meet and exceed your marketing and business goals. By measuring the effectiveness of current strategies, refinements can be effected to ensure your marketing continues to maximise results.\r\n\r\nSupport is available by e-mail, Facebook or reasonable phone support throughout the month if required.\r\n\r\nDon\'t need us as often as every month? Or need more support? <a href=\"http://www.infinitymarketing.co.nz/contact/\">Contact us</a> and we can tailor a suitable package for you.\r\n\r\nWe recommend you begin with the INTRO Package before commencing this INTEGRATE Package .\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTEGRATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Integrate-Candice-v2.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=PN7JHBND8QBFJ\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Terms &amp; Conditions Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nAll prices exclude GST and are shown in NZD. Travel for packages which include face to face meetings is included for a radius of up to 20km from Howick, any further kilometres will be charged at $0.74+GST.\r\n\r\nPayments can be accepted through our website by Credit Card, in person by Credit Card, Debit Card or Eftpos, or by internet banking. A Tax invoice will be provided for every payment.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"397\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"397\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text global_parent=\"397\" admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>We also provide the following services</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row global_parent=\"397\" admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb global_parent=\"397\" admin_label=\"Marketing Services Blurb\" title=\"Marketing Services\" url=\"www.infinitymarketing.co.nz/marketing-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">Ongoing Marketing Services ensures your marketing happens like clock-work. The wheels keep churning, and your marketing keeps working for you.</p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb global_parent=\"397\" admin_label=\"Projects Blurb\" title=\"Projects\" url=\"www.infinitymarketing.co.nz/projects\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%174%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne off marketing projects, such as brochures, website development, one off campaign plans, and much more. We can support you for a one off marketing project.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb global_parent=\"397\" admin_label=\"Other Services Blurb\" title=\"Other Services\" url=\"www.infinitymarketing.co.nz/other-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%171%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe aim to provide all your marketing needs in one place, and work with specialists in order to do this. No need to find alternative suppliers, we can help you.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"259\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"259\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"259\" admin_label=\"Call To Action - Contact\" title=\"Ready to take action?\" button_url=\"http://www.infinitymarketing.co.nz/contact/\" url_new_window=\"off\" button_text=\"Click here to contact us now\" use_background_color=\"off\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\nYour new future is waiting\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "COACHING", "", "inherit", "closed", "closed", "", "337-revision-v1", "", "", "2016-04-29 16:45:46", "2016-04-29 04:45:46", "", "337", "http://www.infinitymarketing.co.nz/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("215", "1", "2016-03-16 15:41:28", "2016-03-16 02:41:28", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background-1.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Me Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Work With Me</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Me Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">We offer a range of marketing services for your small business. Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.</p>\r\n<p style=\"text-align: center;\">We offer great monthly packages, which are fully customisable to suit your business needs; and one-off services.</p>\r\n<p style=\"text-align: center;\">All costs include any graphic design needed to deliver the messages beautifully.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Coaching Image\" show_in_lightbox=\"off\" url=\"#Coaching-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Hands-on Packages Image\" show_in_lightbox=\"off\" url=\"#Hands-on-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Individual Services Image\" show_in_lightbox=\"off\" url=\"#Individual-Projects\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Other Services Image\" show_in_lightbox=\"off\" url=\"#Other-Serivces\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Coaching Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Coaching-Packages\"></a>Coaching Packages<a name=\"Coaching-Packages\"></a></h2>\r\n<h3>We coach, and you implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTRO Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTRO Package - $189</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTRO Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis is about getting the basics right. We look at your current activity, recognise what is working, recommend any improvements and establish a plan going forward. This may suit those who have already started marketing their business and need help to get more customers or get themselves on track.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Establish a top line plan to get you where you want to be</li>\r\n</ul>\r\nThis involves a 1 hour face-to-face (where possible) or skype session and you will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nThis package can be upgraded to the INITIATE package if you feel you would like to go into more detail and create an initial marketing plan.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTRO Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"left\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" /][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INITIATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INITIATE Package - $589</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INITIATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThe INITIATE package is about giving your marketing the huge push it needs, either when you first start your business or a little later down the track. This is a holistic approach, taking you from strategy, goals, and tactics through to implementation. This will provide a plan of action for the next year.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Explore your positioning and they key messages and selling points for your customers</li>\r\n	<li>Understand who your competitors are and what your point of difference is</li>\r\n	<li>Talk tactics on where to be present, identifying why and how to achieve this</li>\r\n	<li>Establish a plan for making your customers take action</li>\r\n	<li>Work together to formulate a marketing plan for the year</li>\r\n</ul>\r\nThis involves a 2 x 1.5 hour face-to-face (where possible) or skype sessions.  You will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nWe recommend you follow on to the INTEGRATE package as this package measures the effectiveness of your plan as implemented, and refines this on an ongoing basis.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INITIATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"left\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" /][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTEGRATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTEGRATE Monthly Package - $289 per month</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTEGRATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n(3 month minimum)\r\n\r\nThis is a one on one session twice per month where together, we ensure your marketing is on track. We can utilise measurement techniques to assess the effectiveness of your strategies and keeping you on track to achieve the desired goals.\r\n\r\nWe meet via skype* twice per month to discuss your progress, any ideas or opportunities, and bounce ideas around. (*This can also be done in one longer face to face session if possible)\r\n\r\nThese sessions will help to keep on track with your marketing plan, and guide you throughout the year to meet and exceed your marketing and business goals. By measuring the effectiveness of current strategies, refinements can be effected to ensure your marketing continues to maximise results.\r\n\r\nSupport is available by e-mail, Facebook or reasonable phone support throughout the month if required.\r\n\r\nWe recommend you begin with the INTRO Package before commencing this INTEGRATE Package .\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTEGRATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"left\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hands-on Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Hands-on-Packages\"></a>Hands-on Packages<a name=\"Hands-on-Packages\"></a></h2>\r\n<h3>We implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Custom\" currency=\"$\" per=\"month\" sum=\"?\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]We can design a custom package that suits the unique needs of your business.[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"left\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" /][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Incredible Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Incredible\" currency=\"$\" per=\"month\" sum=\"300\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]1 x Facebook / Instagram post content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\nMonthly e-mail newsletter\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"left\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Intermediate Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Intermediate\" currency=\"$\" per=\"month\" sum=\"600\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]2 x Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised  content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nFortnightly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"left\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Advanced Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Advanced\" currency=\"$\" per=\"month\" sum=\"900\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nWeekly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"left\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Expert Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Expert\" currency=\"$\" per=\"month\" sum=\"1500\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Twice weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n2 x Facebook cover content &amp; artwork\r\n\r\n2 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n2 x blog posts with search engine optimised\r\n\r\nPoint of sale content &amp; artwork\r\n\r\nManage media bookings/ad campaigns (Social Media/Google)\r\n\r\nWeekly e-mail newsletter\r\n\r\nWebsite updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"left\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Projects Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Individual-Projects\"></a>Individual Projects<a name=\"Individual-Projects\"></a></h2>\r\n<h3>We help you with a specific item of work</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nPrices below include effective marketing copy and design.\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"234\">Brochures</td>\r\n<td width=\"95\"></td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          One sided flyer</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Double sided flyer</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Multi-page  DLE brochure</td>\r\n<td width=\"95\">$195</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Poster</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Point of sale</td>\r\n<td width=\"95\">$ P.O.A</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website Content (200 words)</td>\r\n<td width=\"95\">$89</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Blog (400-600 words)</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">E-mail Campaign</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Cover Photo &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Post artwork &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website content revamp^</td>\r\n<td width=\"95\">$725</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Products Footer Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n^A more accurate quote will be given depending on your website and amount of content\r\n\r\nPrices shown in NZD &amp; Excludes GST and travel.\r\n\r\nExcludes cost of stock images (if required). Any detailed artwork such as illustration or other will be quoted separately.\r\n\r\nIf what you are looking for is not listed above, it does not necessarily mean we do not offer the service, please contact us for a quote.\r\n\r\nPrices above include marketing copy and design and includes 2 revisions, further revisions will be quoted. Prices are available for content only options, proofing only options and design only options.\r\n\r\nPrinting can be arranged and will be quoted separately. Photography and video options can be arranged and quoted for separately\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Other-Services\"></a>Other Services<a name=\"Other-Services\"></a></h2>\r\n<h3>We offer a number of other services - please contact us for a quote</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Graphic Design</p>\r\n</td>\r\n<td style=\"text-align: center;\" width=\"154\">Printing</td>\r\n<td style=\"text-align: center;\" width=\"154\">Photography</td>\r\n<td style=\"text-align: center;\" width=\"154\">Videography</td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\">Event Management</td>\r\n<td style=\"text-align: center;\" width=\"154\">Website Development</td>\r\n<td style=\"text-align: center;\" width=\"154\">Proof Reading</td>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Advertising Bookings &amp; Management</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "WORK WITH ME", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2016-03-16 15:41:28", "2016-03-16 02:41:28", "", "39", "http://www.infinitymarketing.co.nz/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("216", "1", "2016-03-16 15:43:15", "2016-03-16 02:43:15", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background-1.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Me Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Work With Me</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Me Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">We offer a range of marketing services for your small business. Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.</p>\r\n<p style=\"text-align: center;\">We offer great monthly packages, which are fully customisable to suit your business needs; and one-off services.</p>\r\n<p style=\"text-align: center;\">All costs include any graphic design needed to deliver the messages beautifully.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Coaching Image\" show_in_lightbox=\"off\" url=\"#Coaching-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Hands-on Packages Image\" show_in_lightbox=\"off\" url=\"#Hands-on-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Individual Services Image\" show_in_lightbox=\"off\" url=\"#Individual-Projects\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Other Services Image\" show_in_lightbox=\"off\" url=\"#Other-Serivces\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Coaching Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Coaching-Packages\"></a>Coaching Packages<a name=\"Coaching-Packages\"></a></h2>\r\n<h3>We coach, and you implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTRO Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTRO Package - $189</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTRO Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis is about getting the basics right. We look at your current activity, recognise what is working, recommend any improvements and establish a plan going forward. This may suit those who have already started marketing their business and need help to get more customers or get themselves on track.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Establish a top line plan to get you where you want to be</li>\r\n</ul>\r\nThis involves a 1 hour face-to-face (where possible) or skype session and you will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nThis package can be upgraded to the INITIATE package if you feel you would like to go into more detail and create an initial marketing plan.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTRO Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INITIATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INITIATE Package - $589</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INITIATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThe INITIATE package is about giving your marketing the huge push it needs, either when you first start your business or a little later down the track. This is a holistic approach, taking you from strategy, goals, and tactics through to implementation. This will provide a plan of action for the next year.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Explore your positioning and they key messages and selling points for your customers</li>\r\n	<li>Understand who your competitors are and what your point of difference is</li>\r\n	<li>Talk tactics on where to be present, identifying why and how to achieve this</li>\r\n	<li>Establish a plan for making your customers take action</li>\r\n	<li>Work together to formulate a marketing plan for the year</li>\r\n</ul>\r\nThis involves a 2 x 1.5 hour face-to-face (where possible) or skype sessions.  You will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nWe recommend you follow on to the INTEGRATE package as this package measures the effectiveness of your plan as implemented, and refines this on an ongoing basis.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INITIATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTEGRATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTEGRATE Monthly Package - $289 per month</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTEGRATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n(3 month minimum)\r\n\r\nThis is a one on one session twice per month where together, we ensure your marketing is on track. We can utilise measurement techniques to assess the effectiveness of your strategies and keeping you on track to achieve the desired goals.\r\n\r\nWe meet via skype* twice per month to discuss your progress, any ideas or opportunities, and bounce ideas around. (*This can also be done in one longer face to face session if possible)\r\n\r\nThese sessions will help to keep on track with your marketing plan, and guide you throughout the year to meet and exceed your marketing and business goals. By measuring the effectiveness of current strategies, refinements can be effected to ensure your marketing continues to maximise results.\r\n\r\nSupport is available by e-mail, Facebook or reasonable phone support throughout the month if required.\r\n\r\nWe recommend you begin with the INTRO Package before commencing this INTEGRATE Package .\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTEGRATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hands-on Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Hands-on-Packages\"></a>Hands-on Packages<a name=\"Hands-on-Packages\"></a></h2>\r\n<h3>We implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Custom\" currency=\"$\" per=\"month\" sum=\"?\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]We can design a custom package that suits the unique needs of your business.[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Incredible Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Incredible\" currency=\"$\" per=\"month\" sum=\"300\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]1 x Facebook / Instagram post content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\nMonthly e-mail newsletter\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Intermediate Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Intermediate\" currency=\"$\" per=\"month\" sum=\"600\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]2 x Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised  content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nFortnightly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Advanced Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Advanced\" currency=\"$\" per=\"month\" sum=\"900\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nWeekly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Expert Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Expert\" currency=\"$\" per=\"month\" sum=\"1500\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Twice weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n2 x Facebook cover content &amp; artwork\r\n\r\n2 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n2 x blog posts with search engine optimised\r\n\r\nPoint of sale content &amp; artwork\r\n\r\nManage media bookings/ad campaigns (Social Media/Google)\r\n\r\nWeekly e-mail newsletter\r\n\r\nWebsite updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Projects Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Individual-Projects\"></a>Individual Projects<a name=\"Individual-Projects\"></a></h2>\r\n<h3>We help you with a specific item of work</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nPrices below include effective marketing copy and design.\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"234\">Brochures</td>\r\n<td width=\"95\"></td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          One sided flyer</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Double sided flyer</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Multi-page  DLE brochure</td>\r\n<td width=\"95\">$195</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Poster</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Point of sale</td>\r\n<td width=\"95\">$ P.O.A</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website Content (200 words)</td>\r\n<td width=\"95\">$89</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Blog (400-600 words)</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">E-mail Campaign</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Cover Photo &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Post artwork &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website content revamp^</td>\r\n<td width=\"95\">$725</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Products Footer Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n^A more accurate quote will be given depending on your website and amount of content\r\n\r\nPrices shown in NZD &amp; Excludes GST and travel.\r\n\r\nExcludes cost of stock images (if required). Any detailed artwork such as illustration or other will be quoted separately.\r\n\r\nIf what you are looking for is not listed above, it does not necessarily mean we do not offer the service, please contact us for a quote.\r\n\r\nPrices above include marketing copy and design and includes 2 revisions, further revisions will be quoted. Prices are available for content only options, proofing only options and design only options.\r\n\r\nPrinting can be arranged and will be quoted separately. Photography and video options can be arranged and quoted for separately\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Other-Services\"></a>Other Services<a name=\"Other-Services\"></a></h2>\r\n<h3>We offer a number of other services - please contact us for a quote</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Graphic Design</p>\r\n</td>\r\n<td style=\"text-align: center;\" width=\"154\">Printing</td>\r\n<td style=\"text-align: center;\" width=\"154\">Photography</td>\r\n<td style=\"text-align: center;\" width=\"154\">Videography</td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\">Event Management</td>\r\n<td style=\"text-align: center;\" width=\"154\">Website Development</td>\r\n<td style=\"text-align: center;\" width=\"154\">Proof Reading</td>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Advertising Bookings &amp; Management</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "WORK WITH ME", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2016-03-16 15:43:15", "2016-03-16 02:43:15", "", "39", "http://www.infinitymarketing.co.nz/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("217", "1", "2016-03-16 15:44:54", "2016-03-16 02:44:54", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background-1.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Me Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Work With Me</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Me Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">We offer a range of marketing services for your small business. Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.</p>\r\n<p style=\"text-align: center;\">We offer great monthly packages, which are fully customisable to suit your business needs; and one-off services.</p>\r\n<p style=\"text-align: center;\">All costs include any graphic design needed to deliver the messages beautifully.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Coaching Image\" show_in_lightbox=\"off\" url=\"#Coaching-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Hands-on Packages Image\" show_in_lightbox=\"off\" url=\"#Hands-on-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Individual Services Image\" show_in_lightbox=\"off\" url=\"#Individual-Projects\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Other Services Image\" show_in_lightbox=\"off\" url=\"#Other-Serivces\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Coaching Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Coaching-Packages\"></a>Coaching Packages<a name=\"Coaching-Packages\"></a></h2>\r\n<h3>We coach, and you implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTRO Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTRO Package - $189</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTRO Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis is about getting the basics right. We look at your current activity, recognise what is working, recommend any improvements and establish a plan going forward. This may suit those who have already started marketing their business and need help to get more customers or get themselves on track.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Establish a top line plan to get you where you want to be</li>\r\n</ul>\r\nThis involves a 1 hour face-to-face (where possible) or skype session and you will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nThis package can be upgraded to the INITIATE package if you feel you would like to go into more detail and create an initial marketing plan.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTRO Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INITIATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INITIATE Package - $589</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INITIATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThe INITIATE package is about giving your marketing the huge push it needs, either when you first start your business or a little later down the track. This is a holistic approach, taking you from strategy, goals, and tactics through to implementation. This will provide a plan of action for the next year.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Explore your positioning and they key messages and selling points for your customers</li>\r\n	<li>Understand who your competitors are and what your point of difference is</li>\r\n	<li>Talk tactics on where to be present, identifying why and how to achieve this</li>\r\n	<li>Establish a plan for making your customers take action</li>\r\n	<li>Work together to formulate a marketing plan for the year</li>\r\n</ul>\r\nThis involves a 2 x 1.5 hour face-to-face (where possible) or skype sessions.  You will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nWe recommend you follow on to the INTEGRATE package as this package measures the effectiveness of your plan as implemented, and refines this on an ongoing basis.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INITIATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTEGRATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTEGRATE Monthly Package - $289 per month</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTEGRATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n(3 month minimum)\r\n\r\nThis is a one on one session twice per month where together, we ensure your marketing is on track. We can utilise measurement techniques to assess the effectiveness of your strategies and keeping you on track to achieve the desired goals.\r\n\r\nWe meet via skype* twice per month to discuss your progress, any ideas or opportunities, and bounce ideas around. (*This can also be done in one longer face to face session if possible)\r\n\r\nThese sessions will help to keep on track with your marketing plan, and guide you throughout the year to meet and exceed your marketing and business goals. By measuring the effectiveness of current strategies, refinements can be effected to ensure your marketing continues to maximise results.\r\n\r\nSupport is available by e-mail, Facebook or reasonable phone support throughout the month if required.\r\n\r\nWe recommend you begin with the INTRO Package before commencing this INTEGRATE Package .\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTEGRATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hands-on Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Hands-on-Packages\"></a>Hands-on Packages<a name=\"Hands-on-Packages\"></a></h2>\r\n<h3>We implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Custom\" currency=\"$\" per=\"month\" sum=\"?\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]We can design a custom package that suits the unique needs of your business.[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Incredible Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Incredible\" currency=\"$\" per=\"month\" sum=\"300\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]1 x Facebook / Instagram post content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\nMonthly e-mail newsletter\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Intermediate Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Intermediate\" currency=\"$\" per=\"month\" sum=\"600\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]2 x Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised  content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nFortnightly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Advanced Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Advanced\" currency=\"$\" per=\"month\" sum=\"900\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nWeekly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Expert Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Expert\" currency=\"$\" per=\"month\" sum=\"1500\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Twice weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n2 x Facebook cover content &amp; artwork\r\n\r\n2 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n2 x blog posts with search engine optimised\r\n\r\nPoint of sale content &amp; artwork\r\n\r\nManage media bookings/ad campaigns (Social Media/Google)\r\n\r\nWeekly e-mail newsletter\r\n\r\nWebsite updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Projects Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Individual-Projects\"></a>Individual Projects<a name=\"Individual-Projects\"></a></h2>\r\n<h3>We help you with a specific item of work</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nPrices below include effective marketing copy and design.\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"234\">Brochures</td>\r\n<td width=\"95\"></td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          One sided flyer</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Double sided flyer</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Multi-page  DLE brochure</td>\r\n<td width=\"95\">$195</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Poster</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Point of sale</td>\r\n<td width=\"95\">$ P.O.A</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website Content (200 words)</td>\r\n<td width=\"95\">$89</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Blog (400-600 words)</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">E-mail Campaign</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Cover Photo &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Post artwork &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website content revamp^</td>\r\n<td width=\"95\">$725</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Products Footer Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n^A more accurate quote will be given depending on your website and amount of content\r\n\r\nPrices shown in NZD &amp; Excludes GST and travel.\r\n\r\nExcludes cost of stock images (if required). Any detailed artwork such as illustration or other will be quoted separately.\r\n\r\nIf what you are looking for is not listed above, it does not necessarily mean we do not offer the service, please contact us for a quote.\r\n\r\nPrices above include marketing copy and design and includes 2 revisions, further revisions will be quoted. Prices are available for content only options, proofing only options and design only options.\r\n\r\nPrinting can be arranged and will be quoted separately. Photography and video options can be arranged and quoted for separately\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Other-Services\"></a>Other Services<a name=\"Other-Services\"></a></h2>\r\n<h3>We offer a number of other services - please contact us for a quote</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Graphic Design</p>\r\n</td>\r\n<td style=\"text-align: center;\" width=\"154\">Printing</td>\r\n<td style=\"text-align: center;\" width=\"154\">Photography</td>\r\n<td style=\"text-align: center;\" width=\"154\">Videography</td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\">Event Management</td>\r\n<td style=\"text-align: center;\" width=\"154\">Website Development</td>\r\n<td style=\"text-align: center;\" width=\"154\">Proof Reading</td>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Advertising Bookings &amp; Management</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "WORK WITH ME", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2016-03-16 15:44:54", "2016-03-16 02:44:54", "", "39", "http://www.infinitymarketing.co.nz/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("218", "1", "2016-03-17 12:11:59", "2016-03-16 23:11:59", "Coaching Packages", "Coaching Packages", "", "inherit", "open", "closed", "", "coaching_sml", "", "", "2016-03-17 12:12:12", "2016-03-16 23:12:12", "", "39", "http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Coaching_sml.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("219", "1", "2016-03-17 12:12:02", "2016-03-16 23:12:02", "Hands-on Packages", "Hands-on Packages", "", "inherit", "open", "closed", "", "hands-on_sml", "", "", "2016-03-17 12:12:36", "2016-03-16 23:12:36", "", "39", "http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Hands-on_sml.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("220", "1", "2016-03-17 12:12:05", "2016-03-16 23:12:05", "Individual-Projects", "Individual-Projects", "", "inherit", "open", "closed", "", "individual-projects_sml", "", "", "2016-03-17 12:12:52", "2016-03-16 23:12:52", "", "39", "http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Individual-Projects_sml.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("221", "1", "2016-03-17 12:12:07", "2016-03-16 23:12:07", "Other-Services", "Other-Services", "", "inherit", "open", "closed", "", "other-services_sml", "", "", "2016-03-17 12:13:05", "2016-03-16 23:13:05", "", "39", "http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Other-Services_sml.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("222", "1", "2016-03-17 12:13:11", "2016-03-16 23:13:11", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background-1.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Me Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Work With Me</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Me Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">We offer a range of marketing services for your small business. Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.</p>\r\n<p style=\"text-align: center;\">We offer great monthly packages, which are fully customisable to suit your business needs; and one-off services.</p>\r\n<p style=\"text-align: center;\">All costs include any graphic design needed to deliver the messages beautifully.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Coaching Image\" show_in_lightbox=\"off\" url=\"#Coaching-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Coaching_sml.jpg\" alt=\"Coaching\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Hands-on Packages Image\" show_in_lightbox=\"off\" url=\"#Hands-on-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Hands-on_sml.jpg\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Individual Services Image\" show_in_lightbox=\"off\" url=\"#Individual-Projects\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Individual-Projects_sml.jpg\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Other Services Image\" show_in_lightbox=\"off\" url=\"#Other-Serivces\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Other-Services_sml.jpg\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Coaching Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Coaching-Packages\"></a>Coaching Packages<a name=\"Coaching-Packages\"></a></h2>\r\n<h3>We coach, and you implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTRO Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTRO Package - $189</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTRO Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis is about getting the basics right. We look at your current activity, recognise what is working, recommend any improvements and establish a plan going forward. This may suit those who have already started marketing their business and need help to get more customers or get themselves on track.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Establish a top line plan to get you where you want to be</li>\r\n</ul>\r\nThis involves a 1 hour face-to-face (where possible) or skype session and you will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nThis package can be upgraded to the INITIATE package if you feel you would like to go into more detail and create an initial marketing plan.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTRO Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INITIATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INITIATE Package - $589</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INITIATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThe INITIATE package is about giving your marketing the huge push it needs, either when you first start your business or a little later down the track. This is a holistic approach, taking you from strategy, goals, and tactics through to implementation. This will provide a plan of action for the next year.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Explore your positioning and they key messages and selling points for your customers</li>\r\n	<li>Understand who your competitors are and what your point of difference is</li>\r\n	<li>Talk tactics on where to be present, identifying why and how to achieve this</li>\r\n	<li>Establish a plan for making your customers take action</li>\r\n	<li>Work together to formulate a marketing plan for the year</li>\r\n</ul>\r\nThis involves a 2 x 1.5 hour face-to-face (where possible) or skype sessions.  You will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nWe recommend you follow on to the INTEGRATE package as this package measures the effectiveness of your plan as implemented, and refines this on an ongoing basis.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INITIATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTEGRATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTEGRATE Monthly Package - $289 per month</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTEGRATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n(3 month minimum)\r\n\r\nThis is a one on one session twice per month where together, we ensure your marketing is on track. We can utilise measurement techniques to assess the effectiveness of your strategies and keeping you on track to achieve the desired goals.\r\n\r\nWe meet via skype* twice per month to discuss your progress, any ideas or opportunities, and bounce ideas around. (*This can also be done in one longer face to face session if possible)\r\n\r\nThese sessions will help to keep on track with your marketing plan, and guide you throughout the year to meet and exceed your marketing and business goals. By measuring the effectiveness of current strategies, refinements can be effected to ensure your marketing continues to maximise results.\r\n\r\nSupport is available by e-mail, Facebook or reasonable phone support throughout the month if required.\r\n\r\nWe recommend you begin with the INTRO Package before commencing this INTEGRATE Package .\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTEGRATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hands-on Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Hands-on-Packages\"></a>Hands-on Packages<a name=\"Hands-on-Packages\"></a></h2>\r\n<h3>We implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Custom\" currency=\"$\" per=\"month\" sum=\"?\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]We can design a custom package that suits the unique needs of your business.[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Incredible Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Incredible\" currency=\"$\" per=\"month\" sum=\"300\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]1 x Facebook / Instagram post content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\nMonthly e-mail newsletter\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Intermediate Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Intermediate\" currency=\"$\" per=\"month\" sum=\"600\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]2 x Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised  content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nFortnightly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Advanced Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Advanced\" currency=\"$\" per=\"month\" sum=\"900\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nWeekly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Expert Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Expert\" currency=\"$\" per=\"month\" sum=\"1500\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Twice weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n2 x Facebook cover content &amp; artwork\r\n\r\n2 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n2 x blog posts with search engine optimised\r\n\r\nPoint of sale content &amp; artwork\r\n\r\nManage media bookings/ad campaigns (Social Media/Google)\r\n\r\nWeekly e-mail newsletter\r\n\r\nWebsite updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Projects Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Individual-Projects\"></a>Individual Projects<a name=\"Individual-Projects\"></a></h2>\r\n<h3>We help you with a specific item of work</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nPrices below include effective marketing copy and design.\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"234\">Brochures</td>\r\n<td width=\"95\"></td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          One sided flyer</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Double sided flyer</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Multi-page  DLE brochure</td>\r\n<td width=\"95\">$195</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Poster</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Point of sale</td>\r\n<td width=\"95\">$ P.O.A</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website Content (200 words)</td>\r\n<td width=\"95\">$89</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Blog (400-600 words)</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">E-mail Campaign</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Cover Photo &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Post artwork &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website content revamp^</td>\r\n<td width=\"95\">$725</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Products Footer Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n^A more accurate quote will be given depending on your website and amount of content\r\n\r\nPrices shown in NZD &amp; Excludes GST and travel.\r\n\r\nExcludes cost of stock images (if required). Any detailed artwork such as illustration or other will be quoted separately.\r\n\r\nIf what you are looking for is not listed above, it does not necessarily mean we do not offer the service, please contact us for a quote.\r\n\r\nPrices above include marketing copy and design and includes 2 revisions, further revisions will be quoted. Prices are available for content only options, proofing only options and design only options.\r\n\r\nPrinting can be arranged and will be quoted separately. Photography and video options can be arranged and quoted for separately\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Other-Services\"></a>Other Services<a name=\"Other-Services\"></a></h2>\r\n<h3>We offer a number of other services - please contact us for a quote</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Graphic Design</p>\r\n</td>\r\n<td style=\"text-align: center;\" width=\"154\">Printing</td>\r\n<td style=\"text-align: center;\" width=\"154\">Photography</td>\r\n<td style=\"text-align: center;\" width=\"154\">Videography</td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\">Event Management</td>\r\n<td style=\"text-align: center;\" width=\"154\">Website Development</td>\r\n<td style=\"text-align: center;\" width=\"154\">Proof Reading</td>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Advertising Bookings &amp; Management</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "WORK WITH ME", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2016-03-17 12:13:11", "2016-03-16 23:13:11", "", "39", "http://www.infinitymarketing.co.nz/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("225", "1", "2016-03-17 12:18:47", "2016-03-16 23:18:47", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background-1.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Me Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Work With Me</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Me Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">We offer a range of marketing services for your small business. Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.</p>\r\n<p style=\"text-align: center;\">We offer great monthly packages, which are fully customisable to suit your business needs; and one-off services.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Coaching Image\" show_in_lightbox=\"off\" url=\"#Coaching-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Coaching_sml.jpg\" alt=\"Coaching\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Hands-on Packages Image\" show_in_lightbox=\"off\" url=\"#Hands-on-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Hands-on_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Individual Services Image\" show_in_lightbox=\"off\" url=\"#Individual-Projects\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Individual-Projects_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Other Services Image\" show_in_lightbox=\"off\" url=\"#Other-Services\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Other-Services_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Coaching Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Coaching-Packages\"></a>Coaching Packages<a name=\"Coaching-Packages\"></a></h2>\r\n<h3>We coach, and you implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTRO Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTRO Package - $189</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTRO Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis is about getting the basics right. We look at your current activity, recognise what is working, recommend any improvements and establish a plan going forward. This may suit those who have already started marketing their business and need help to get more customers or get themselves on track.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Establish a top line plan to get you where you want to be</li>\r\n</ul>\r\nThis involves a 1 hour face-to-face (where possible) or skype session and you will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nThis package can be upgraded to the INITIATE package if you feel you would like to go into more detail and create an initial marketing plan.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTRO Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INITIATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INITIATE Package - $589</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INITIATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThe INITIATE package is about giving your marketing the huge push it needs, either when you first start your business or a little later down the track. This is a holistic approach, taking you from strategy, goals, and tactics through to implementation. This will provide a plan of action for the next year.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Explore your positioning and they key messages and selling points for your customers</li>\r\n	<li>Understand who your competitors are and what your point of difference is</li>\r\n	<li>Talk tactics on where to be present, identifying why and how to achieve this</li>\r\n	<li>Establish a plan for making your customers take action</li>\r\n	<li>Work together to formulate a marketing plan for the year</li>\r\n</ul>\r\nThis involves a 2 x 1.5 hour face-to-face (where possible) or skype sessions.  You will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nWe recommend you follow on to the INTEGRATE package as this package measures the effectiveness of your plan as implemented, and refines this on an ongoing basis.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INITIATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTEGRATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTEGRATE Monthly Package - $289 per month</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTEGRATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n(3 month minimum)\r\n\r\nThis is a one on one session twice per month where together, we ensure your marketing is on track. We can utilise measurement techniques to assess the effectiveness of your strategies and keeping you on track to achieve the desired goals.\r\n\r\nWe meet via skype* twice per month to discuss your progress, any ideas or opportunities, and bounce ideas around. (*This can also be done in one longer face to face session if possible)\r\n\r\nThese sessions will help to keep on track with your marketing plan, and guide you throughout the year to meet and exceed your marketing and business goals. By measuring the effectiveness of current strategies, refinements can be effected to ensure your marketing continues to maximise results.\r\n\r\nSupport is available by e-mail, Facebook or reasonable phone support throughout the month if required.\r\n\r\nWe recommend you begin with the INTRO Package before commencing this INTEGRATE Package .\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTEGRATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hands-on Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Hands-on-Packages\"></a>Hands-on Packages<a name=\"Hands-on-Packages\"></a></h2>\r\n<h3>We implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"]\r\n\r\n[et_pb_pricing_table featured=\"off\" title=\"Custom\" currency=\"$\" per=\"month\" sum=\"?\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]We can design a custom package that suits the unique needs of your business.[/et_pb_pricing_table]\r\n\r\n[/et_pb_pricing_tables][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Incredible Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"]\r\n\r\n[et_pb_pricing_table featured=\"off\" title=\"Incredible\" currency=\"$\" per=\"month\" sum=\"300\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]1 x Facebook / Instagram post content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\nMonthly e-mail newsletter\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table]\r\n\r\n[/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Intermediate Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"]\r\n\r\n[et_pb_pricing_table featured=\"off\" title=\"Intermediate\" currency=\"$\" per=\"month\" sum=\"600\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]2 x Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised  content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nFortnightly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table]\r\n\r\n[/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Advanced Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"]\r\n\r\n[et_pb_pricing_table featured=\"off\" title=\"Advanced\" currency=\"$\" per=\"month\" sum=\"900\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nWeekly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table]\r\n\r\n[/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Expert Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"]\r\n\r\n[et_pb_pricing_table featured=\"off\" title=\"Expert\" currency=\"$\" per=\"month\" sum=\"1500\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Twice weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n2 x Facebook cover content &amp; artwork\r\n\r\n2 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n2 x blog posts with search engine optimised\r\n\r\nPoint of sale content &amp; artwork\r\n\r\nManage media bookings/ad campaigns (Social Media/Google)\r\n\r\nWeekly e-mail newsletter\r\n\r\nWebsite updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table]\r\n\r\n[/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Projects Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Individual-Projects\"></a>Individual Projects<a name=\"Individual-Projects\"></a></h2>\r\n<h3>We help you with a specific item of work</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nPrices below include effective marketing copy and design.\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"234\">Brochures</td>\r\n<td width=\"95\"></td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          One sided flyer</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Double sided flyer</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Multi-page  DLE brochure</td>\r\n<td width=\"95\">$195</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Poster</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Point of sale</td>\r\n<td width=\"95\">$ P.O.A</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website Content (200 words)</td>\r\n<td width=\"95\">$89</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Blog (400-600 words)</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">E-mail Campaign</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Cover Photo &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Post artwork &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website content revamp^</td>\r\n<td width=\"95\">$725</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Products Footer Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n^A more accurate quote will be given depending on your website and amount of content\r\n\r\nPrices shown in NZD &amp; Excludes GST and travel.\r\n\r\nExcludes cost of stock images (if required). Any detailed artwork such as illustration or other will be quoted separately.\r\n\r\nIf what you are looking for is not listed above, it does not necessarily mean we do not offer the service, please contact us for a quote.\r\n\r\nPrices above include marketing copy and design and includes 2 revisions, further revisions will be quoted. Prices are available for content only options, proofing only options and design only options.\r\n\r\nPrinting can be arranged and will be quoted separately. Photography and video options can be arranged and quoted for separately\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Other-Services\"></a>Other Services<a name=\"Other-Services\"></a></h2>\r\n<h3>We offer a number of other services - please contact us for a quote</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Graphic Design</p>\r\n</td>\r\n<td style=\"text-align: center;\" width=\"154\">Printing</td>\r\n<td style=\"text-align: center;\" width=\"154\">Photography</td>\r\n<td style=\"text-align: center;\" width=\"154\">Videography</td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\">Event Management</td>\r\n<td style=\"text-align: center;\" width=\"154\">Website Development</td>\r\n<td style=\"text-align: center;\" width=\"154\">Proof Reading</td>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Advertising Bookings &amp; Management</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "WORK WITH ME", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2016-03-17 12:18:47", "2016-03-16 23:18:47", "", "39", "http://www.infinitymarketing.co.nz/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("223", "1", "2016-03-17 12:14:34", "2016-03-16 23:14:34", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background-1.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Me Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<h1 style=\"text-align: center;\">Work With Me</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Me Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p style=\"text-align: center;\">We offer a range of marketing services for your small business. Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.</p>\r\n<p style=\"text-align: center;\">We offer great monthly packages, which are fully customisable to suit your business needs; and one-off services.</p>\r\n<p style=\"text-align: center;\">All costs include any graphic design needed to deliver the messages beautifully.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Coaching Image\" show_in_lightbox=\"off\" url=\"#Coaching-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Coaching_sml.jpg\" alt=\"Coaching\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Hands-on Packages Image\" show_in_lightbox=\"off\" url=\"#Hands-on-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Hands-on_sml.jpg\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Individual Services Image\" show_in_lightbox=\"off\" url=\"#Individual-Projects\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Individual-Projects_sml.jpg\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Other Services Image\" show_in_lightbox=\"off\" url=\"#Other-Serivces\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Other-Services_sml.jpg\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Coaching Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<h2><a name=\"Coaching-Packages\"></a>Coaching Packages<a name=\"Coaching-Packages\"></a></h2>\r\n<h3>We coach, and you implement your marketing</h3>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTRO Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<h3><span style=\"color: #009edb;\">INTRO Package - $189</span></h3>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"INTRO Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis is about getting the basics right. We look at your current activity, recognise what is working, recommend any improvements and establish a plan going forward. This may suit those who have already started marketing their business and need help to get more customers or get themselves on track.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Establish a top line plan to get you where you want to be</li>\r\n</ul>\r\nThis involves a 1 hour face-to-face (where possible) or skype session and you will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nThis package can be upgraded to the INITIATE package if you feel you would like to go into more detail and create an initial marketing plan.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTRO Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INITIATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<h3><span style=\"color: #009edb;\">INITIATE Package - $589</span></h3>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"INITIATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThe INITIATE package is about giving your marketing the huge push it needs, either when you first start your business or a little later down the track. This is a holistic approach, taking you from strategy, goals, and tactics through to implementation. This will provide a plan of action for the next year.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Explore your positioning and they key messages and selling points for your customers</li>\r\n	<li>Understand who your competitors are and what your point of difference is</li>\r\n	<li>Talk tactics on where to be present, identifying why and how to achieve this</li>\r\n	<li>Establish a plan for making your customers take action</li>\r\n	<li>Work together to formulate a marketing plan for the year</li>\r\n</ul>\r\nThis involves a 2 x 1.5 hour face-to-face (where possible) or skype sessions.  You will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nWe recommend you follow on to the INTEGRATE package as this package measures the effectiveness of your plan as implemented, and refines this on an ongoing basis.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INITIATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTEGRATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<h3><span style=\"color: #009edb;\">INTEGRATE Monthly Package - $289 per month</span></h3>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"INTEGRATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n(3 month minimum)\r\n\r\nThis is a one on one session twice per month where together, we ensure your marketing is on track. We can utilise measurement techniques to assess the effectiveness of your strategies and keeping you on track to achieve the desired goals.\r\n\r\nWe meet via skype* twice per month to discuss your progress, any ideas or opportunities, and bounce ideas around. (*This can also be done in one longer face to face session if possible)\r\n\r\nThese sessions will help to keep on track with your marketing plan, and guide you throughout the year to meet and exceed your marketing and business goals. By measuring the effectiveness of current strategies, refinements can be effected to ensure your marketing continues to maximise results.\r\n\r\nSupport is available by e-mail, Facebook or reasonable phone support throughout the month if required.\r\n\r\nWe recommend you begin with the INTRO Package before commencing this INTEGRATE Package .\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTEGRATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hands-on Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<h2><a name=\"Hands-on-Packages\"></a>Hands-on Packages<a name=\"Hands-on-Packages\"></a></h2>\r\n<h3>We implement your marketing</h3>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"]\r\n\r\n[et_pb_pricing_table featured=\"off\" title=\"Custom\" currency=\"$\" per=\"month\" sum=\"?\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]We can design a custom package that suits the unique needs of your business.[/et_pb_pricing_table]\r\n\r\n[/et_pb_pricing_tables][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Incredible Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"]\r\n\r\n[et_pb_pricing_table featured=\"off\" title=\"Incredible\" currency=\"$\" per=\"month\" sum=\"300\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]1 x Facebook / Instagram post content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\nMonthly e-mail newsletter\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table]\r\n\r\n[/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Intermediate Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"]\r\n\r\n[et_pb_pricing_table featured=\"off\" title=\"Intermediate\" currency=\"$\" per=\"month\" sum=\"600\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]2 x Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised  content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nFortnightly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table]\r\n\r\n[/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Advanced Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"]\r\n\r\n[et_pb_pricing_table featured=\"off\" title=\"Advanced\" currency=\"$\" per=\"month\" sum=\"900\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nWeekly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table]\r\n\r\n[/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Expert Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"]\r\n\r\n[et_pb_pricing_table featured=\"off\" title=\"Expert\" currency=\"$\" per=\"month\" sum=\"1500\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Twice weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n2 x Facebook cover content &amp; artwork\r\n\r\n2 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n2 x blog posts with search engine optimised\r\n\r\nPoint of sale content &amp; artwork\r\n\r\nManage media bookings/ad campaigns (Social Media/Google)\r\n\r\nWeekly e-mail newsletter\r\n\r\nWebsite updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table]\r\n\r\n[/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Projects Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<h2><a name=\"Individual-Projects\"></a>Individual Projects<a name=\"Individual-Projects\"></a></h2>\r\n<h3>We help you with a specific item of work</h3>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nPrices below include effective marketing copy and design.\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"234\">Brochures</td>\r\n<td width=\"95\"></td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          One sided flyer</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Double sided flyer</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Multi-page  DLE brochure</td>\r\n<td width=\"95\">$195</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Poster</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Point of sale</td>\r\n<td width=\"95\">$ P.O.A</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website Content (200 words)</td>\r\n<td width=\"95\">$89</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Blog (400-600 words)</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">E-mail Campaign</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Cover Photo &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Post artwork &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website content revamp^</td>\r\n<td width=\"95\">$725</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Products Footer Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n^A more accurate quote will be given depending on your website and amount of content\r\n\r\nPrices shown in NZD &amp; Excludes GST and travel.\r\n\r\nExcludes cost of stock images (if required). Any detailed artwork such as illustration or other will be quoted separately.\r\n\r\nIf what you are looking for is not listed above, it does not necessarily mean we do not offer the service, please contact us for a quote.\r\n\r\nPrices above include marketing copy and design and includes 2 revisions, further revisions will be quoted. Prices are available for content only options, proofing only options and design only options.\r\n\r\nPrinting can be arranged and will be quoted separately. Photography and video options can be arranged and quoted for separately\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<h2><a name=\"Other-Services\">Other Services</a></h2>\r\n<h3>We offer a number of other services - please contact us for a quote</h3>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Graphic Design</p>\r\n</td>\r\n<td style=\"text-align: center;\" width=\"154\">Printing</td>\r\n<td style=\"text-align: center;\" width=\"154\">Photography</td>\r\n<td style=\"text-align: center;\" width=\"154\">Videography</td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\">Event Management</td>\r\n<td style=\"text-align: center;\" width=\"154\">Website Development</td>\r\n<td style=\"text-align: center;\" width=\"154\">Proof Reading</td>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Advertising Bookings &amp; Management</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "WORK WITH ME", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2016-03-17 12:14:34", "2016-03-16 23:14:34", "", "39", "http://www.infinitymarketing.co.nz/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("224", "1", "2016-03-17 12:16:32", "2016-03-16 23:16:32", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background-1.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Me Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<h1 style=\"text-align: center;\">Work With Me</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Me Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p style=\"text-align: center;\">We offer a range of marketing services for your small business. Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.</p>\r\n<p style=\"text-align: center;\">We offer great monthly packages, which are fully customisable to suit your business needs; and one-off services.</p>\r\n<p style=\"text-align: center;\">All costs include any graphic design needed to deliver the messages beautifully.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Coaching Image\" show_in_lightbox=\"off\" url=\"#Coaching-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Coaching_sml.jpg\" alt=\"Coaching\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Hands-on Packages Image\" show_in_lightbox=\"off\" url=\"#Hands-on-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Hands-on_sml.jpg\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Individual Services Image\" show_in_lightbox=\"off\" url=\"#Individual-Projects\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Individual-Projects_sml.jpg\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Other Services Image\" show_in_lightbox=\"off\" url=\"#Other-Serivces\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Other-Services_sml.jpg\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Coaching Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<h2><a name=\"Coaching-Packages\"></a>Coaching Packages<a name=\"Coaching-Packages\"></a></h2>\r\n<h3>We coach, and you implement your marketing</h3>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTRO Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<h3><span style=\"color: #009edb;\">INTRO Package - $189</span></h3>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"INTRO Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis is about getting the basics right. We look at your current activity, recognise what is working, recommend any improvements and establish a plan going forward. This may suit those who have already started marketing their business and need help to get more customers or get themselves on track.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Establish a top line plan to get you where you want to be</li>\r\n</ul>\r\nThis involves a 1 hour face-to-face (where possible) or skype session and you will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nThis package can be upgraded to the INITIATE package if you feel you would like to go into more detail and create an initial marketing plan.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTRO Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INITIATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<h3><span style=\"color: #009edb;\">INITIATE Package - $589</span></h3>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"INITIATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThe INITIATE package is about giving your marketing the huge push it needs, either when you first start your business or a little later down the track. This is a holistic approach, taking you from strategy, goals, and tactics through to implementation. This will provide a plan of action for the next year.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Explore your positioning and they key messages and selling points for your customers</li>\r\n	<li>Understand who your competitors are and what your point of difference is</li>\r\n	<li>Talk tactics on where to be present, identifying why and how to achieve this</li>\r\n	<li>Establish a plan for making your customers take action</li>\r\n	<li>Work together to formulate a marketing plan for the year</li>\r\n</ul>\r\nThis involves a 2 x 1.5 hour face-to-face (where possible) or skype sessions.  You will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nWe recommend you follow on to the INTEGRATE package as this package measures the effectiveness of your plan as implemented, and refines this on an ongoing basis.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INITIATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTEGRATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<h3><span style=\"color: #009edb;\">INTEGRATE Monthly Package - $289 per month</span></h3>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"INTEGRATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n(3 month minimum)\r\n\r\nThis is a one on one session twice per month where together, we ensure your marketing is on track. We can utilise measurement techniques to assess the effectiveness of your strategies and keeping you on track to achieve the desired goals.\r\n\r\nWe meet via skype* twice per month to discuss your progress, any ideas or opportunities, and bounce ideas around. (*This can also be done in one longer face to face session if possible)\r\n\r\nThese sessions will help to keep on track with your marketing plan, and guide you throughout the year to meet and exceed your marketing and business goals. By measuring the effectiveness of current strategies, refinements can be effected to ensure your marketing continues to maximise results.\r\n\r\nSupport is available by e-mail, Facebook or reasonable phone support throughout the month if required.\r\n\r\nWe recommend you begin with the INTRO Package before commencing this INTEGRATE Package .\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTEGRATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hands-on Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<h2><a name=\"Hands-on-Packages\"></a>Hands-on Packages<a name=\"Hands-on-Packages\"></a></h2>\r\n<h3>We implement your marketing</h3>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"]\r\n\r\n[et_pb_pricing_table featured=\"off\" title=\"Custom\" currency=\"$\" per=\"month\" sum=\"?\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]We can design a custom package that suits the unique needs of your business.[/et_pb_pricing_table]\r\n\r\n[/et_pb_pricing_tables][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Incredible Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"]\r\n\r\n[et_pb_pricing_table featured=\"off\" title=\"Incredible\" currency=\"$\" per=\"month\" sum=\"300\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]1 x Facebook / Instagram post content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\nMonthly e-mail newsletter\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table]\r\n\r\n[/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Intermediate Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"]\r\n\r\n[et_pb_pricing_table featured=\"off\" title=\"Intermediate\" currency=\"$\" per=\"month\" sum=\"600\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]2 x Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised  content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nFortnightly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table]\r\n\r\n[/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Advanced Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"]\r\n\r\n[et_pb_pricing_table featured=\"off\" title=\"Advanced\" currency=\"$\" per=\"month\" sum=\"900\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nWeekly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table]\r\n\r\n[/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Expert Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"]\r\n\r\n[et_pb_pricing_table featured=\"off\" title=\"Expert\" currency=\"$\" per=\"month\" sum=\"1500\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Twice weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n2 x Facebook cover content &amp; artwork\r\n\r\n2 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n2 x blog posts with search engine optimised\r\n\r\nPoint of sale content &amp; artwork\r\n\r\nManage media bookings/ad campaigns (Social Media/Google)\r\n\r\nWeekly e-mail newsletter\r\n\r\nWebsite updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table]\r\n\r\n[/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Projects Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<h2><a name=\"Individual-Projects\"></a>Individual Projects<a name=\"Individual-Projects\"></a></h2>\r\n<h3>We help you with a specific item of work</h3>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nPrices below include effective marketing copy and design.\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"234\">Brochures</td>\r\n<td width=\"95\"></td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          One sided flyer</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Double sided flyer</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Multi-page  DLE brochure</td>\r\n<td width=\"95\">$195</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Poster</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Point of sale</td>\r\n<td width=\"95\">$ P.O.A</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website Content (200 words)</td>\r\n<td width=\"95\">$89</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Blog (400-600 words)</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">E-mail Campaign</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Cover Photo &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Post artwork &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website content revamp^</td>\r\n<td width=\"95\">$725</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Products Footer Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n^A more accurate quote will be given depending on your website and amount of content\r\n\r\nPrices shown in NZD &amp; Excludes GST and travel.\r\n\r\nExcludes cost of stock images (if required). Any detailed artwork such as illustration or other will be quoted separately.\r\n\r\nIf what you are looking for is not listed above, it does not necessarily mean we do not offer the service, please contact us for a quote.\r\n\r\nPrices above include marketing copy and design and includes 2 revisions, further revisions will be quoted. Prices are available for content only options, proofing only options and design only options.\r\n\r\nPrinting can be arranged and will be quoted separately. Photography and video options can be arranged and quoted for separately\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<a name=\"Other-Services\"><h2>Other Services</h2></a>\r\n<h3>We offer a number of other services - please contact us for a quote</h3>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Graphic Design</p>\r\n</td>\r\n<td style=\"text-align: center;\" width=\"154\">Printing</td>\r\n<td style=\"text-align: center;\" width=\"154\">Photography</td>\r\n<td style=\"text-align: center;\" width=\"154\">Videography</td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\">Event Management</td>\r\n<td style=\"text-align: center;\" width=\"154\">Website Development</td>\r\n<td style=\"text-align: center;\" width=\"154\">Proof Reading</td>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Advertising Bookings &amp; Management</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "WORK WITH ME", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2016-03-17 12:16:32", "2016-03-16 23:16:32", "", "39", "http://www.infinitymarketing.co.nz/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("226", "1", "2016-03-17 21:43:57", "2016-03-17 08:43:57", "Connect", "Connect", "", "inherit", "open", "closed", "", "connect-3", "", "", "2016-03-17 21:44:08", "2016-03-17 08:44:08", "", "37", "http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Connect.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("227", "1", "2016-03-17 21:44:00", "2016-03-17 08:44:00", "Contact", "Contact", "", "inherit", "open", "closed", "", "contact-4", "", "", "2016-03-17 21:44:34", "2016-03-17 08:44:34", "", "37", "http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Contact.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("228", "1", "2016-03-17 21:44:05", "2016-03-17 08:44:05", "Services", "Services", "", "inherit", "open", "closed", "", "services-3", "", "", "2016-03-17 21:44:22", "2016-03-17 08:44:22", "", "37", "http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Services.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("229", "1", "2016-03-17 21:44:41", "2016-03-17 08:44:41", "[et_pb_section admin_label=\"Impact Background\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice-Infinity-Marketing-Banner-.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Impact Text\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/discover-v2.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_signup admin_label=\"Email Optin\" provider=\"mailchimp\" mailchimp_list=\"4419f44e8e\" aweber_list=\"none\" use_background_color=\"on\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"left\" use_focus_border_color=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" title=\"Get practical marketing tips delivered straight to your inbox\" button_text=\"Sign me up!\" header_font=\"Open Sans||||\" header_font_size=\"22\" body_font=\"Open Sans||||\"] [/et_pb_signup][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"0px|||\"]\r\n<h2 style=\"text-align: center;\">Building your dream business can be overwhelming</h2>\r\n<h2 style=\"text-align: center;\">and how do you know what marketing works?</h2>\r\n<p style=\"text-align: center;\">In your small business, you tend to try and juggle it all. But Infinity Marketing is here to help you,\r\nthrough marketing that suits your unique business and the stage that it is at.</p>\r\n<p style=\"text-align: center;\">We will work together with you, to gain a thorough understanding of who your customers are,\r\nand where they are, to deliver the best marketing for your small business.</p>\r\n<p style=\"text-align: center;\">You might know exactly what your business needs to get the extra punch it requires,\r\nand simply need help with implementation of your marketing plan, or you might just\r\nbe starting out and need a guiding hand to identify what needs to be done for your business marketing.</p>\r\n<p style=\"text-align: center;\">Whatever stage you are at, we can help you take your business to the next level,\r\nwhere the possibilities are infinite.</p>\r\n<p style=\"text-align: center;\"><strong><a href=\"http://www.infinitymarketing.co.nz/work-with-me/\">Let\'s discover how to make that happen for your business</a></strong></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#b3babf\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Connect CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Connect.jpg\" alt=\"Connect on Facebook\" show_in_lightbox=\"off\" url=\"http://www.facebook.com/infinitymarketing.co.nz\" url_new_window=\"on\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Services CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Services.jpg\" alt=\"View Services\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/work-with-me/\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Contact CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Contact.jpg\" alt=\"Contact us\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/contact/\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice-About_round.png\" alt=\"Candice Venter\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"About Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>About Candice</h2>\r\nCandice has has a passion for marketing for small businesses, having worked in both start up and large corporations, she has seen and done a lot. She has an absolute passion for helping small businesses grow through the power of marketing.\r\n\r\nAn expert in understanding who your customers are, understanding where they are and delivering messages that inspire action, Candice thrives on creating marketing that works.\r\n\r\nAbove all, she is passionate to see your business succeed.\r\n\r\n[/et_pb_text][et_pb_button admin_label=\"Read More Button\" button_url=\"http://www.infinitymarketing.co.nz/about/\" url_new_window=\"off\" button_text=\"Read More\" button_alignment=\"left\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#f9f9f9\" button_bg_color=\"#009edb\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon=\"%%28%%\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-me/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\">Discover the services we provide</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "HOME", "", "inherit", "closed", "closed", "", "37-revision-v1", "", "", "2016-03-17 21:44:41", "2016-03-17 08:44:41", "", "37", "http://www.infinitymarketing.co.nz/37-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("240", "1", "2016-03-17 22:43:38", "2016-03-17 09:43:38", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background-1.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Me Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Work With Me</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Me Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">We offer a range of marketing services for your small business. Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.</p>\r\n<p style=\"text-align: center;\">We offer great monthly packages, which are fully customisable to suit your business needs; and one-off services.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Coaching Image\" show_in_lightbox=\"off\" url=\"#Coaching-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Coaching_sml.jpg\" alt=\"Coaching\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Hands-on Packages Image\" show_in_lightbox=\"off\" url=\"#Hands-on-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Hands-on_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Individual Services Image\" show_in_lightbox=\"off\" url=\"#Individual-Projects\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Individual-Projects_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Other Services Image\" show_in_lightbox=\"off\" url=\"#Other-Services\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Other-Services_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Coaching Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Coaching-Packages\"></a>Coaching Packages<a name=\"Coaching-Packages\"></a></h2>\r\n<h3>We coach, and you implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTRO Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTRO Package - $189</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTRO Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis is about getting the basics right. We look at your current activity, recognise what is working, recommend any improvements and establish a plan going forward. This may suit those who have already started marketing their business and need help to get more customers or get themselves on track.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Establish a top line plan to get you where you want to be</li>\r\n</ul>\r\nThis involves a 1 hour face-to-face (where possible) or skype session and you will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nThis package can be upgraded to the INITIATE package if you feel you would like to go into more detail and create an initial marketing plan.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTRO Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Intro-Candice-v3.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INITIATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INITIATE Package - $589</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INITIATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThe INITIATE package is about giving your marketing the huge push it needs, either when you first start your business or a little later down the track. This is a holistic approach, taking you from strategy, goals, and tactics through to implementation. This will provide a plan of action for the next year.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Explore your positioning and they key messages and selling points for your customers</li>\r\n	<li>Understand who your competitors are and what your point of difference is</li>\r\n	<li>Talk tactics on where to be present, identifying why and how to achieve this</li>\r\n	<li>Establish a plan for making your customers take action</li>\r\n	<li>Work together to formulate a marketing plan for the year</li>\r\n</ul>\r\nThis involves a 2 x 1.5 hour face-to-face (where possible) or skype sessions.  You will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nWe recommend you follow on to the INTEGRATE package as this package measures the effectiveness of your plan as implemented, and refines this on an ongoing basis.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INITIATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Initiate-Candice-v2.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTEGRATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTEGRATE Monthly Package - $289 per month</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTEGRATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n(3 month minimum)\r\n\r\nThis is a one on one session twice per month where together, we ensure your marketing is on track. We can utilise measurement techniques to assess the effectiveness of your strategies and keeping you on track to achieve the desired goals.\r\n\r\nWe meet via skype* twice per month to discuss your progress, any ideas or opportunities, and bounce ideas around. (*This can also be done in one longer face to face session if possible)\r\n\r\nThese sessions will help to keep on track with your marketing plan, and guide you throughout the year to meet and exceed your marketing and business goals. By measuring the effectiveness of current strategies, refinements can be effected to ensure your marketing continues to maximise results.\r\n\r\nSupport is available by e-mail, Facebook or reasonable phone support throughout the month if required.\r\n\r\nWe recommend you begin with the INTRO Package before commencing this INTEGRATE Package .\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTEGRATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Integrate-Candice-v2.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hands-on Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Hands-on-Packages\"></a>Hands-on Packages<a name=\"Hands-on-Packages\"></a></h2>\r\n<h3>We implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Custom\" currency=\"$\" per=\"month\" sum=\"?\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]We can design a custom package that suits the unique needs of your business.[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Incredible Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Incredible\" currency=\"$\" per=\"month\" sum=\"300\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]1 x Facebook / Instagram post content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\nMonthly e-mail newsletter\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Intermediate Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Intermediate\" currency=\"$\" per=\"month\" sum=\"600\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]2 x Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised  content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nFortnightly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Advanced Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Advanced\" currency=\"$\" per=\"month\" sum=\"900\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nWeekly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Expert Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Expert\" currency=\"$\" per=\"month\" sum=\"1500\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Twice weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n2 x Facebook cover content &amp; artwork\r\n\r\n2 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n2 x blog posts with search engine optimised\r\n\r\nPoint of sale content &amp; artwork\r\n\r\nManage media bookings/ad campaigns (Social Media/Google)\r\n\r\nWeekly e-mail newsletter\r\n\r\nWebsite updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Projects Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Individual-Projects\"></a>Individual Projects<a name=\"Individual-Projects\"></a></h2>\r\n<h3>We help you with a specific item of work</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nPrices below include effective marketing copy and design.\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"234\">Brochures</td>\r\n<td width=\"95\"></td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          One sided flyer</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Double sided flyer</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Multi-page  DLE brochure</td>\r\n<td width=\"95\">$195</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Poster</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Point of sale</td>\r\n<td width=\"95\">$ P.O.A</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website Content (200 words)</td>\r\n<td width=\"95\">$89</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Blog (400-600 words)</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">E-mail Campaign</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Cover Photo &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Post artwork &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website content revamp^</td>\r\n<td width=\"95\">$725</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Products Footer Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n^A more accurate quote will be given depending on your website and amount of content\r\n\r\nPrices shown in NZD &amp; Excludes GST and travel.\r\n\r\nExcludes cost of stock images (if required). Any detailed artwork such as illustration or other will be quoted separately.\r\n\r\nIf what you are looking for is not listed above, it does not necessarily mean we do not offer the service, please contact us for a quote.\r\n\r\nPrices above include marketing copy and design and includes 2 revisions, further revisions will be quoted. Prices are available for content only options, proofing only options and design only options.\r\n\r\nPrinting can be arranged and will be quoted separately. Photography and video options can be arranged and quoted for separately\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Other-Services\"></a>Other Services<a name=\"Other-Services\"></a></h2>\r\n<h3>We offer a number of other services - please contact us for a quote</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Graphic Design</p>\r\n</td>\r\n<td style=\"text-align: center;\" width=\"154\">Printing</td>\r\n<td style=\"text-align: center;\" width=\"154\">Photography</td>\r\n<td style=\"text-align: center;\" width=\"154\">Videography</td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\">Event Management</td>\r\n<td style=\"text-align: center;\" width=\"154\">Website Development</td>\r\n<td style=\"text-align: center;\" width=\"154\">Proof Reading</td>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Advertising Bookings &amp; Management</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "WORK WITH ME", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2016-03-17 22:43:38", "2016-03-17 09:43:38", "", "39", "http://www.infinitymarketing.co.nz/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("232", "1", "2016-03-17 22:10:34", "2016-03-17 09:10:34", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background-1.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Me Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Work With Me</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Me Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">We offer a range of marketing services for your small business. Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.</p>\r\n<p style=\"text-align: center;\">We offer great monthly packages, which are fully customisable to suit your business needs; and one-off services.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Coaching Image\" show_in_lightbox=\"off\" url=\"#Coaching-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Coaching_sml.jpg\" alt=\"Coaching\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Hands-on Packages Image\" show_in_lightbox=\"off\" url=\"#Hands-on-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Hands-on_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Individual Services Image\" show_in_lightbox=\"off\" url=\"#Individual-Projects\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Individual-Projects_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Other Services Image\" show_in_lightbox=\"off\" url=\"#Other-Services\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Other-Services_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Coaching Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Coaching-Packages\"></a>Coaching Packages<a name=\"Coaching-Packages\"></a></h2>\r\n<h3>We coach, and you implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTRO Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTRO Package - $189</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTRO Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis is about getting the basics right. We look at your current activity, recognise what is working, recommend any improvements and establish a plan going forward. This may suit those who have already started marketing their business and need help to get more customers or get themselves on track.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Establish a top line plan to get you where you want to be</li>\r\n</ul>\r\nThis involves a 1 hour face-to-face (where possible) or skype session and you will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nThis package can be upgraded to the INITIATE package if you feel you would like to go into more detail and create an initial marketing plan.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTRO Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Intro-Package.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INITIATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INITIATE Package - $589</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INITIATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThe INITIATE package is about giving your marketing the huge push it needs, either when you first start your business or a little later down the track. This is a holistic approach, taking you from strategy, goals, and tactics through to implementation. This will provide a plan of action for the next year.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Explore your positioning and they key messages and selling points for your customers</li>\r\n	<li>Understand who your competitors are and what your point of difference is</li>\r\n	<li>Talk tactics on where to be present, identifying why and how to achieve this</li>\r\n	<li>Establish a plan for making your customers take action</li>\r\n	<li>Work together to formulate a marketing plan for the year</li>\r\n</ul>\r\nThis involves a 2 x 1.5 hour face-to-face (where possible) or skype sessions.  You will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nWe recommend you follow on to the INTEGRATE package as this package measures the effectiveness of your plan as implemented, and refines this on an ongoing basis.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INITIATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTEGRATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTEGRATE Monthly Package - $289 per month</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTEGRATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n(3 month minimum)\r\n\r\nThis is a one on one session twice per month where together, we ensure your marketing is on track. We can utilise measurement techniques to assess the effectiveness of your strategies and keeping you on track to achieve the desired goals.\r\n\r\nWe meet via skype* twice per month to discuss your progress, any ideas or opportunities, and bounce ideas around. (*This can also be done in one longer face to face session if possible)\r\n\r\nThese sessions will help to keep on track with your marketing plan, and guide you throughout the year to meet and exceed your marketing and business goals. By measuring the effectiveness of current strategies, refinements can be effected to ensure your marketing continues to maximise results.\r\n\r\nSupport is available by e-mail, Facebook or reasonable phone support throughout the month if required.\r\n\r\nWe recommend you begin with the INTRO Package before commencing this INTEGRATE Package .\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTEGRATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hands-on Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Hands-on-Packages\"></a>Hands-on Packages<a name=\"Hands-on-Packages\"></a></h2>\r\n<h3>We implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Custom\" currency=\"$\" per=\"month\" sum=\"?\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]We can design a custom package that suits the unique needs of your business.[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Incredible Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Incredible\" currency=\"$\" per=\"month\" sum=\"300\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]1 x Facebook / Instagram post content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\nMonthly e-mail newsletter\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Intermediate Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Intermediate\" currency=\"$\" per=\"month\" sum=\"600\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]2 x Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised  content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nFortnightly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Advanced Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Advanced\" currency=\"$\" per=\"month\" sum=\"900\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nWeekly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Expert Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Expert\" currency=\"$\" per=\"month\" sum=\"1500\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Twice weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n2 x Facebook cover content &amp; artwork\r\n\r\n2 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n2 x blog posts with search engine optimised\r\n\r\nPoint of sale content &amp; artwork\r\n\r\nManage media bookings/ad campaigns (Social Media/Google)\r\n\r\nWeekly e-mail newsletter\r\n\r\nWebsite updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Projects Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Individual-Projects\"></a>Individual Projects<a name=\"Individual-Projects\"></a></h2>\r\n<h3>We help you with a specific item of work</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nPrices below include effective marketing copy and design.\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"234\">Brochures</td>\r\n<td width=\"95\"></td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          One sided flyer</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Double sided flyer</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Multi-page  DLE brochure</td>\r\n<td width=\"95\">$195</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Poster</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Point of sale</td>\r\n<td width=\"95\">$ P.O.A</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website Content (200 words)</td>\r\n<td width=\"95\">$89</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Blog (400-600 words)</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">E-mail Campaign</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Cover Photo &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Post artwork &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website content revamp^</td>\r\n<td width=\"95\">$725</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Products Footer Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n^A more accurate quote will be given depending on your website and amount of content\r\n\r\nPrices shown in NZD &amp; Excludes GST and travel.\r\n\r\nExcludes cost of stock images (if required). Any detailed artwork such as illustration or other will be quoted separately.\r\n\r\nIf what you are looking for is not listed above, it does not necessarily mean we do not offer the service, please contact us for a quote.\r\n\r\nPrices above include marketing copy and design and includes 2 revisions, further revisions will be quoted. Prices are available for content only options, proofing only options and design only options.\r\n\r\nPrinting can be arranged and will be quoted separately. Photography and video options can be arranged and quoted for separately\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Other-Services\"></a>Other Services<a name=\"Other-Services\"></a></h2>\r\n<h3>We offer a number of other services - please contact us for a quote</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Graphic Design</p>\r\n</td>\r\n<td style=\"text-align: center;\" width=\"154\">Printing</td>\r\n<td style=\"text-align: center;\" width=\"154\">Photography</td>\r\n<td style=\"text-align: center;\" width=\"154\">Videography</td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\">Event Management</td>\r\n<td style=\"text-align: center;\" width=\"154\">Website Development</td>\r\n<td style=\"text-align: center;\" width=\"154\">Proof Reading</td>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Advertising Bookings &amp; Management</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "WORK WITH ME", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2016-03-17 22:10:34", "2016-03-17 09:10:34", "", "39", "http://www.infinitymarketing.co.nz/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("235", "1", "2016-03-17 22:32:19", "2016-03-17 09:32:19", "Intro-Candice", "Intro-Candice", "", "inherit", "open", "closed", "", "intro-candice-v3", "", "", "2016-03-17 22:43:30", "2016-03-17 09:43:30", "", "39", "http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Intro-Candice-v3.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("236", "1", "2016-03-17 22:32:40", "2016-03-17 09:32:40", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background-1.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Me Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Work With Me</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Me Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">We offer a range of marketing services for your small business. Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.</p>\r\n<p style=\"text-align: center;\">We offer great monthly packages, which are fully customisable to suit your business needs; and one-off services.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Coaching Image\" show_in_lightbox=\"off\" url=\"#Coaching-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Coaching_sml.jpg\" alt=\"Coaching\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Hands-on Packages Image\" show_in_lightbox=\"off\" url=\"#Hands-on-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Hands-on_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Individual Services Image\" show_in_lightbox=\"off\" url=\"#Individual-Projects\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Individual-Projects_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Other Services Image\" show_in_lightbox=\"off\" url=\"#Other-Services\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Other-Services_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Coaching Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Coaching-Packages\"></a>Coaching Packages<a name=\"Coaching-Packages\"></a></h2>\r\n<h3>We coach, and you implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTRO Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTRO Package - $189</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTRO Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis is about getting the basics right. We look at your current activity, recognise what is working, recommend any improvements and establish a plan going forward. This may suit those who have already started marketing their business and need help to get more customers or get themselves on track.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Establish a top line plan to get you where you want to be</li>\r\n</ul>\r\nThis involves a 1 hour face-to-face (where possible) or skype session and you will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nThis package can be upgraded to the INITIATE package if you feel you would like to go into more detail and create an initial marketing plan.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTRO Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Intro-Candice-v3.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INITIATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INITIATE Package - $589</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INITIATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThe INITIATE package is about giving your marketing the huge push it needs, either when you first start your business or a little later down the track. This is a holistic approach, taking you from strategy, goals, and tactics through to implementation. This will provide a plan of action for the next year.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Explore your positioning and they key messages and selling points for your customers</li>\r\n	<li>Understand who your competitors are and what your point of difference is</li>\r\n	<li>Talk tactics on where to be present, identifying why and how to achieve this</li>\r\n	<li>Establish a plan for making your customers take action</li>\r\n	<li>Work together to formulate a marketing plan for the year</li>\r\n</ul>\r\nThis involves a 2 x 1.5 hour face-to-face (where possible) or skype sessions.  You will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nWe recommend you follow on to the INTEGRATE package as this package measures the effectiveness of your plan as implemented, and refines this on an ongoing basis.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INITIATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTEGRATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTEGRATE Monthly Package - $289 per month</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTEGRATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n(3 month minimum)\r\n\r\nThis is a one on one session twice per month where together, we ensure your marketing is on track. We can utilise measurement techniques to assess the effectiveness of your strategies and keeping you on track to achieve the desired goals.\r\n\r\nWe meet via skype* twice per month to discuss your progress, any ideas or opportunities, and bounce ideas around. (*This can also be done in one longer face to face session if possible)\r\n\r\nThese sessions will help to keep on track with your marketing plan, and guide you throughout the year to meet and exceed your marketing and business goals. By measuring the effectiveness of current strategies, refinements can be effected to ensure your marketing continues to maximise results.\r\n\r\nSupport is available by e-mail, Facebook or reasonable phone support throughout the month if required.\r\n\r\nWe recommend you begin with the INTRO Package before commencing this INTEGRATE Package .\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTEGRATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hands-on Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Hands-on-Packages\"></a>Hands-on Packages<a name=\"Hands-on-Packages\"></a></h2>\r\n<h3>We implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Custom\" currency=\"$\" per=\"month\" sum=\"?\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]We can design a custom package that suits the unique needs of your business.[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Incredible Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Incredible\" currency=\"$\" per=\"month\" sum=\"300\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]1 x Facebook / Instagram post content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\nMonthly e-mail newsletter\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Intermediate Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Intermediate\" currency=\"$\" per=\"month\" sum=\"600\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]2 x Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised  content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nFortnightly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Advanced Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Advanced\" currency=\"$\" per=\"month\" sum=\"900\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nWeekly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Expert Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Expert\" currency=\"$\" per=\"month\" sum=\"1500\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Twice weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n2 x Facebook cover content &amp; artwork\r\n\r\n2 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n2 x blog posts with search engine optimised\r\n\r\nPoint of sale content &amp; artwork\r\n\r\nManage media bookings/ad campaigns (Social Media/Google)\r\n\r\nWeekly e-mail newsletter\r\n\r\nWebsite updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Projects Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Individual-Projects\"></a>Individual Projects<a name=\"Individual-Projects\"></a></h2>\r\n<h3>We help you with a specific item of work</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nPrices below include effective marketing copy and design.\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"234\">Brochures</td>\r\n<td width=\"95\"></td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          One sided flyer</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Double sided flyer</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Multi-page  DLE brochure</td>\r\n<td width=\"95\">$195</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Poster</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Point of sale</td>\r\n<td width=\"95\">$ P.O.A</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website Content (200 words)</td>\r\n<td width=\"95\">$89</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Blog (400-600 words)</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">E-mail Campaign</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Cover Photo &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Post artwork &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website content revamp^</td>\r\n<td width=\"95\">$725</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Products Footer Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n^A more accurate quote will be given depending on your website and amount of content\r\n\r\nPrices shown in NZD &amp; Excludes GST and travel.\r\n\r\nExcludes cost of stock images (if required). Any detailed artwork such as illustration or other will be quoted separately.\r\n\r\nIf what you are looking for is not listed above, it does not necessarily mean we do not offer the service, please contact us for a quote.\r\n\r\nPrices above include marketing copy and design and includes 2 revisions, further revisions will be quoted. Prices are available for content only options, proofing only options and design only options.\r\n\r\nPrinting can be arranged and will be quoted separately. Photography and video options can be arranged and quoted for separately\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Other-Services\"></a>Other Services<a name=\"Other-Services\"></a></h2>\r\n<h3>We offer a number of other services - please contact us for a quote</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Graphic Design</p>\r\n</td>\r\n<td style=\"text-align: center;\" width=\"154\">Printing</td>\r\n<td style=\"text-align: center;\" width=\"154\">Photography</td>\r\n<td style=\"text-align: center;\" width=\"154\">Videography</td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\">Event Management</td>\r\n<td style=\"text-align: center;\" width=\"154\">Website Development</td>\r\n<td style=\"text-align: center;\" width=\"154\">Proof Reading</td>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Advertising Bookings &amp; Management</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "WORK WITH ME", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2016-03-17 22:32:40", "2016-03-17 09:32:40", "", "39", "http://www.infinitymarketing.co.nz/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("237", "1", "2016-03-17 22:39:10", "2016-03-17 09:39:10", "Initiate-Candice", "Initiate-Candice", "", "inherit", "open", "closed", "", "initiate-candice-v2", "", "", "2016-03-17 22:39:21", "2016-03-17 09:39:21", "", "39", "http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Initiate-Candice-v2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("238", "1", "2016-03-17 22:41:58", "2016-03-17 09:41:58", "Integrate-Candice", "Integrate-Candice", "", "inherit", "open", "closed", "", "integrate-candice-v2", "", "", "2016-03-17 22:42:08", "2016-03-17 09:42:08", "", "39", "http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Integrate-Candice-v2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("239", "1", "2016-03-17 22:42:13", "2016-03-17 09:42:13", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background-1.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Me Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Work With Me</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Me Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">We offer a range of marketing services for your small business. Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.</p>\r\n<p style=\"text-align: center;\">We offer great monthly packages, which are fully customisable to suit your business needs; and one-off services.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Coaching Image\" show_in_lightbox=\"off\" url=\"#Coaching-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Coaching_sml.jpg\" alt=\"Coaching\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Hands-on Packages Image\" show_in_lightbox=\"off\" url=\"#Hands-on-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Hands-on_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Individual Services Image\" show_in_lightbox=\"off\" url=\"#Individual-Projects\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Individual-Projects_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Other Services Image\" show_in_lightbox=\"off\" url=\"#Other-Services\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Other-Services_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Coaching Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Coaching-Packages\"></a>Coaching Packages<a name=\"Coaching-Packages\"></a></h2>\r\n<h3>We coach, and you implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTRO Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTRO Package - $189</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTRO Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis is about getting the basics right. We look at your current activity, recognise what is working, recommend any improvements and establish a plan going forward. This may suit those who have already started marketing their business and need help to get more customers or get themselves on track.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Establish a top line plan to get you where you want to be</li>\r\n</ul>\r\nThis involves a 1 hour face-to-face (where possible) or skype session and you will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nThis package can be upgraded to the INITIATE package if you feel you would like to go into more detail and create an initial marketing plan.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTRO Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Intro-Package.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INITIATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INITIATE Package - $589</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INITIATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThe INITIATE package is about giving your marketing the huge push it needs, either when you first start your business or a little later down the track. This is a holistic approach, taking you from strategy, goals, and tactics through to implementation. This will provide a plan of action for the next year.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Explore your positioning and they key messages and selling points for your customers</li>\r\n	<li>Understand who your competitors are and what your point of difference is</li>\r\n	<li>Talk tactics on where to be present, identifying why and how to achieve this</li>\r\n	<li>Establish a plan for making your customers take action</li>\r\n	<li>Work together to formulate a marketing plan for the year</li>\r\n</ul>\r\nThis involves a 2 x 1.5 hour face-to-face (where possible) or skype sessions.  You will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nWe recommend you follow on to the INTEGRATE package as this package measures the effectiveness of your plan as implemented, and refines this on an ongoing basis.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INITIATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Initiate-Candice-v2.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTEGRATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTEGRATE Monthly Package - $289 per month</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTEGRATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n(3 month minimum)\r\n\r\nThis is a one on one session twice per month where together, we ensure your marketing is on track. We can utilise measurement techniques to assess the effectiveness of your strategies and keeping you on track to achieve the desired goals.\r\n\r\nWe meet via skype* twice per month to discuss your progress, any ideas or opportunities, and bounce ideas around. (*This can also be done in one longer face to face session if possible)\r\n\r\nThese sessions will help to keep on track with your marketing plan, and guide you throughout the year to meet and exceed your marketing and business goals. By measuring the effectiveness of current strategies, refinements can be effected to ensure your marketing continues to maximise results.\r\n\r\nSupport is available by e-mail, Facebook or reasonable phone support throughout the month if required.\r\n\r\nWe recommend you begin with the INTRO Package before commencing this INTEGRATE Package .\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTEGRATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Integrate-Candice-v2.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hands-on Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Hands-on-Packages\"></a>Hands-on Packages<a name=\"Hands-on-Packages\"></a></h2>\r\n<h3>We implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Custom\" currency=\"$\" per=\"month\" sum=\"?\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]We can design a custom package that suits the unique needs of your business.[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Incredible Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Incredible\" currency=\"$\" per=\"month\" sum=\"300\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]1 x Facebook / Instagram post content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\nMonthly e-mail newsletter\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Intermediate Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Intermediate\" currency=\"$\" per=\"month\" sum=\"600\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]2 x Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised  content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nFortnightly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Advanced Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Advanced\" currency=\"$\" per=\"month\" sum=\"900\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nWeekly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Expert Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Expert\" currency=\"$\" per=\"month\" sum=\"1500\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Twice weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n2 x Facebook cover content &amp; artwork\r\n\r\n2 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n2 x blog posts with search engine optimised\r\n\r\nPoint of sale content &amp; artwork\r\n\r\nManage media bookings/ad campaigns (Social Media/Google)\r\n\r\nWeekly e-mail newsletter\r\n\r\nWebsite updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Projects Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Individual-Projects\"></a>Individual Projects<a name=\"Individual-Projects\"></a></h2>\r\n<h3>We help you with a specific item of work</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nPrices below include effective marketing copy and design.\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"234\">Brochures</td>\r\n<td width=\"95\"></td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          One sided flyer</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Double sided flyer</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Multi-page  DLE brochure</td>\r\n<td width=\"95\">$195</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Poster</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Point of sale</td>\r\n<td width=\"95\">$ P.O.A</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website Content (200 words)</td>\r\n<td width=\"95\">$89</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Blog (400-600 words)</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">E-mail Campaign</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Cover Photo &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Post artwork &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website content revamp^</td>\r\n<td width=\"95\">$725</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Products Footer Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n^A more accurate quote will be given depending on your website and amount of content\r\n\r\nPrices shown in NZD &amp; Excludes GST and travel.\r\n\r\nExcludes cost of stock images (if required). Any detailed artwork such as illustration or other will be quoted separately.\r\n\r\nIf what you are looking for is not listed above, it does not necessarily mean we do not offer the service, please contact us for a quote.\r\n\r\nPrices above include marketing copy and design and includes 2 revisions, further revisions will be quoted. Prices are available for content only options, proofing only options and design only options.\r\n\r\nPrinting can be arranged and will be quoted separately. Photography and video options can be arranged and quoted for separately\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Other-Services\"></a>Other Services<a name=\"Other-Services\"></a></h2>\r\n<h3>We offer a number of other services - please contact us for a quote</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Graphic Design</p>\r\n</td>\r\n<td style=\"text-align: center;\" width=\"154\">Printing</td>\r\n<td style=\"text-align: center;\" width=\"154\">Photography</td>\r\n<td style=\"text-align: center;\" width=\"154\">Videography</td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\">Event Management</td>\r\n<td style=\"text-align: center;\" width=\"154\">Website Development</td>\r\n<td style=\"text-align: center;\" width=\"154\">Proof Reading</td>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Advertising Bookings &amp; Management</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "WORK WITH ME", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2016-03-17 22:42:13", "2016-03-17 09:42:13", "", "39", "http://www.infinitymarketing.co.nz/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("241", "1", "2016-03-20 17:54:33", "2016-03-20 04:54:33", "Advertising Booking", "Advertising Booking", "", "inherit", "open", "closed", "", "advertising-booking", "", "", "2016-03-20 20:06:21", "2016-03-20 07:06:21", "", "39", "http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Advertising-Booking.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("242", "1", "2016-03-20 17:54:35", "2016-03-20 04:54:35", "Proof Reading", "Proof Reading", "", "inherit", "open", "closed", "", "copywriting", "", "", "2016-03-20 20:06:06", "2016-03-20 07:06:06", "", "39", "http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Copywriting.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("243", "1", "2016-03-20 17:54:36", "2016-03-20 04:54:36", "Event Management", "Event Management", "", "inherit", "open", "closed", "", "event-management", "", "", "2016-03-20 20:05:35", "2016-03-20 07:05:35", "", "39", "http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Event-Management.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("244", "1", "2016-03-20 17:54:36", "2016-03-20 04:54:36", "Graphic Design", "Graphic Design", "", "inherit", "open", "closed", "", "graphic-design", "", "", "2016-03-20 20:03:48", "2016-03-20 07:03:48", "", "39", "http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Graphic-Design.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("245", "1", "2016-03-20 17:54:37", "2016-03-20 04:54:37", "Photography", "Photography", "", "inherit", "open", "closed", "", "photography", "", "", "2016-03-20 20:04:55", "2016-03-20 07:04:55", "", "39", "http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Photography.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("246", "1", "2016-03-20 17:54:38", "2016-03-20 04:54:38", "Printing", "Printing", "", "inherit", "open", "closed", "", "printing", "", "", "2016-03-20 20:04:43", "2016-03-20 07:04:43", "", "39", "http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Printing.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("247", "1", "2016-03-20 17:54:39", "2016-03-20 04:54:39", "Video", "Video", "", "inherit", "open", "closed", "", "video", "", "", "2016-03-20 20:05:08", "2016-03-20 07:05:08", "", "39", "http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Video.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("248", "1", "2016-03-20 17:54:39", "2016-03-20 04:54:39", "Web Development", "Web Development", "", "inherit", "open", "closed", "", "web-development", "", "", "2016-03-20 20:05:50", "2016-03-20 07:05:50", "", "39", "http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Web-Development.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("251", "1", "2016-03-20 18:12:10", "2016-03-20 05:12:10", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Me Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Work With Me</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Me Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">We offer a range of marketing services for your small business. Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.</p>\r\n<p style=\"text-align: center;\">We offer great monthly packages, which are fully customisable to suit your business needs; and one-off services.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Coaching Image\" show_in_lightbox=\"off\" url=\"#Coaching-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Coaching_sml.jpg\" alt=\"Coaching\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Hands-on Packages Image\" show_in_lightbox=\"off\" url=\"#Hands-on-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Hands-on_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Individual Services Image\" show_in_lightbox=\"off\" url=\"#Individual-Projects\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Individual-Projects_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Other Services Image\" show_in_lightbox=\"off\" url=\"#Other-Services\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Other-Services_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Coaching Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Coaching-Packages\"></a>Coaching Packages<a name=\"Coaching-Packages\"></a></h2>\r\n<h3>We coach, and you implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTRO Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTRO Package - $189</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTRO Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis is about getting the basics right. We look at your current activity, recognise what is working, recommend any improvements and establish a plan going forward. This may suit those who have already started marketing their business and need help to get more customers or get themselves on track.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Establish a top line plan to get you where you want to be</li>\r\n</ul>\r\nThis involves a 1 hour face-to-face (where possible) or skype session and you will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nThis package can be upgraded to the INITIATE package if you feel you would like to go into more detail and create an initial marketing plan.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTRO Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Intro-Candice-v3.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INITIATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INITIATE Package - $589</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INITIATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThe INITIATE package is about giving your marketing the huge push it needs, either when you first start your business or a little later down the track. This is a holistic approach, taking you from strategy, goals, and tactics through to implementation. This will provide a plan of action for the next year.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Explore your positioning and they key messages and selling points for your customers</li>\r\n	<li>Understand who your competitors are and what your point of difference is</li>\r\n	<li>Talk tactics on where to be present, identifying why and how to achieve this</li>\r\n	<li>Establish a plan for making your customers take action</li>\r\n	<li>Work together to formulate a marketing plan for the year</li>\r\n</ul>\r\nThis involves a 2 x 1.5 hour face-to-face (where possible) or skype sessions.  You will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nWe recommend you follow on to the INTEGRATE package as this package measures the effectiveness of your plan as implemented, and refines this on an ongoing basis.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INITIATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Initiate-Candice-v2.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTEGRATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTEGRATE Monthly Package - $289 per month</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTEGRATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n(3 month minimum)\r\n\r\nThis is a one on one session twice per month where together, we ensure your marketing is on track. We can utilise measurement techniques to assess the effectiveness of your strategies and keeping you on track to achieve the desired goals.\r\n\r\nWe meet via skype* twice per month to discuss your progress, any ideas or opportunities, and bounce ideas around. (*This can also be done in one longer face to face session if possible)\r\n\r\nThese sessions will help to keep on track with your marketing plan, and guide you throughout the year to meet and exceed your marketing and business goals. By measuring the effectiveness of current strategies, refinements can be effected to ensure your marketing continues to maximise results.\r\n\r\nSupport is available by e-mail, Facebook or reasonable phone support throughout the month if required.\r\n\r\nWe recommend you begin with the INTRO Package before commencing this INTEGRATE Package .\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTEGRATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Integrate-Candice-v2.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hands-on Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Hands-on-Packages\"></a>Hands-on Packages<a name=\"Hands-on-Packages\"></a></h2>\r\n<h3>We implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Custom\" currency=\"$\" per=\"month\" sum=\"?\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]We can design a custom package that suits the unique needs of your business.[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Incredible Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Incredible\" currency=\"$\" per=\"month\" sum=\"300\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]1 x Facebook / Instagram post content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\nMonthly e-mail newsletter\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Intermediate Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Intermediate\" currency=\"$\" per=\"month\" sum=\"600\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]2 x Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised  content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nFortnightly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Advanced Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Advanced\" currency=\"$\" per=\"month\" sum=\"900\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nWeekly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Expert Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Expert\" currency=\"$\" per=\"month\" sum=\"1500\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Twice weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n2 x Facebook cover content &amp; artwork\r\n\r\n2 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n2 x blog posts with search engine optimised\r\n\r\nPoint of sale content &amp; artwork\r\n\r\nManage media bookings/ad campaigns (Social Media/Google)\r\n\r\nWeekly e-mail newsletter\r\n\r\nWebsite updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Projects Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Individual-Projects\"></a>Individual Projects<a name=\"Individual-Projects\"></a></h2>\r\n<h3>We help you with a specific item of work</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nPrices below include effective marketing copy and design.\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"234\">Brochures</td>\r\n<td width=\"95\"></td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          One sided flyer</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Double sided flyer</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Multi-page  DLE brochure</td>\r\n<td width=\"95\">$195</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Poster</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Point of sale</td>\r\n<td width=\"95\">$ P.O.A</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website Content (200 words)</td>\r\n<td width=\"95\">$89</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Blog (400-600 words)</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">E-mail Campaign</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Cover Photo &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Post artwork &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website content revamp^</td>\r\n<td width=\"95\">$725</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Products Footer Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n^A more accurate quote will be given depending on your website and amount of content\r\n\r\nPrices shown in NZD &amp; Excludes GST and travel.\r\n\r\nExcludes cost of stock images (if required). Any detailed artwork such as illustration or other will be quoted separately.\r\n\r\nIf what you are looking for is not listed above, it does not necessarily mean we do not offer the service, please contact us for a quote.\r\n\r\nPrices above include marketing copy and design and includes 2 revisions, further revisions will be quoted. Prices are available for content only options, proofing only options and design only options.\r\n\r\nPrinting can be arranged and will be quoted separately. Photography and video options can be arranged and quoted for separately\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Other-Services\"></a>Other Services<a name=\"Other-Services\"></a></h2>\r\n<h3>We offer a number of other services - please contact us for a quote</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Graphic Design</p>\r\n</td>\r\n<td style=\"text-align: center;\" width=\"154\">Printing</td>\r\n<td style=\"text-align: center;\" width=\"154\">Photography</td>\r\n<td style=\"text-align: center;\" width=\"154\">Videography</td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\">Event Management</td>\r\n<td style=\"text-align: center;\" width=\"154\">Website Development</td>\r\n<td style=\"text-align: center;\" width=\"154\">Proof Reading</td>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Advertising Bookings &amp; Management</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "WORK WITH ME", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2016-03-20 18:12:10", "2016-03-20 05:12:10", "", "39", "http://www.infinitymarketing.co.nz/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("249", "1", "2016-03-20 18:00:04", "2016-03-20 05:00:04", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background-1.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Me Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Work With Me</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Me Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">We offer a range of marketing services for your small business. Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.</p>\r\n<p style=\"text-align: center;\">We offer great monthly packages, which are fully customisable to suit your business needs; and one-off services.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Coaching Image\" show_in_lightbox=\"off\" url=\"#Coaching-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Coaching_sml.jpg\" alt=\"Coaching\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Hands-on Packages Image\" show_in_lightbox=\"off\" url=\"#Hands-on-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Hands-on_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Individual Services Image\" show_in_lightbox=\"off\" url=\"#Individual-Projects\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Individual-Projects_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Other Services Image\" show_in_lightbox=\"off\" url=\"#Other-Services\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Other-Services_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Coaching Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Coaching-Packages\"></a>Coaching Packages<a name=\"Coaching-Packages\"></a></h2>\r\n<h3>We coach, and you implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTRO Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTRO Package - $189</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTRO Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis is about getting the basics right. We look at your current activity, recognise what is working, recommend any improvements and establish a plan going forward. This may suit those who have already started marketing their business and need help to get more customers or get themselves on track.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Establish a top line plan to get you where you want to be</li>\r\n</ul>\r\nThis involves a 1 hour face-to-face (where possible) or skype session and you will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nThis package can be upgraded to the INITIATE package if you feel you would like to go into more detail and create an initial marketing plan.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTRO Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Intro-Candice-v3.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INITIATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INITIATE Package - $589</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INITIATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThe INITIATE package is about giving your marketing the huge push it needs, either when you first start your business or a little later down the track. This is a holistic approach, taking you from strategy, goals, and tactics through to implementation. This will provide a plan of action for the next year.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Explore your positioning and they key messages and selling points for your customers</li>\r\n	<li>Understand who your competitors are and what your point of difference is</li>\r\n	<li>Talk tactics on where to be present, identifying why and how to achieve this</li>\r\n	<li>Establish a plan for making your customers take action</li>\r\n	<li>Work together to formulate a marketing plan for the year</li>\r\n</ul>\r\nThis involves a 2 x 1.5 hour face-to-face (where possible) or skype sessions.  You will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nWe recommend you follow on to the INTEGRATE package as this package measures the effectiveness of your plan as implemented, and refines this on an ongoing basis.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INITIATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Initiate-Candice-v2.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTEGRATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTEGRATE Monthly Package - $289 per month</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTEGRATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n(3 month minimum)\r\n\r\nThis is a one on one session twice per month where together, we ensure your marketing is on track. We can utilise measurement techniques to assess the effectiveness of your strategies and keeping you on track to achieve the desired goals.\r\n\r\nWe meet via skype* twice per month to discuss your progress, any ideas or opportunities, and bounce ideas around. (*This can also be done in one longer face to face session if possible)\r\n\r\nThese sessions will help to keep on track with your marketing plan, and guide you throughout the year to meet and exceed your marketing and business goals. By measuring the effectiveness of current strategies, refinements can be effected to ensure your marketing continues to maximise results.\r\n\r\nSupport is available by e-mail, Facebook or reasonable phone support throughout the month if required.\r\n\r\nWe recommend you begin with the INTRO Package before commencing this INTEGRATE Package .\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTEGRATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Integrate-Candice-v2.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hands-on Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Hands-on-Packages\"></a>Hands-on Packages<a name=\"Hands-on-Packages\"></a></h2>\r\n<h3>We implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Custom\" currency=\"$\" per=\"month\" sum=\"?\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]We can design a custom package that suits the unique needs of your business.[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Incredible Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Incredible\" currency=\"$\" per=\"month\" sum=\"300\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]1 x Facebook / Instagram post content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\nMonthly e-mail newsletter\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Intermediate Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Intermediate\" currency=\"$\" per=\"month\" sum=\"600\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]2 x Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised  content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nFortnightly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Advanced Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Advanced\" currency=\"$\" per=\"month\" sum=\"900\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nWeekly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Expert Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Expert\" currency=\"$\" per=\"month\" sum=\"1500\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Twice weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n2 x Facebook cover content &amp; artwork\r\n\r\n2 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n2 x blog posts with search engine optimised\r\n\r\nPoint of sale content &amp; artwork\r\n\r\nManage media bookings/ad campaigns (Social Media/Google)\r\n\r\nWeekly e-mail newsletter\r\n\r\nWebsite updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Projects Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Individual-Projects\"></a>Individual Projects<a name=\"Individual-Projects\"></a></h2>\r\n<h3>We help you with a specific item of work</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nPrices below include effective marketing copy and design.\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"234\">Brochures</td>\r\n<td width=\"95\"></td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          One sided flyer</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Double sided flyer</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Multi-page  DLE brochure</td>\r\n<td width=\"95\">$195</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Poster</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Point of sale</td>\r\n<td width=\"95\">$ P.O.A</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website Content (200 words)</td>\r\n<td width=\"95\">$89</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Blog (400-600 words)</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">E-mail Campaign</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Cover Photo &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Post artwork &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website content revamp^</td>\r\n<td width=\"95\">$725</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Products Footer Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n^A more accurate quote will be given depending on your website and amount of content\r\n\r\nPrices shown in NZD &amp; Excludes GST and travel.\r\n\r\nExcludes cost of stock images (if required). Any detailed artwork such as illustration or other will be quoted separately.\r\n\r\nIf what you are looking for is not listed above, it does not necessarily mean we do not offer the service, please contact us for a quote.\r\n\r\nPrices above include marketing copy and design and includes 2 revisions, further revisions will be quoted. Prices are available for content only options, proofing only options and design only options.\r\n\r\nPrinting can be arranged and will be quoted separately. Photography and video options can be arranged and quoted for separately\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Other-Services\"></a>Other Services<a name=\"Other-Services\"></a></h2>\r\n<h3>We offer a number of other services - please contact us for a quote</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\"><strong><a href=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Graphic-Design.jpg\" rel=\"attachment wp-att-244\"><img class=\"alignnone size-full wp-image-244\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Graphic-Design.jpg\" alt=\"Graphic Design\" width=\"93\" height=\"76\" /></a> </strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <a href=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Printing.jpg\" rel=\"attachment wp-att-246\"><img class=\"alignnone size-full wp-image-246\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Printing.jpg\" alt=\"Printing\" width=\"77\" height=\"78\" /></a></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <a href=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Photography.jpg\" rel=\"attachment wp-att-245\"><img class=\"alignnone size-full wp-image-245\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Photography.jpg\" alt=\"Photography\" width=\"73\" height=\"60\" /></a></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <a href=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Video.jpg\" rel=\"attachment wp-att-247\"><img class=\"alignnone size-full wp-image-247\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Video.jpg\" alt=\"Video\" width=\"68\" height=\"68\" /></a></strong></td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Graphic Design</p>\r\n</td>\r\n<td style=\"text-align: center;\" width=\"154\">Printing</td>\r\n<td style=\"text-align: center;\" width=\"154\">Photography</td>\r\n<td style=\"text-align: center;\" width=\"154\">Videography</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <a href=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Event-Management.jpg\" rel=\"attachment wp-att-243\"><img class=\"alignnone size-full wp-image-243\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Event-Management.jpg\" alt=\"Event Management\" width=\"68\" height=\"74\" /></a></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <a href=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Web-Development.jpg\" rel=\"attachment wp-att-248\"><img class=\"alignnone size-full wp-image-248\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Web-Development.jpg\" alt=\"Web Development\" width=\"73\" height=\"75\" /></a></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <a href=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Copywriting.jpg\" rel=\"attachment wp-att-242\"><img class=\"alignnone size-full wp-image-242\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Copywriting.jpg\" alt=\"Copywriting\" width=\"63\" height=\"77\" /></a></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <a href=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Advertising-Booking.jpg\" rel=\"attachment wp-att-241\"><img class=\"alignnone size-full wp-image-241\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Advertising-Booking.jpg\" alt=\"Advertising Booking\" width=\"66\" height=\"67\" /></a></strong></td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\">Event Management</td>\r\n<td style=\"text-align: center;\" width=\"154\">Website Development</td>\r\n<td style=\"text-align: center;\" width=\"154\">Proof Reading</td>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Advertising Bookings &amp; Management</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "WORK WITH ME", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2016-03-20 18:00:04", "2016-03-20 05:00:04", "", "39", "http://www.infinitymarketing.co.nz/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("250", "1", "2016-03-20 18:11:32", "2016-03-20 05:11:32", "", "HeaderBackground", "", "inherit", "open", "closed", "", "headerbackground", "", "", "2016-03-20 18:11:32", "2016-03-20 05:11:32", "", "39", "http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("252", "1", "2016-03-20 18:13:06", "2016-03-20 05:13:06", "[et_pb_section admin_label=\"section\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"About Infinity Marketing Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">About Infinity Marketing</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hello I\'m Candice Venter Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\"><strong>Hello, I\'m Candice Venter</strong></h2>\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h2 style=\"text-align: center;\"><em>Your outsourced marketing expert, </em><em>here to help you\r\nwith marketing your small business</em>\r\n<em> with marketing that works!</em></h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nRight now, I\'m sure you\'re feeling like you are trying to juggle it all, to know every aspect of how to do everything for your business, and not sure how to get the results you need for your business to grow (or even survive!) and overall just frustrated and bombarded!\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><strong>I get it, balancing everything is HARD and you quite simply can\'t be the expert at everything. </strong></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI\'m here to show you that there is help and a light at the end of the tunnel where your business can succeed.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhy I love helping small businesses deliver outstanding marketing and see their businesses grow as a result, is because I am inspired by what amazing people and talents there are in our community. My passion is seeing other people succeed and I believe that everyone <strong>deserves</strong> to succeed.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI want this for you! I want to share my sills as a qualified and experienced marketing professional, to help your business grow and succeed.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/About-Candice-.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Get Personal Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#888e8f\" border_style=\"outset\" border_width=\"2px\"]\r\n<h2 style=\"text-align: justify;\">Let\'s get personal</h2>\r\n[/et_pb_text][et_pb_text admin_label=\"Get Personal Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOriginally from South Africa, I have now lived over half my life in Auckland, New Zealand. That means I have a good mix of being able to tell it straight, with a good dose of kiwi ingenuity. I studied a Bachelor of Business and Information Management, with a second major in Marketing at the University of Auckland and have gained my professional experience in both global corporations and a great kiwi start-up.\r\n\r\nFamily is my everything, this includes my 15 year old miniature sausage dog, Dante. It\'s for them, that I do what I do.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" global_module=\"179\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Infinity_background.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"179\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"179\" admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-me/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\">Take the first step toward your new future</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "ABOUT", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2016-03-20 18:13:06", "2016-03-20 05:13:06", "", "2", "http://www.infinitymarketing.co.nz/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("253", "1", "2016-03-20 18:13:56", "2016-03-20 05:13:56", "[et_pb_section admin_label=\"section\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Blog Title\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Blog</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_blog admin_label=\"Blog\" fullwidth=\"on\" show_thumbnail=\"on\" show_content=\"off\" show_more=\"on\" show_author=\"on\" show_date=\"on\" show_categories=\"on\" show_comments=\"on\" show_pagination=\"on\" offset_number=\"0\" use_overlay=\"off\" background_layout=\"light\" use_dropshadow=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blog][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"right\" area=\"sidebar-1\" background_layout=\"light\" remove_border=\"off\"] [/et_pb_sidebar][/et_pb_column][/et_pb_row][/et_pb_section]", "BLOG", "", "inherit", "closed", "closed", "", "98-revision-v1", "", "", "2016-03-20 18:13:56", "2016-03-20 05:13:56", "", "98", "http://www.infinitymarketing.co.nz/98-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("254", "1", "2016-03-20 18:14:32", "2016-03-20 05:14:32", "[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Contact Title\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Contact</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nInfinity Marketing is based in Howick, Auckland; New Zealand\r\n\r\n<span class=\"phone\"><strong>Phone:</strong> 021 159 1215\r\n</span><span class=\"email\"><strong>E-mail: </strong>candice@infinitymarketing.co.nz</span>\r\n\r\nOr complete the form below to email us:\r\n\r\n[/et_pb_text][et_pb_contact_form admin_label=\"Contact Form\" captcha=\"on\" email=\"contact@infinitymarketing.co.nz\" use_redirect=\"off\" success_message=\"Sent!\" input_border_radius=\"0\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_contact_field field_title=\"Name\" field_type=\"input\" field_id=\"Name\" required_mark=\"on\" fullwidth_field=\"off\" /][et_pb_contact_field field_title=\"Email Address\" field_type=\"email\" field_id=\"Email\" required_mark=\"on\" fullwidth_field=\"off\" /][et_pb_contact_field field_title=\"Message\" field_type=\"text\" field_id=\"Message\" required_mark=\"on\" /] [/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][/et_pb_row][/et_pb_section]", "CONTACT", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2016-03-20 18:14:32", "2016-03-20 05:14:32", "", "43", "http://www.infinitymarketing.co.nz/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("255", "1", "2016-03-20 19:53:29", "2016-03-20 06:53:29", "[et_pb_section admin_label=\"Impact Background\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice-Infinity-Marketing-Banner-.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Impact Text\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/discover-v2.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_signup admin_label=\"Email Optin\" provider=\"mailchimp\" mailchimp_list=\"4419f44e8e\" aweber_list=\"none\" use_background_color=\"on\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"left\" use_focus_border_color=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" title=\"Get practical marketing tips delivered straight to your inbox\" button_text=\"Sign me up!\" header_font=\"Open Sans||||\" header_font_size=\"22\" body_font=\"Open Sans||||\"] [/et_pb_signup][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"0px|||\"]\r\n<h2 style=\"text-align: center;\">Building your dream business can be overwhelming</h2>\r\n<h2 style=\"text-align: center;\">and how do you know what marketing works?</h2>\r\n<p style=\"text-align: center;\">In your small business, you tend to try and juggle it all. But Infinity Marketing is here to help you,\r\nthrough marketing that suits your unique business and the stage that it is at.</p>\r\n<p style=\"text-align: center;\">We will work together with you, to gain a thorough understanding of who your customers are,\r\nand where they are, to deliver the best marketing for your small business.</p>\r\n<p style=\"text-align: center;\">You might know exactly what your business needs to get the extra punch it requires,\r\nand simply need help with implementation of your marketing plan, or you might just\r\nbe starting out and need a guiding hand to identify what needs to be done for your business marketing.</p>\r\n<p style=\"text-align: center;\">Whatever stage you are at, we can help you take your business to the next level,\r\nwhere the possibilities are infinite.</p>\r\n<p style=\"text-align: center;\"><strong><a href=\"http://www.infinitymarketing.co.nz/work-with-me/\">Let\'s discover how to make that happen for your business</a></strong></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#b3babf\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Connect CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Connect.jpg\" alt=\"Connect on Facebook\" show_in_lightbox=\"off\" url=\"http://www.facebook.com/infinitymarketing.co.nz\" url_new_window=\"on\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Services CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Services.jpg\" alt=\"View Services\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/work-with-me/\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Contact CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Contact.jpg\" alt=\"Contact us\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/contact/\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice-About_round.png\" alt=\"Candice Venter\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"About Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>About Candice</h2>\r\nCandice has has a passion for marketing for small businesses, having worked in both start up and large corporations, she has seen and done a lot. She has an absolute passion for helping small businesses grow through the power of marketing.\r\n\r\nAn expert in understanding who your customers are, understanding where they are and delivering messages that inspire action, Candice thrives on creating marketing that works.\r\n\r\nAbove all, she is passionate to see your business succeed.\r\n\r\n[/et_pb_text][et_pb_button admin_label=\"Read More Button\" button_url=\"http://www.infinitymarketing.co.nz/about/\" url_new_window=\"off\" button_text=\"Read More\" button_alignment=\"left\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#f9f9f9\" button_bg_color=\"#009edb\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon=\"%%28%%\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-me/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\">Discover the services we provide</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "HOME", "", "inherit", "closed", "closed", "", "37-revision-v1", "", "", "2016-03-20 19:53:29", "2016-03-20 06:53:29", "", "37", "http://www.infinitymarketing.co.nz/37-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("256", "1", "2016-03-20 19:54:56", "2016-03-20 06:54:56", "[et_pb_section admin_label=\"CTA Background\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-me/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\n\n<p style=\"text-align: center;\">Take the first step toward your new future</p>\n\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Work With Me", "", "inherit", "closed", "closed", "", "179-revision-v1", "", "", "2016-03-20 19:54:56", "2016-03-20 06:54:56", "", "179", "http://www.infinitymarketing.co.nz/179-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("257", "1", "2016-03-20 19:55:00", "2016-03-20 06:55:00", "[et_pb_section admin_label=\"section\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"About Infinity Marketing Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">About Infinity Marketing</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hello I\'m Candice Venter Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\"><strong>Hello, I\'m Candice Venter</strong></h2>\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h2 style=\"text-align: center;\"><em>Your outsourced marketing expert, </em><em>here to help you\r\nwith marketing your small business</em>\r\n<em> with marketing that works!</em></h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nRight now, I\'m sure you\'re feeling like you are trying to juggle it all, to know every aspect of how to do everything for your business, and not sure how to get the results you need for your business to grow (or even survive!) and overall just frustrated and bombarded!\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><strong>I get it, balancing everything is HARD and you quite simply can\'t be the expert at everything. </strong></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI\'m here to show you that there is help and a light at the end of the tunnel where your business can succeed.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhy I love helping small businesses deliver outstanding marketing and see their businesses grow as a result, is because I am inspired by what amazing people and talents there are in our community. My passion is seeing other people succeed and I believe that everyone <strong>deserves</strong> to succeed.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI want this for you! I want to share my sills as a qualified and experienced marketing professional, to help your business grow and succeed.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/About-Candice-.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Get Personal Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#888e8f\" border_style=\"outset\" border_width=\"2px\"]\r\n<h2 style=\"text-align: justify;\">Let\'s get personal</h2>\r\n[/et_pb_text][et_pb_text admin_label=\"Get Personal Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOriginally from South Africa, I have now lived over half my life in Auckland, New Zealand. That means I have a good mix of being able to tell it straight, with a good dose of kiwi ingenuity. I studied a Bachelor of Business and Information Management, with a second major in Marketing at the University of Auckland and have gained my professional experience in both global corporations and a great kiwi start-up.\r\n\r\nFamily is my everything, this includes my 15 year old miniature sausage dog, Dante. It\'s for them, that I do what I do.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" global_module=\"179\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"179\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"179\" admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-me/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\">Take the first step toward your new future</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "ABOUT", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2016-03-20 19:55:00", "2016-03-20 06:55:00", "", "2", "http://www.infinitymarketing.co.nz/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("258", "1", "2016-03-20 19:57:46", "2016-03-20 06:57:46", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Me Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Work With Me</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Me Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">We offer a range of marketing services for your small business. Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.</p>\r\n<p style=\"text-align: center;\">We offer great monthly packages, which are fully customisable to suit your business needs; and one-off services.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Coaching Image\" show_in_lightbox=\"off\" url=\"#Coaching-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Coaching_sml.jpg\" alt=\"Coaching\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Hands-on Packages Image\" show_in_lightbox=\"off\" url=\"#Hands-on-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Hands-on_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Individual Services Image\" show_in_lightbox=\"off\" url=\"#Individual-Projects\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Individual-Projects_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Other Services Image\" show_in_lightbox=\"off\" url=\"#Other-Services\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Other-Services_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Coaching Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Coaching-Packages\"></a>Coaching Packages<a name=\"Coaching-Packages\"></a></h2>\r\n<h3>We coach, and you implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTRO Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTRO Package - $189</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTRO Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis is about getting the basics right. We look at your current activity, recognise what is working, recommend any improvements and establish a plan going forward. This may suit those who have already started marketing their business and need help to get more customers or get themselves on track.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Establish a top line plan to get you where you want to be</li>\r\n</ul>\r\nThis involves a 1 hour face-to-face (where possible) or skype session and you will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nThis package can be upgraded to the INITIATE package if you feel you would like to go into more detail and create an initial marketing plan.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTRO Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Intro-Candice-v3.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INITIATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INITIATE Package - $589</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INITIATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThe INITIATE package is about giving your marketing the huge push it needs, either when you first start your business or a little later down the track. This is a holistic approach, taking you from strategy, goals, and tactics through to implementation. This will provide a plan of action for the next year.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Explore your positioning and they key messages and selling points for your customers</li>\r\n	<li>Understand who your competitors are and what your point of difference is</li>\r\n	<li>Talk tactics on where to be present, identifying why and how to achieve this</li>\r\n	<li>Establish a plan for making your customers take action</li>\r\n	<li>Work together to formulate a marketing plan for the year</li>\r\n</ul>\r\nThis involves a 2 x 1.5 hour face-to-face (where possible) or skype sessions.  You will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nWe recommend you follow on to the INTEGRATE package as this package measures the effectiveness of your plan as implemented, and refines this on an ongoing basis.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INITIATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Initiate-Candice-v2.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTEGRATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTEGRATE Monthly Package - $289 per month</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTEGRATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n(3 month minimum)\r\n\r\nThis is a one on one session twice per month where together, we ensure your marketing is on track. We can utilise measurement techniques to assess the effectiveness of your strategies and keeping you on track to achieve the desired goals.\r\n\r\nWe meet via skype* twice per month to discuss your progress, any ideas or opportunities, and bounce ideas around. (*This can also be done in one longer face to face session if possible)\r\n\r\nThese sessions will help to keep on track with your marketing plan, and guide you throughout the year to meet and exceed your marketing and business goals. By measuring the effectiveness of current strategies, refinements can be effected to ensure your marketing continues to maximise results.\r\n\r\nSupport is available by e-mail, Facebook or reasonable phone support throughout the month if required.\r\n\r\nWe recommend you begin with the INTRO Package before commencing this INTEGRATE Package .\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTEGRATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Integrate-Candice-v2.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hands-on Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Hands-on-Packages\"></a>Hands-on Packages<a name=\"Hands-on-Packages\"></a></h2>\r\n<h3>We implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Custom\" currency=\"$\" per=\"month\" sum=\"?\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]We can design a custom package that suits the unique needs of your business.[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Incredible Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Incredible\" currency=\"$\" per=\"month\" sum=\"300\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]1 x Facebook / Instagram post content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\nMonthly e-mail newsletter\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Intermediate Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Intermediate\" currency=\"$\" per=\"month\" sum=\"600\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]2 x Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised  content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nFortnightly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Advanced Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Advanced\" currency=\"$\" per=\"month\" sum=\"900\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nWeekly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Expert Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Expert\" currency=\"$\" per=\"month\" sum=\"1500\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Twice weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n2 x Facebook cover content &amp; artwork\r\n\r\n2 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n2 x blog posts with search engine optimised\r\n\r\nPoint of sale content &amp; artwork\r\n\r\nManage media bookings/ad campaigns (Social Media/Google)\r\n\r\nWeekly e-mail newsletter\r\n\r\nWebsite updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Projects Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Individual-Projects\"></a>Individual Projects<a name=\"Individual-Projects\"></a></h2>\r\n<h3>We help you with a specific item of work</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nPrices below include effective marketing copy and design.\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"234\">Brochures</td>\r\n<td width=\"95\"></td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          One sided flyer</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Double sided flyer</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Multi-page  DLE brochure</td>\r\n<td width=\"95\">$195</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Poster</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Point of sale</td>\r\n<td width=\"95\">$ P.O.A</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website Content (200 words)</td>\r\n<td width=\"95\">$89</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Blog (400-600 words)</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">E-mail Campaign</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Cover Photo &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Post artwork &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website content revamp^</td>\r\n<td width=\"95\">$725</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Products Footer Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n^A more accurate quote will be given depending on your website and amount of content\r\n\r\nPrices shown in NZD &amp; Excludes GST and travel.\r\n\r\nExcludes cost of stock images (if required). Any detailed artwork such as illustration or other will be quoted separately.\r\n\r\nIf what you are looking for is not listed above, it does not necessarily mean we do not offer the service, please contact us for a quote.\r\n\r\nPrices above include marketing copy and design and includes 2 revisions, further revisions will be quoted. Prices are available for content only options, proofing only options and design only options.\r\n\r\nPrinting can be arranged and will be quoted separately. Photography and video options can be arranged and quoted for separately\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Other-Services\"></a>Other Services<a name=\"Other-Services\"></a></h2>\r\n<h3>We offer a number of other services - please contact us for a quote</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Graphic Design</p>\r\n</td>\r\n<td style=\"text-align: center;\" width=\"154\">Printing</td>\r\n<td style=\"text-align: center;\" width=\"154\">Photography</td>\r\n<td style=\"text-align: center;\" width=\"154\">Videography</td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\">Event Management</td>\r\n<td style=\"text-align: center;\" width=\"154\">Website Development</td>\r\n<td style=\"text-align: center;\" width=\"154\">Proof Reading</td>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Advertising Bookings &amp; Management</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" admin_label=\"Section\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action - Contact\" title=\"Ready to take action?\" button_url=\"http://www.infinitymarketing.co.nz/contact/\" url_new_window=\"off\" button_text=\"Click here to make contact now\" use_background_color=\"on\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\nYour new future is waiting\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "WORK WITH ME", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2016-03-20 19:57:46", "2016-03-20 06:57:46", "", "39", "http://www.infinitymarketing.co.nz/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("259", "1", "2016-03-20 19:58:19", "2016-03-20 06:58:19", "[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action - Contact\" title=\"Ready to take action?\" button_url=\"http://www.infinitymarketing.co.nz/contact/\" url_new_window=\"off\" button_text=\"Click here to contact us now\" use_background_color=\"off\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\n\n<p>Your new future is waiting</p>\n\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Call to action - Contact", "", "publish", "closed", "closed", "", "call-to-action-contact", "", "", "2016-04-29 13:36:36", "2016-04-29 01:36:36", "", "0", "http://www.infinitymarketing.co.nz/et_pb_layout/call-to-action-contact/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("260", "1", "2016-03-20 19:58:34", "2016-03-20 06:58:34", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Me Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Work With Me</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Me Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">We offer a range of marketing services for your small business. Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.</p>\r\n<p style=\"text-align: center;\">We offer great monthly packages, which are fully customisable to suit your business needs; and one-off services.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Coaching Image\" show_in_lightbox=\"off\" url=\"#Coaching-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Coaching_sml.jpg\" alt=\"Coaching\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Hands-on Packages Image\" show_in_lightbox=\"off\" url=\"#Hands-on-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Hands-on_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Individual Services Image\" show_in_lightbox=\"off\" url=\"#Individual-Projects\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Individual-Projects_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Other Services Image\" show_in_lightbox=\"off\" url=\"#Other-Services\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Other-Services_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Coaching Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Coaching-Packages\"></a>Coaching Packages<a name=\"Coaching-Packages\"></a></h2>\r\n<h3>We coach, and you implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTRO Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTRO Package - $189</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTRO Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis is about getting the basics right. We look at your current activity, recognise what is working, recommend any improvements and establish a plan going forward. This may suit those who have already started marketing their business and need help to get more customers or get themselves on track.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Establish a top line plan to get you where you want to be</li>\r\n</ul>\r\nThis involves a 1 hour face-to-face (where possible) or skype session and you will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nThis package can be upgraded to the INITIATE package if you feel you would like to go into more detail and create an initial marketing plan.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTRO Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Intro-Candice-v3.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INITIATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INITIATE Package - $589</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INITIATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThe INITIATE package is about giving your marketing the huge push it needs, either when you first start your business or a little later down the track. This is a holistic approach, taking you from strategy, goals, and tactics through to implementation. This will provide a plan of action for the next year.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Explore your positioning and they key messages and selling points for your customers</li>\r\n	<li>Understand who your competitors are and what your point of difference is</li>\r\n	<li>Talk tactics on where to be present, identifying why and how to achieve this</li>\r\n	<li>Establish a plan for making your customers take action</li>\r\n	<li>Work together to formulate a marketing plan for the year</li>\r\n</ul>\r\nThis involves a 2 x 1.5 hour face-to-face (where possible) or skype sessions.  You will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nWe recommend you follow on to the INTEGRATE package as this package measures the effectiveness of your plan as implemented, and refines this on an ongoing basis.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INITIATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Initiate-Candice-v2.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTEGRATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTEGRATE Monthly Package - $289 per month</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTEGRATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n(3 month minimum)\r\n\r\nThis is a one on one session twice per month where together, we ensure your marketing is on track. We can utilise measurement techniques to assess the effectiveness of your strategies and keeping you on track to achieve the desired goals.\r\n\r\nWe meet via skype* twice per month to discuss your progress, any ideas or opportunities, and bounce ideas around. (*This can also be done in one longer face to face session if possible)\r\n\r\nThese sessions will help to keep on track with your marketing plan, and guide you throughout the year to meet and exceed your marketing and business goals. By measuring the effectiveness of current strategies, refinements can be effected to ensure your marketing continues to maximise results.\r\n\r\nSupport is available by e-mail, Facebook or reasonable phone support throughout the month if required.\r\n\r\nWe recommend you begin with the INTRO Package before commencing this INTEGRATE Package .\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTEGRATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Integrate-Candice-v2.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hands-on Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Hands-on-Packages\"></a>Hands-on Packages<a name=\"Hands-on-Packages\"></a></h2>\r\n<h3>We implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Custom\" currency=\"$\" per=\"month\" sum=\"?\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]We can design a custom package that suits the unique needs of your business.[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Incredible Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Incredible\" currency=\"$\" per=\"month\" sum=\"300\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]1 x Facebook / Instagram post content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\nMonthly e-mail newsletter\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Intermediate Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Intermediate\" currency=\"$\" per=\"month\" sum=\"600\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]2 x Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised  content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nFortnightly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Advanced Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Advanced\" currency=\"$\" per=\"month\" sum=\"900\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nWeekly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Expert Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Expert\" currency=\"$\" per=\"month\" sum=\"1500\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Twice weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n2 x Facebook cover content &amp; artwork\r\n\r\n2 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n2 x blog posts with search engine optimised\r\n\r\nPoint of sale content &amp; artwork\r\n\r\nManage media bookings/ad campaigns (Social Media/Google)\r\n\r\nWeekly e-mail newsletter\r\n\r\nWebsite updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Projects Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Individual-Projects\"></a>Individual Projects<a name=\"Individual-Projects\"></a></h2>\r\n<h3>We help you with a specific item of work</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nPrices below include effective marketing copy and design.\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"234\">Brochures</td>\r\n<td width=\"95\"></td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          One sided flyer</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Double sided flyer</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Multi-page  DLE brochure</td>\r\n<td width=\"95\">$195</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Poster</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Point of sale</td>\r\n<td width=\"95\">$ P.O.A</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website Content (200 words)</td>\r\n<td width=\"95\">$89</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Blog (400-600 words)</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">E-mail Campaign</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Cover Photo &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Post artwork &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website content revamp^</td>\r\n<td width=\"95\">$725</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Products Footer Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n^A more accurate quote will be given depending on your website and amount of content\r\n\r\nPrices shown in NZD &amp; Excludes GST and travel.\r\n\r\nExcludes cost of stock images (if required). Any detailed artwork such as illustration or other will be quoted separately.\r\n\r\nIf what you are looking for is not listed above, it does not necessarily mean we do not offer the service, please contact us for a quote.\r\n\r\nPrices above include marketing copy and design and includes 2 revisions, further revisions will be quoted. Prices are available for content only options, proofing only options and design only options.\r\n\r\nPrinting can be arranged and will be quoted separately. Photography and video options can be arranged and quoted for separately\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Other-Services\"></a>Other Services<a name=\"Other-Services\"></a></h2>\r\n<h3>We offer a number of other services - please contact us for a quote</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Graphic Design</p>\r\n</td>\r\n<td style=\"text-align: center;\" width=\"154\">Printing</td>\r\n<td style=\"text-align: center;\" width=\"154\">Photography</td>\r\n<td style=\"text-align: center;\" width=\"154\">Videography</td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\">Event Management</td>\r\n<td style=\"text-align: center;\" width=\"154\">Website Development</td>\r\n<td style=\"text-align: center;\" width=\"154\">Proof Reading</td>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Advertising Bookings &amp; Management</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" global_module=\"259\"][et_pb_row global_parent=\"259\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"259\" admin_label=\"Call To Action - Contact\" title=\"Ready to take action?\" button_url=\"http://www.infinitymarketing.co.nz/contact/\" url_new_window=\"off\" button_text=\"Click here to make contact now\" use_background_color=\"on\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\nYour new future is waiting\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "WORK WITH ME", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2016-03-20 19:58:34", "2016-03-20 06:58:34", "", "39", "http://www.infinitymarketing.co.nz/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("261", "1", "2016-03-20 19:59:19", "2016-03-20 06:59:19", "[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action - Contact\" title=\"Ready to take action?\" button_url=\"http://www.infinitymarketing.co.nz/contact/\" url_new_window=\"off\" button_text=\"Click here to make contact now\" use_background_color=\"off\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\n\n<p>Your new future is waiting</p>\n\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Call to action - Contact", "", "inherit", "closed", "closed", "", "259-revision-v1", "", "", "2016-03-20 19:59:19", "2016-03-20 06:59:19", "", "259", "http://www.infinitymarketing.co.nz/259-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("262", "1", "2016-03-20 19:59:25", "2016-03-20 06:59:25", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Me Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Work With Me</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Me Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">We offer a range of marketing services for your small business. Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.</p>\r\n<p style=\"text-align: center;\">We offer great monthly packages, which are fully customisable to suit your business needs; and one-off services.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Coaching Image\" show_in_lightbox=\"off\" url=\"#Coaching-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Coaching_sml.jpg\" alt=\"Coaching\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Hands-on Packages Image\" show_in_lightbox=\"off\" url=\"#Hands-on-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Hands-on_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Individual Services Image\" show_in_lightbox=\"off\" url=\"#Individual-Projects\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Individual-Projects_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Other Services Image\" show_in_lightbox=\"off\" url=\"#Other-Services\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Other-Services_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Coaching Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Coaching-Packages\"></a>Coaching Packages<a name=\"Coaching-Packages\"></a></h2>\r\n<h3>We coach, and you implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTRO Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTRO Package - $189</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTRO Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis is about getting the basics right. We look at your current activity, recognise what is working, recommend any improvements and establish a plan going forward. This may suit those who have already started marketing their business and need help to get more customers or get themselves on track.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Establish a top line plan to get you where you want to be</li>\r\n</ul>\r\nThis involves a 1 hour face-to-face (where possible) or skype session and you will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nThis package can be upgraded to the INITIATE package if you feel you would like to go into more detail and create an initial marketing plan.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTRO Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Intro-Candice-v3.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INITIATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INITIATE Package - $589</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INITIATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThe INITIATE package is about giving your marketing the huge push it needs, either when you first start your business or a little later down the track. This is a holistic approach, taking you from strategy, goals, and tactics through to implementation. This will provide a plan of action for the next year.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Explore your positioning and they key messages and selling points for your customers</li>\r\n	<li>Understand who your competitors are and what your point of difference is</li>\r\n	<li>Talk tactics on where to be present, identifying why and how to achieve this</li>\r\n	<li>Establish a plan for making your customers take action</li>\r\n	<li>Work together to formulate a marketing plan for the year</li>\r\n</ul>\r\nThis involves a 2 x 1.5 hour face-to-face (where possible) or skype sessions.  You will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nWe recommend you follow on to the INTEGRATE package as this package measures the effectiveness of your plan as implemented, and refines this on an ongoing basis.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INITIATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Initiate-Candice-v2.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTEGRATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTEGRATE Monthly Package - $289 per month</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTEGRATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n(3 month minimum)\r\n\r\nThis is a one on one session twice per month where together, we ensure your marketing is on track. We can utilise measurement techniques to assess the effectiveness of your strategies and keeping you on track to achieve the desired goals.\r\n\r\nWe meet via skype* twice per month to discuss your progress, any ideas or opportunities, and bounce ideas around. (*This can also be done in one longer face to face session if possible)\r\n\r\nThese sessions will help to keep on track with your marketing plan, and guide you throughout the year to meet and exceed your marketing and business goals. By measuring the effectiveness of current strategies, refinements can be effected to ensure your marketing continues to maximise results.\r\n\r\nSupport is available by e-mail, Facebook or reasonable phone support throughout the month if required.\r\n\r\nWe recommend you begin with the INTRO Package before commencing this INTEGRATE Package .\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTEGRATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Integrate-Candice-v2.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hands-on Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Hands-on-Packages\"></a>Hands-on Packages<a name=\"Hands-on-Packages\"></a></h2>\r\n<h3>We implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Custom\" currency=\"$\" per=\"month\" sum=\"?\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]We can design a custom package that suits the unique needs of your business.[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Incredible Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Incredible\" currency=\"$\" per=\"month\" sum=\"300\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]1 x Facebook / Instagram post content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\nMonthly e-mail newsletter\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Intermediate Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Intermediate\" currency=\"$\" per=\"month\" sum=\"600\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]2 x Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised  content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nFortnightly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Advanced Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Advanced\" currency=\"$\" per=\"month\" sum=\"900\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nWeekly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Expert Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Expert\" currency=\"$\" per=\"month\" sum=\"1500\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Twice weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n2 x Facebook cover content &amp; artwork\r\n\r\n2 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n2 x blog posts with search engine optimised\r\n\r\nPoint of sale content &amp; artwork\r\n\r\nManage media bookings/ad campaigns (Social Media/Google)\r\n\r\nWeekly e-mail newsletter\r\n\r\nWebsite updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Projects Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Individual-Projects\"></a>Individual Projects<a name=\"Individual-Projects\"></a></h2>\r\n<h3>We help you with a specific item of work</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nPrices below include effective marketing copy and design.\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"234\">Brochures</td>\r\n<td width=\"95\"></td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          One sided flyer</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Double sided flyer</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Multi-page  DLE brochure</td>\r\n<td width=\"95\">$195</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Poster</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Point of sale</td>\r\n<td width=\"95\">$ P.O.A</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website Content (200 words)</td>\r\n<td width=\"95\">$89</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Blog (400-600 words)</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">E-mail Campaign</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Cover Photo &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Post artwork &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website content revamp^</td>\r\n<td width=\"95\">$725</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Products Footer Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n^A more accurate quote will be given depending on your website and amount of content\r\n\r\nPrices shown in NZD &amp; Excludes GST and travel.\r\n\r\nExcludes cost of stock images (if required). Any detailed artwork such as illustration or other will be quoted separately.\r\n\r\nIf what you are looking for is not listed above, it does not necessarily mean we do not offer the service, please contact us for a quote.\r\n\r\nPrices above include marketing copy and design and includes 2 revisions, further revisions will be quoted. Prices are available for content only options, proofing only options and design only options.\r\n\r\nPrinting can be arranged and will be quoted separately. Photography and video options can be arranged and quoted for separately\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Other-Services\"></a>Other Services<a name=\"Other-Services\"></a></h2>\r\n<h3>We offer a number of other services - please contact us for a quote</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Graphic Design</p>\r\n</td>\r\n<td style=\"text-align: center;\" width=\"154\">Printing</td>\r\n<td style=\"text-align: center;\" width=\"154\">Photography</td>\r\n<td style=\"text-align: center;\" width=\"154\">Videography</td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\">Event Management</td>\r\n<td style=\"text-align: center;\" width=\"154\">Website Development</td>\r\n<td style=\"text-align: center;\" width=\"154\">Proof Reading</td>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Advertising Bookings &amp; Management</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"259\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"259\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"259\" admin_label=\"Call To Action - Contact\" title=\"Ready to take action?\" button_url=\"http://www.infinitymarketing.co.nz/contact/\" url_new_window=\"off\" button_text=\"Click here to make contact now\" use_background_color=\"off\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\nYour new future is waiting\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "WORK WITH ME", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2016-03-20 19:59:25", "2016-03-20 06:59:25", "", "39", "http://www.infinitymarketing.co.nz/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("263", "1", "2016-03-20 20:00:09", "2016-03-20 07:00:09", "[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action - Contact\" title=\"Ready to take action?\" button_url=\"http://www.infinitymarketing.co.nz/contact/\" url_new_window=\"off\" button_text=\"Click here to contact us now\" use_background_color=\"off\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\n\n<p>Your new future is waiting</p>\n\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Call to action - Contact", "", "inherit", "closed", "closed", "", "259-revision-v1", "", "", "2016-03-20 20:00:09", "2016-03-20 07:00:09", "", "259", "http://www.infinitymarketing.co.nz/259-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("264", "1", "2016-03-20 20:00:15", "2016-03-20 07:00:15", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Me Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Work With Me</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Me Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">We offer a range of marketing services for your small business. Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.</p>\r\n<p style=\"text-align: center;\">We offer great monthly packages, which are fully customisable to suit your business needs; and one-off services.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Coaching Image\" show_in_lightbox=\"off\" url=\"#Coaching-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Coaching_sml.jpg\" alt=\"Coaching\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Hands-on Packages Image\" show_in_lightbox=\"off\" url=\"#Hands-on-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Hands-on_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Individual Services Image\" show_in_lightbox=\"off\" url=\"#Individual-Projects\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Individual-Projects_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Other Services Image\" show_in_lightbox=\"off\" url=\"#Other-Services\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Other-Services_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Coaching Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Coaching-Packages\"></a>Coaching Packages<a name=\"Coaching-Packages\"></a></h2>\r\n<h3>We coach, and you implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTRO Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTRO Package - $189</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTRO Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis is about getting the basics right. We look at your current activity, recognise what is working, recommend any improvements and establish a plan going forward. This may suit those who have already started marketing their business and need help to get more customers or get themselves on track.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Establish a top line plan to get you where you want to be</li>\r\n</ul>\r\nThis involves a 1 hour face-to-face (where possible) or skype session and you will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nThis package can be upgraded to the INITIATE package if you feel you would like to go into more detail and create an initial marketing plan.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTRO Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Intro-Candice-v3.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INITIATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INITIATE Package - $589</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INITIATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThe INITIATE package is about giving your marketing the huge push it needs, either when you first start your business or a little later down the track. This is a holistic approach, taking you from strategy, goals, and tactics through to implementation. This will provide a plan of action for the next year.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Explore your positioning and they key messages and selling points for your customers</li>\r\n	<li>Understand who your competitors are and what your point of difference is</li>\r\n	<li>Talk tactics on where to be present, identifying why and how to achieve this</li>\r\n	<li>Establish a plan for making your customers take action</li>\r\n	<li>Work together to formulate a marketing plan for the year</li>\r\n</ul>\r\nThis involves a 2 x 1.5 hour face-to-face (where possible) or skype sessions.  You will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nWe recommend you follow on to the INTEGRATE package as this package measures the effectiveness of your plan as implemented, and refines this on an ongoing basis.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INITIATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Initiate-Candice-v2.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTEGRATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTEGRATE Monthly Package - $289 per month</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTEGRATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n(3 month minimum)\r\n\r\nThis is a one on one session twice per month where together, we ensure your marketing is on track. We can utilise measurement techniques to assess the effectiveness of your strategies and keeping you on track to achieve the desired goals.\r\n\r\nWe meet via skype* twice per month to discuss your progress, any ideas or opportunities, and bounce ideas around. (*This can also be done in one longer face to face session if possible)\r\n\r\nThese sessions will help to keep on track with your marketing plan, and guide you throughout the year to meet and exceed your marketing and business goals. By measuring the effectiveness of current strategies, refinements can be effected to ensure your marketing continues to maximise results.\r\n\r\nSupport is available by e-mail, Facebook or reasonable phone support throughout the month if required.\r\n\r\nWe recommend you begin with the INTRO Package before commencing this INTEGRATE Package .\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTEGRATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Integrate-Candice-v2.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hands-on Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Hands-on-Packages\"></a>Hands-on Packages<a name=\"Hands-on-Packages\"></a></h2>\r\n<h3>We implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Custom\" currency=\"$\" per=\"month\" sum=\"?\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]We can design a custom package that suits the unique needs of your business.[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Incredible Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Incredible\" currency=\"$\" per=\"month\" sum=\"300\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]1 x Facebook / Instagram post content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\nMonthly e-mail newsletter\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Intermediate Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Intermediate\" currency=\"$\" per=\"month\" sum=\"600\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]2 x Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised  content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nFortnightly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Advanced Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Advanced\" currency=\"$\" per=\"month\" sum=\"900\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nWeekly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Expert Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Expert\" currency=\"$\" per=\"month\" sum=\"1500\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Twice weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n2 x Facebook cover content &amp; artwork\r\n\r\n2 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n2 x blog posts with search engine optimised\r\n\r\nPoint of sale content &amp; artwork\r\n\r\nManage media bookings/ad campaigns (Social Media/Google)\r\n\r\nWeekly e-mail newsletter\r\n\r\nWebsite updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Projects Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Individual-Projects\"></a>Individual Projects<a name=\"Individual-Projects\"></a></h2>\r\n<h3>We help you with a specific item of work</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nPrices below include effective marketing copy and design.\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"234\">Brochures</td>\r\n<td width=\"95\"></td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          One sided flyer</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Double sided flyer</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Multi-page  DLE brochure</td>\r\n<td width=\"95\">$195</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Poster</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Point of sale</td>\r\n<td width=\"95\">$ P.O.A</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website Content (200 words)</td>\r\n<td width=\"95\">$89</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Blog (400-600 words)</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">E-mail Campaign</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Cover Photo &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Post artwork &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website content revamp^</td>\r\n<td width=\"95\">$725</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Products Footer Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n^A more accurate quote will be given depending on your website and amount of content\r\n\r\nPrices shown in NZD &amp; Excludes GST and travel.\r\n\r\nExcludes cost of stock images (if required). Any detailed artwork such as illustration or other will be quoted separately.\r\n\r\nIf what you are looking for is not listed above, it does not necessarily mean we do not offer the service, please contact us for a quote.\r\n\r\nPrices above include marketing copy and design and includes 2 revisions, further revisions will be quoted. Prices are available for content only options, proofing only options and design only options.\r\n\r\nPrinting can be arranged and will be quoted separately. Photography and video options can be arranged and quoted for separately\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Other-Services\"></a>Other Services<a name=\"Other-Services\"></a></h2>\r\n<h3>We offer a number of other services - please contact us for a quote</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Graphic Design</p>\r\n</td>\r\n<td style=\"text-align: center;\" width=\"154\">Printing</td>\r\n<td style=\"text-align: center;\" width=\"154\">Photography</td>\r\n<td style=\"text-align: center;\" width=\"154\">Videography</td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\">Event Management</td>\r\n<td style=\"text-align: center;\" width=\"154\">Website Development</td>\r\n<td style=\"text-align: center;\" width=\"154\">Proof Reading</td>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Advertising Bookings &amp; Management</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"259\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"259\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"259\" admin_label=\"Call To Action - Contact\" title=\"Ready to take action?\" button_url=\"http://www.infinitymarketing.co.nz/contact/\" url_new_window=\"off\" button_text=\"Click here to contact us now\" use_background_color=\"off\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\nYour new future is waiting\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "WORK WITH ME", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2016-03-20 20:00:15", "2016-03-20 07:00:15", "", "39", "http://www.infinitymarketing.co.nz/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("266", "1", "2016-03-20 20:06:39", "2016-03-20 07:06:39", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Me Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Work With Me</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Me Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">We offer a range of marketing services for your small business. Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.</p>\r\n<p style=\"text-align: center;\">We offer great monthly packages, which are fully customisable to suit your business needs; and one-off services.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Coaching Image\" show_in_lightbox=\"off\" url=\"#Coaching-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Coaching_sml.jpg\" alt=\"Coaching\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Hands-on Packages Image\" show_in_lightbox=\"off\" url=\"#Hands-on-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Hands-on_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Individual Services Image\" show_in_lightbox=\"off\" url=\"#Individual-Projects\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Individual-Projects_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Other Services Image\" show_in_lightbox=\"off\" url=\"#Other-Services\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Other-Services_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Coaching Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Coaching-Packages\"></a>Coaching Packages<a name=\"Coaching-Packages\"></a></h2>\r\n<h3>We coach, and you implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTRO Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTRO Package - $189</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTRO Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis is about getting the basics right. We look at your current activity, recognise what is working, recommend any improvements and establish a plan going forward. This may suit those who have already started marketing their business and need help to get more customers or get themselves on track.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Establish a top line plan to get you where you want to be</li>\r\n</ul>\r\nThis involves a 1 hour face-to-face (where possible) or skype session and you will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nThis package can be upgraded to the INITIATE package if you feel you would like to go into more detail and create an initial marketing plan.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTRO Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Intro-Candice-v3.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INITIATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INITIATE Package - $589</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INITIATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThe INITIATE package is about giving your marketing the huge push it needs, either when you first start your business or a little later down the track. This is a holistic approach, taking you from strategy, goals, and tactics through to implementation. This will provide a plan of action for the next year.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Explore your positioning and they key messages and selling points for your customers</li>\r\n	<li>Understand who your competitors are and what your point of difference is</li>\r\n	<li>Talk tactics on where to be present, identifying why and how to achieve this</li>\r\n	<li>Establish a plan for making your customers take action</li>\r\n	<li>Work together to formulate a marketing plan for the year</li>\r\n</ul>\r\nThis involves a 2 x 1.5 hour face-to-face (where possible) or skype sessions.  You will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nWe recommend you follow on to the INTEGRATE package as this package measures the effectiveness of your plan as implemented, and refines this on an ongoing basis.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INITIATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Initiate-Candice-v2.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTEGRATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTEGRATE Monthly Package - $289 per month</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTEGRATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n(3 month minimum)\r\n\r\nThis is a one on one session twice per month where together, we ensure your marketing is on track. We can utilise measurement techniques to assess the effectiveness of your strategies and keeping you on track to achieve the desired goals.\r\n\r\nWe meet via skype* twice per month to discuss your progress, any ideas or opportunities, and bounce ideas around. (*This can also be done in one longer face to face session if possible)\r\n\r\nThese sessions will help to keep on track with your marketing plan, and guide you throughout the year to meet and exceed your marketing and business goals. By measuring the effectiveness of current strategies, refinements can be effected to ensure your marketing continues to maximise results.\r\n\r\nSupport is available by e-mail, Facebook or reasonable phone support throughout the month if required.\r\n\r\nWe recommend you begin with the INTRO Package before commencing this INTEGRATE Package .\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTEGRATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Integrate-Candice-v2.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hands-on Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Hands-on-Packages\"></a>Hands-on Packages<a name=\"Hands-on-Packages\"></a></h2>\r\n<h3>We implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Custom\" currency=\"$\" per=\"month\" sum=\"?\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]We can design a custom package that suits the unique needs of your business.[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Incredible Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Incredible\" currency=\"$\" per=\"month\" sum=\"300\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]1 x Facebook / Instagram post content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\nMonthly e-mail newsletter\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Intermediate Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Intermediate\" currency=\"$\" per=\"month\" sum=\"600\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]2 x Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised  content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nFortnightly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Advanced Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Advanced\" currency=\"$\" per=\"month\" sum=\"900\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nWeekly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Expert Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Expert\" currency=\"$\" per=\"month\" sum=\"1500\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Twice weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n2 x Facebook cover content &amp; artwork\r\n\r\n2 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n2 x blog posts with search engine optimised\r\n\r\nPoint of sale content &amp; artwork\r\n\r\nManage media bookings/ad campaigns (Social Media/Google)\r\n\r\nWeekly e-mail newsletter\r\n\r\nWebsite updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Projects Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Individual-Projects\"></a>Individual Projects<a name=\"Individual-Projects\"></a></h2>\r\n<h3>We help you with a specific item of work</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nPrices below include effective marketing copy and design.\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"234\">Brochures</td>\r\n<td width=\"95\"></td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          One sided flyer</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Double sided flyer</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Multi-page  DLE brochure</td>\r\n<td width=\"95\">$195</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Poster</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Point of sale</td>\r\n<td width=\"95\">$ P.O.A</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website Content (200 words)</td>\r\n<td width=\"95\">$89</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Blog (400-600 words)</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">E-mail Campaign</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Cover Photo &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Post artwork &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website content revamp^</td>\r\n<td width=\"95\">$725</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Products Footer Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n^A more accurate quote will be given depending on your website and amount of content\r\n\r\nPrices shown in NZD &amp; Excludes GST and travel.\r\n\r\nExcludes cost of stock images (if required). Any detailed artwork such as illustration or other will be quoted separately.\r\n\r\nIf what you are looking for is not listed above, it does not necessarily mean we do not offer the service, please contact us for a quote.\r\n\r\nPrices above include marketing copy and design and includes 2 revisions, further revisions will be quoted. Prices are available for content only options, proofing only options and design only options.\r\n\r\nPrinting can be arranged and will be quoted separately. Photography and video options can be arranged and quoted for separately\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Other-Services\"></a>Other Services<a name=\"Other-Services\"></a></h2>\r\n<h3>We offer a number of other services - please contact us for a quote</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-244\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Graphic-Design.jpg\" alt=\"Graphic Design\" width=\"93\" height=\"76\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-246\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Printing.jpg\" alt=\"Printing\" width=\"77\" height=\"78\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-245\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Photography.jpg\" alt=\"Photography\" width=\"73\" height=\"60\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-247\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Video.jpg\" alt=\"Video\" width=\"68\" height=\"68\" /></strong></td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Graphic Design</p>\r\n</td>\r\n<td style=\"text-align: center;\" width=\"154\">Printing</td>\r\n<td style=\"text-align: center;\" width=\"154\">Photography</td>\r\n<td style=\"text-align: center;\" width=\"154\">Videography</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-243\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Event-Management.jpg\" alt=\"Event Management\" width=\"68\" height=\"74\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-248\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Web-Development.jpg\" alt=\"Web Development\" width=\"73\" height=\"75\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-242\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Copywriting.jpg\" alt=\"Proof Reading\" width=\"63\" height=\"77\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-241\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Advertising-Booking.jpg\" alt=\"Advertising Booking\" width=\"66\" height=\"67\" /></strong></td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\">Event Management</td>\r\n<td style=\"text-align: center;\" width=\"154\">Website Development</td>\r\n<td style=\"text-align: center;\" width=\"154\">Proof Reading</td>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Advertising Bookings\r\n&amp; Management</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "WORK WITH ME", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2016-03-20 20:06:39", "2016-03-20 07:06:39", "", "39", "http://www.infinitymarketing.co.nz/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("265", "1", "2016-03-20 20:02:45", "2016-03-20 07:02:45", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Me Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Work With Me</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Me Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">We offer a range of marketing services for your small business. Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.</p>\r\n<p style=\"text-align: center;\">We offer great monthly packages, which are fully customisable to suit your business needs; and one-off services.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Coaching Image\" show_in_lightbox=\"off\" url=\"#Coaching-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Coaching_sml.jpg\" alt=\"Coaching\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Hands-on Packages Image\" show_in_lightbox=\"off\" url=\"#Hands-on-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Hands-on_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Individual Services Image\" show_in_lightbox=\"off\" url=\"#Individual-Projects\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Individual-Projects_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Other Services Image\" show_in_lightbox=\"off\" url=\"#Other-Services\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Other-Services_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Coaching Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Coaching-Packages\"></a>Coaching Packages<a name=\"Coaching-Packages\"></a></h2>\r\n<h3>We coach, and you implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTRO Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTRO Package - $189</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTRO Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis is about getting the basics right. We look at your current activity, recognise what is working, recommend any improvements and establish a plan going forward. This may suit those who have already started marketing their business and need help to get more customers or get themselves on track.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Establish a top line plan to get you where you want to be</li>\r\n</ul>\r\nThis involves a 1 hour face-to-face (where possible) or skype session and you will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nThis package can be upgraded to the INITIATE package if you feel you would like to go into more detail and create an initial marketing plan.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTRO Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Intro-Candice-v3.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INITIATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INITIATE Package - $589</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INITIATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThe INITIATE package is about giving your marketing the huge push it needs, either when you first start your business or a little later down the track. This is a holistic approach, taking you from strategy, goals, and tactics through to implementation. This will provide a plan of action for the next year.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Explore your positioning and they key messages and selling points for your customers</li>\r\n	<li>Understand who your competitors are and what your point of difference is</li>\r\n	<li>Talk tactics on where to be present, identifying why and how to achieve this</li>\r\n	<li>Establish a plan for making your customers take action</li>\r\n	<li>Work together to formulate a marketing plan for the year</li>\r\n</ul>\r\nThis involves a 2 x 1.5 hour face-to-face (where possible) or skype sessions.  You will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nWe recommend you follow on to the INTEGRATE package as this package measures the effectiveness of your plan as implemented, and refines this on an ongoing basis.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INITIATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Initiate-Candice-v2.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTEGRATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTEGRATE Monthly Package - $289 per month</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTEGRATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n(3 month minimum)\r\n\r\nThis is a one on one session twice per month where together, we ensure your marketing is on track. We can utilise measurement techniques to assess the effectiveness of your strategies and keeping you on track to achieve the desired goals.\r\n\r\nWe meet via skype* twice per month to discuss your progress, any ideas or opportunities, and bounce ideas around. (*This can also be done in one longer face to face session if possible)\r\n\r\nThese sessions will help to keep on track with your marketing plan, and guide you throughout the year to meet and exceed your marketing and business goals. By measuring the effectiveness of current strategies, refinements can be effected to ensure your marketing continues to maximise results.\r\n\r\nSupport is available by e-mail, Facebook or reasonable phone support throughout the month if required.\r\n\r\nWe recommend you begin with the INTRO Package before commencing this INTEGRATE Package .\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTEGRATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Integrate-Candice-v2.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hands-on Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Hands-on-Packages\"></a>Hands-on Packages<a name=\"Hands-on-Packages\"></a></h2>\r\n<h3>We implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Custom\" currency=\"$\" per=\"month\" sum=\"?\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]We can design a custom package that suits the unique needs of your business.[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Incredible Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Incredible\" currency=\"$\" per=\"month\" sum=\"300\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]1 x Facebook / Instagram post content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\nMonthly e-mail newsletter\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Intermediate Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Intermediate\" currency=\"$\" per=\"month\" sum=\"600\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]2 x Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised  content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nFortnightly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Advanced Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Advanced\" currency=\"$\" per=\"month\" sum=\"900\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nWeekly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Expert Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Expert\" currency=\"$\" per=\"month\" sum=\"1500\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Twice weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n2 x Facebook cover content &amp; artwork\r\n\r\n2 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n2 x blog posts with search engine optimised\r\n\r\nPoint of sale content &amp; artwork\r\n\r\nManage media bookings/ad campaigns (Social Media/Google)\r\n\r\nWeekly e-mail newsletter\r\n\r\nWebsite updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Projects Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Individual-Projects\"></a>Individual Projects<a name=\"Individual-Projects\"></a></h2>\r\n<h3>We help you with a specific item of work</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nPrices below include effective marketing copy and design.\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"234\">Brochures</td>\r\n<td width=\"95\"></td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          One sided flyer</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Double sided flyer</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Multi-page  DLE brochure</td>\r\n<td width=\"95\">$195</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Poster</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Point of sale</td>\r\n<td width=\"95\">$ P.O.A</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website Content (200 words)</td>\r\n<td width=\"95\">$89</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Blog (400-600 words)</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">E-mail Campaign</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Cover Photo &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Post artwork &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website content revamp^</td>\r\n<td width=\"95\">$725</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Products Footer Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n^A more accurate quote will be given depending on your website and amount of content\r\n\r\nPrices shown in NZD &amp; Excludes GST and travel.\r\n\r\nExcludes cost of stock images (if required). Any detailed artwork such as illustration or other will be quoted separately.\r\n\r\nIf what you are looking for is not listed above, it does not necessarily mean we do not offer the service, please contact us for a quote.\r\n\r\nPrices above include marketing copy and design and includes 2 revisions, further revisions will be quoted. Prices are available for content only options, proofing only options and design only options.\r\n\r\nPrinting can be arranged and will be quoted separately. Photography and video options can be arranged and quoted for separately\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Other-Services\"></a>Other Services<a name=\"Other-Services\"></a></h2>\r\n<h3>We offer a number of other services - please <a href=\"http://www.infinitymarketing.co.nz/contact/\">contact us</a> for a quote</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Graphic Design</p>\r\n</td>\r\n<td style=\"text-align: center;\" width=\"154\">Printing</td>\r\n<td style=\"text-align: center;\" width=\"154\">Photography</td>\r\n<td style=\"text-align: center;\" width=\"154\">Videography</td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n<td width=\"154\"><strong> </strong></td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\">Event Management</td>\r\n<td style=\"text-align: center;\" width=\"154\">Website Development</td>\r\n<td style=\"text-align: center;\" width=\"154\">Proof Reading</td>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Advertising Bookings &amp; Management</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"259\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"259\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"259\" admin_label=\"Call To Action - Contact\" title=\"Ready to take action?\" button_url=\"http://www.infinitymarketing.co.nz/contact/\" url_new_window=\"off\" button_text=\"Click here to contact us now\" use_background_color=\"off\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\nYour new future is waiting\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "WORK WITH ME", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2016-03-20 20:02:45", "2016-03-20 07:02:45", "", "39", "http://www.infinitymarketing.co.nz/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("267", "1", "2016-03-20 20:07:35", "2016-03-20 07:07:35", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Me Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Work With Me</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Me Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">We offer a range of marketing services for your small business. Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.</p>\r\n<p style=\"text-align: center;\">We offer great monthly packages, which are fully customisable to suit your business needs; and one-off services.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Coaching Image\" show_in_lightbox=\"off\" url=\"#Coaching-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Coaching_sml.jpg\" alt=\"Coaching\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Hands-on Packages Image\" show_in_lightbox=\"off\" url=\"#Hands-on-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Hands-on_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Individual Services Image\" show_in_lightbox=\"off\" url=\"#Individual-Projects\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Individual-Projects_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Other Services Image\" show_in_lightbox=\"off\" url=\"#Other-Services\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Other-Services_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Coaching Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Coaching-Packages\"></a>Coaching Packages<a name=\"Coaching-Packages\"></a></h2>\r\n<h3>We coach, and you implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTRO Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTRO Package - $189</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTRO Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis is about getting the basics right. We look at your current activity, recognise what is working, recommend any improvements and establish a plan going forward. This may suit those who have already started marketing their business and need help to get more customers or get themselves on track.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Establish a top line plan to get you where you want to be</li>\r\n</ul>\r\nThis involves a 1 hour face-to-face (where possible) or skype session and you will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nThis package can be upgraded to the INITIATE package if you feel you would like to go into more detail and create an initial marketing plan.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTRO Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Intro-Candice-v3.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INITIATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INITIATE Package - $589</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INITIATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThe INITIATE package is about giving your marketing the huge push it needs, either when you first start your business or a little later down the track. This is a holistic approach, taking you from strategy, goals, and tactics through to implementation. This will provide a plan of action for the next year.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Explore your positioning and they key messages and selling points for your customers</li>\r\n	<li>Understand who your competitors are and what your point of difference is</li>\r\n	<li>Talk tactics on where to be present, identifying why and how to achieve this</li>\r\n	<li>Establish a plan for making your customers take action</li>\r\n	<li>Work together to formulate a marketing plan for the year</li>\r\n</ul>\r\nThis involves a 2 x 1.5 hour face-to-face (where possible) or skype sessions.  You will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nWe recommend you follow on to the INTEGRATE package as this package measures the effectiveness of your plan as implemented, and refines this on an ongoing basis.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INITIATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Initiate-Candice-v2.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTEGRATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTEGRATE Monthly Package - $289 per month</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTEGRATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n(3 month minimum)\r\n\r\nThis is a one on one session twice per month where together, we ensure your marketing is on track. We can utilise measurement techniques to assess the effectiveness of your strategies and keeping you on track to achieve the desired goals.\r\n\r\nWe meet via skype* twice per month to discuss your progress, any ideas or opportunities, and bounce ideas around. (*This can also be done in one longer face to face session if possible)\r\n\r\nThese sessions will help to keep on track with your marketing plan, and guide you throughout the year to meet and exceed your marketing and business goals. By measuring the effectiveness of current strategies, refinements can be effected to ensure your marketing continues to maximise results.\r\n\r\nSupport is available by e-mail, Facebook or reasonable phone support throughout the month if required.\r\n\r\nWe recommend you begin with the INTRO Package before commencing this INTEGRATE Package .\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTEGRATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Integrate-Candice-v2.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hands-on Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Hands-on-Packages\"></a>Hands-on Packages<a name=\"Hands-on-Packages\"></a></h2>\r\n<h3>We implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Custom\" currency=\"$\" per=\"month\" sum=\"?\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]We can design a custom package that suits the unique needs of your business.[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Incredible Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Incredible\" currency=\"$\" per=\"month\" sum=\"300\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]1 x Facebook / Instagram post content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\nMonthly e-mail newsletter\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Intermediate Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Intermediate\" currency=\"$\" per=\"month\" sum=\"600\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]2 x Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised  content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nFortnightly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Advanced Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Advanced\" currency=\"$\" per=\"month\" sum=\"900\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nWeekly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Expert Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Expert\" currency=\"$\" per=\"month\" sum=\"1500\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Twice weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n2 x Facebook cover content &amp; artwork\r\n\r\n2 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n2 x blog posts with search engine optimised\r\n\r\nPoint of sale content &amp; artwork\r\n\r\nManage media bookings/ad campaigns (Social Media/Google)\r\n\r\nWeekly e-mail newsletter\r\n\r\nWebsite updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Projects Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Individual-Projects\"></a>Individual Projects<a name=\"Individual-Projects\"></a></h2>\r\n<h3>We help you with a specific item of work</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nPrices below include effective marketing copy and design.\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"234\">Brochures</td>\r\n<td width=\"95\"></td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          One sided flyer</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Double sided flyer</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Multi-page  DLE brochure</td>\r\n<td width=\"95\">$195</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Poster</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Point of sale</td>\r\n<td width=\"95\">$ P.O.A</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website Content (200 words)</td>\r\n<td width=\"95\">$89</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Blog (400-600 words)</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">E-mail Campaign</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Cover Photo &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Post artwork &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website content revamp^</td>\r\n<td width=\"95\">$725</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Products Footer Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n^A more accurate quote will be given depending on your website and amount of content\r\n\r\nPrices shown in NZD &amp; Excludes GST and travel.\r\n\r\nExcludes cost of stock images (if required). Any detailed artwork such as illustration or other will be quoted separately.\r\n\r\nIf what you are looking for is not listed above, it does not necessarily mean we do not offer the service, please contact us for a quote.\r\n\r\nPrices above include marketing copy and design and includes 2 revisions, further revisions will be quoted. Prices are available for content only options, proofing only options and design only options.\r\n\r\nPrinting can be arranged and will be quoted separately. Photography and video options can be arranged and quoted for separately\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Other-Services\"></a>Other Services<a name=\"Other-Services\"></a></h2>\r\n<h3>We offer a number of other services - please contact us for a quote</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-244\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Graphic-Design.jpg\" alt=\"Graphic Design\" width=\"93\" height=\"76\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-246\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Printing.jpg\" alt=\"Printing\" width=\"77\" height=\"78\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-245\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Photography.jpg\" alt=\"Photography\" width=\"73\" height=\"60\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-247\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Video.jpg\" alt=\"Video\" width=\"68\" height=\"68\" /></strong></td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Graphic Design</p>\r\n</td>\r\n<td style=\"text-align: center;\" width=\"154\">Printing</td>\r\n<td style=\"text-align: center;\" width=\"154\">Photography</td>\r\n<td style=\"text-align: center;\" width=\"154\">Videography</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-243\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Event-Management.jpg\" alt=\"Event Management\" width=\"68\" height=\"74\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-248\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Web-Development.jpg\" alt=\"Web Development\" width=\"73\" height=\"75\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-242\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Copywriting.jpg\" alt=\"Proof Reading\" width=\"63\" height=\"77\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-241\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Advertising-Booking.jpg\" alt=\"Advertising Booking\" width=\"66\" height=\"67\" /></strong></td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\">Event Management</td>\r\n<td style=\"text-align: center;\" width=\"154\">Website Development</td>\r\n<td style=\"text-align: center;\" width=\"154\">Proof Reading</td>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Advertising Bookings\r\n&amp; Management</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section]", "WORK WITH ME", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2016-03-20 20:07:35", "2016-03-20 07:07:35", "", "39", "http://www.infinitymarketing.co.nz/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("268", "1", "2016-03-20 20:08:16", "2016-03-20 07:08:16", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Me Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Work With Me</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Me Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">We offer a range of marketing services for your small business. Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.</p>\r\n<p style=\"text-align: center;\">We offer great monthly packages, which are fully customisable to suit your business needs; and one-off services.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Coaching Image\" show_in_lightbox=\"off\" url=\"#Coaching-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Coaching_sml.jpg\" alt=\"Coaching\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Hands-on Packages Image\" show_in_lightbox=\"off\" url=\"#Hands-on-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Hands-on_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Individual Services Image\" show_in_lightbox=\"off\" url=\"#Individual-Projects\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Individual-Projects_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Other Services Image\" show_in_lightbox=\"off\" url=\"#Other-Services\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Other-Services_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Coaching Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Coaching-Packages\"></a>Coaching Packages<a name=\"Coaching-Packages\"></a></h2>\r\n<h3>We coach, and you implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTRO Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTRO Package - $189</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTRO Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis is about getting the basics right. We look at your current activity, recognise what is working, recommend any improvements and establish a plan going forward. This may suit those who have already started marketing their business and need help to get more customers or get themselves on track.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Establish a top line plan to get you where you want to be</li>\r\n</ul>\r\nThis involves a 1 hour face-to-face (where possible) or skype session and you will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nThis package can be upgraded to the INITIATE package if you feel you would like to go into more detail and create an initial marketing plan.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTRO Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Intro-Candice-v3.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INITIATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INITIATE Package - $589</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INITIATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThe INITIATE package is about giving your marketing the huge push it needs, either when you first start your business or a little later down the track. This is a holistic approach, taking you from strategy, goals, and tactics through to implementation. This will provide a plan of action for the next year.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Explore your positioning and they key messages and selling points for your customers</li>\r\n	<li>Understand who your competitors are and what your point of difference is</li>\r\n	<li>Talk tactics on where to be present, identifying why and how to achieve this</li>\r\n	<li>Establish a plan for making your customers take action</li>\r\n	<li>Work together to formulate a marketing plan for the year</li>\r\n</ul>\r\nThis involves a 2 x 1.5 hour face-to-face (where possible) or skype sessions.  You will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nWe recommend you follow on to the INTEGRATE package as this package measures the effectiveness of your plan as implemented, and refines this on an ongoing basis.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INITIATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Initiate-Candice-v2.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTEGRATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTEGRATE Monthly Package - $289 per month</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTEGRATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n(3 month minimum)\r\n\r\nThis is a one on one session twice per month where together, we ensure your marketing is on track. We can utilise measurement techniques to assess the effectiveness of your strategies and keeping you on track to achieve the desired goals.\r\n\r\nWe meet via skype* twice per month to discuss your progress, any ideas or opportunities, and bounce ideas around. (*This can also be done in one longer face to face session if possible)\r\n\r\nThese sessions will help to keep on track with your marketing plan, and guide you throughout the year to meet and exceed your marketing and business goals. By measuring the effectiveness of current strategies, refinements can be effected to ensure your marketing continues to maximise results.\r\n\r\nSupport is available by e-mail, Facebook or reasonable phone support throughout the month if required.\r\n\r\nWe recommend you begin with the INTRO Package before commencing this INTEGRATE Package .\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTEGRATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Integrate-Candice-v2.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hands-on Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Hands-on-Packages\"></a>Hands-on Packages<a name=\"Hands-on-Packages\"></a></h2>\r\n<h3>We implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Custom\" currency=\"$\" per=\"month\" sum=\"?\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]We can design a custom package that suits the unique needs of your business.[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Incredible Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Incredible\" currency=\"$\" per=\"month\" sum=\"300\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]1 x Facebook / Instagram post content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\nMonthly e-mail newsletter\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Intermediate Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Intermediate\" currency=\"$\" per=\"month\" sum=\"600\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]2 x Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised  content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nFortnightly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Advanced Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Advanced\" currency=\"$\" per=\"month\" sum=\"900\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nWeekly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Expert Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Expert\" currency=\"$\" per=\"month\" sum=\"1500\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Twice weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n2 x Facebook cover content &amp; artwork\r\n\r\n2 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n2 x blog posts with search engine optimised\r\n\r\nPoint of sale content &amp; artwork\r\n\r\nManage media bookings/ad campaigns (Social Media/Google)\r\n\r\nWeekly e-mail newsletter\r\n\r\nWebsite updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Projects Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Individual-Projects\"></a>Individual Projects<a name=\"Individual-Projects\"></a></h2>\r\n<h3>We help you with a specific item of work</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nPrices below include effective marketing copy and design.\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"234\">Brochures</td>\r\n<td width=\"95\"></td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          One sided flyer</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Double sided flyer</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Multi-page  DLE brochure</td>\r\n<td width=\"95\">$195</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Poster</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Point of sale</td>\r\n<td width=\"95\">$ P.O.A</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website Content (200 words)</td>\r\n<td width=\"95\">$89</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Blog (400-600 words)</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">E-mail Campaign</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Cover Photo &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Post artwork &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website content revamp^</td>\r\n<td width=\"95\">$725</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Products Footer Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n^A more accurate quote will be given depending on your website and amount of content\r\n\r\nPrices shown in NZD &amp; Excludes GST and travel.\r\n\r\nExcludes cost of stock images (if required). Any detailed artwork such as illustration or other will be quoted separately.\r\n\r\nIf what you are looking for is not listed above, it does not necessarily mean we do not offer the service, please contact us for a quote.\r\n\r\nPrices above include marketing copy and design and includes 2 revisions, further revisions will be quoted. Prices are available for content only options, proofing only options and design only options.\r\n\r\nPrinting can be arranged and will be quoted separately. Photography and video options can be arranged and quoted for separately\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Other-Services\"></a>Other Services<a name=\"Other-Services\"></a></h2>\r\n<h3>We offer a number of other services - please contact us for a quote</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-244\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Graphic-Design.jpg\" alt=\"Graphic Design\" width=\"93\" height=\"76\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-246\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Printing.jpg\" alt=\"Printing\" width=\"77\" height=\"78\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-245\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Photography.jpg\" alt=\"Photography\" width=\"73\" height=\"60\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-247\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Video.jpg\" alt=\"Video\" width=\"68\" height=\"68\" /></strong></td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Graphic Design</p>\r\n</td>\r\n<td style=\"text-align: center;\" width=\"154\">Printing</td>\r\n<td style=\"text-align: center;\" width=\"154\">Photography</td>\r\n<td style=\"text-align: center;\" width=\"154\">Videography</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-243\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Event-Management.jpg\" alt=\"Event Management\" width=\"68\" height=\"74\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-248\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Web-Development.jpg\" alt=\"Web Development\" width=\"73\" height=\"75\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-242\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Copywriting.jpg\" alt=\"Proof Reading\" width=\"63\" height=\"77\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-241\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Advertising-Booking.jpg\" alt=\"Advertising Booking\" width=\"66\" height=\"67\" /></strong></td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\">Event Management</td>\r\n<td style=\"text-align: center;\" width=\"154\">Website Development</td>\r\n<td style=\"text-align: center;\" width=\"154\">Proof Reading</td>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Advertising Bookings\r\n&amp; Management</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"259\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"259\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"259\" admin_label=\"Call To Action - Contact\" title=\"Ready to take action?\" button_url=\"http://www.infinitymarketing.co.nz/contact/\" url_new_window=\"off\" button_text=\"Click here to contact us now\" use_background_color=\"off\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\nYour new future is waiting\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "WORK WITH ME", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2016-03-20 20:08:16", "2016-03-20 07:08:16", "", "39", "http://www.infinitymarketing.co.nz/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("269", "1", "2016-03-20 20:11:30", "2016-03-20 07:11:30", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Me Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Work With Me</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Me Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">We offer a range of marketing services for your small business. Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.</p>\r\n<p style=\"text-align: center;\">We offer great monthly packages, which are fully customisable to suit your business needs; and one-off services.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Coaching Image\" show_in_lightbox=\"off\" url=\"#Coaching-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Coaching_sml.jpg\" alt=\"Coaching\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Hands-on Packages Image\" show_in_lightbox=\"off\" url=\"#Hands-on-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Hands-on_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Individual Services Image\" show_in_lightbox=\"off\" url=\"#Individual-Projects\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Individual-Projects_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Other Services Image\" show_in_lightbox=\"off\" url=\"#Other-Services\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Other-Services_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Coaching Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Coaching-Packages\"></a>Coaching Packages<a name=\"Coaching-Packages\"></a></h2>\r\n<h3>We coach, and you implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTRO Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTRO Package - $189</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTRO Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis is about getting the basics right. We look at your current activity, recognise what is working, recommend any improvements and establish a plan going forward. This may suit those who have already started marketing their business and need help to get more customers or get themselves on track.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Establish a top line plan to get you where you want to be</li>\r\n</ul>\r\nThis involves a 1 hour face-to-face (where possible) or skype session and you will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nThis package can be upgraded to the INITIATE package if you feel you would like to go into more detail and create an initial marketing plan.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTRO Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Intro-Candice-v3.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INITIATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INITIATE Package - $589</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INITIATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThe INITIATE package is about giving your marketing the huge push it needs, either when you first start your business or a little later down the track. This is a holistic approach, taking you from strategy, goals, and tactics through to implementation. This will provide a plan of action for the next year.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Explore your positioning and they key messages and selling points for your customers</li>\r\n	<li>Understand who your competitors are and what your point of difference is</li>\r\n	<li>Talk tactics on where to be present, identifying why and how to achieve this</li>\r\n	<li>Establish a plan for making your customers take action</li>\r\n	<li>Work together to formulate a marketing plan for the year</li>\r\n</ul>\r\nThis involves a 2 x 1.5 hour face-to-face (where possible) or skype sessions.  You will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nWe recommend you follow on to the INTEGRATE package as this package measures the effectiveness of your plan as implemented, and refines this on an ongoing basis.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INITIATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Initiate-Candice-v2.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTEGRATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTEGRATE Monthly Package - $289 per month</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTEGRATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n(3 month minimum)\r\n\r\nThis is a one on one session twice per month where together, we ensure your marketing is on track. We can utilise measurement techniques to assess the effectiveness of your strategies and keeping you on track to achieve the desired goals.\r\n\r\nWe meet via skype* twice per month to discuss your progress, any ideas or opportunities, and bounce ideas around. (*This can also be done in one longer face to face session if possible)\r\n\r\nThese sessions will help to keep on track with your marketing plan, and guide you throughout the year to meet and exceed your marketing and business goals. By measuring the effectiveness of current strategies, refinements can be effected to ensure your marketing continues to maximise results.\r\n\r\nSupport is available by e-mail, Facebook or reasonable phone support throughout the month if required.\r\n\r\nWe recommend you begin with the INTRO Package before commencing this INTEGRATE Package .\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTEGRATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Integrate-Candice-v2.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hands-on Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Hands-on-Packages\"></a>Hands-on Packages<a name=\"Hands-on-Packages\"></a></h2>\r\n<h3>We implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Custom\" currency=\"$\" per=\"month\" sum=\"?\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]We can design a custom package that suits the unique needs of your business.[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Incredible Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Incredible\" currency=\"$\" per=\"month\" sum=\"300\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]1 x Facebook / Instagram post content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\nMonthly e-mail newsletter\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Intermediate Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Intermediate\" currency=\"$\" per=\"month\" sum=\"600\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]2 x Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised  content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nFortnightly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Advanced Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Advanced\" currency=\"$\" per=\"month\" sum=\"900\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nWeekly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Expert Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Expert\" currency=\"$\" per=\"month\" sum=\"1500\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Twice weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n2 x Facebook cover content &amp; artwork\r\n\r\n2 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n2 x blog posts with search engine optimised\r\n\r\nPoint of sale content &amp; artwork\r\n\r\nManage media bookings/ad campaigns (Social Media/Google)\r\n\r\nWeekly e-mail newsletter\r\n\r\nWebsite updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Projects Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Individual-Projects\"></a>Individual Projects<a name=\"Individual-Projects\"></a></h2>\r\n<h3>We help you with a specific item of work</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Individual Projects Table\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nPrices below include effective marketing copy and design.\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"234\">Brochures</td>\r\n<td width=\"95\"></td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          One sided flyer</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Double sided flyer</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Multi-page  DLE brochure</td>\r\n<td width=\"95\">$195</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Poster</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Point of sale</td>\r\n<td width=\"95\">$ P.O.A</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website Content (200 words)</td>\r\n<td width=\"95\">$89</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Blog (400-600 words)</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">E-mail Campaign</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Cover Photo &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Post artwork &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website content revamp^</td>\r\n<td width=\"95\">$725</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Products Footer Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n^A more accurate quote will be given depending on your website and amount of content\r\n\r\nPrices shown in NZD &amp; Excludes GST and travel.\r\n\r\nExcludes cost of stock images (if required). Any detailed artwork such as illustration or other will be quoted separately.\r\n\r\nIf what you are looking for is not listed above, it does not necessarily mean we do not offer the service, please contact us for a quote.\r\n\r\nPrices above include marketing copy and design and includes 2 revisions, further revisions will be quoted. Prices are available for content only options, proofing only options and design only options.\r\n\r\nPrinting can be arranged and will be quoted separately. Photography and video options can be arranged and quoted for separately\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Other-Services\"></a>Other Services<a name=\"Other-Services\"></a></h2>\r\n<h3>We offer a number of other services - please contact us for a quote</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-244\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Graphic-Design.jpg\" alt=\"Graphic Design\" width=\"93\" height=\"76\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-246\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Printing.jpg\" alt=\"Printing\" width=\"77\" height=\"78\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-245\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Photography.jpg\" alt=\"Photography\" width=\"73\" height=\"60\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-247\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Video.jpg\" alt=\"Video\" width=\"68\" height=\"68\" /></strong></td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Graphic Design</p>\r\n</td>\r\n<td style=\"text-align: center;\" width=\"154\">Printing</td>\r\n<td style=\"text-align: center;\" width=\"154\">Photography</td>\r\n<td style=\"text-align: center;\" width=\"154\">Videography</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-243\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Event-Management.jpg\" alt=\"Event Management\" width=\"68\" height=\"74\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-248\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Web-Development.jpg\" alt=\"Web Development\" width=\"73\" height=\"75\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-242\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Copywriting.jpg\" alt=\"Proof Reading\" width=\"63\" height=\"77\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-241\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Advertising-Booking.jpg\" alt=\"Advertising Booking\" width=\"66\" height=\"67\" /></strong></td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\">Event Management</td>\r\n<td style=\"text-align: center;\" width=\"154\">Website Development</td>\r\n<td style=\"text-align: center;\" width=\"154\">Proof Reading</td>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Advertising Bookings\r\n&amp; Management</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"259\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"259\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"259\" admin_label=\"Call To Action - Contact\" title=\"Ready to take action?\" button_url=\"http://www.infinitymarketing.co.nz/contact/\" url_new_window=\"off\" button_text=\"Click here to contact us now\" use_background_color=\"off\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\nYour new future is waiting\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "WORK WITH ME", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2016-03-20 20:11:30", "2016-03-20 07:11:30", "", "39", "http://www.infinitymarketing.co.nz/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("270", "1", "2016-03-20 20:12:23", "2016-03-20 07:12:23", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Me Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Work With Me</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Me Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">We offer a range of marketing services for your small business. Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.</p>\r\n<p style=\"text-align: center;\">We offer great monthly packages, which are fully customisable to suit your business needs; and one-off services.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Coaching Image\" show_in_lightbox=\"off\" url=\"#Coaching-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Coaching_sml.jpg\" alt=\"Coaching\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Hands-on Packages Image\" show_in_lightbox=\"off\" url=\"#Hands-on-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Hands-on_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Individual Services Image\" show_in_lightbox=\"off\" url=\"#Individual-Projects\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Individual-Projects_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Other Services Image\" show_in_lightbox=\"off\" url=\"#Other-Services\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Other-Services_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Coaching Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Coaching-Packages\"></a>Coaching Packages<a name=\"Coaching-Packages\"></a></h2>\r\n<h3>We coach, and you implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTRO Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTRO Package - $189</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTRO Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis is about getting the basics right. We look at your current activity, recognise what is working, recommend any improvements and establish a plan going forward. This may suit those who have already started marketing their business and need help to get more customers or get themselves on track.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Establish a top line plan to get you where you want to be</li>\r\n</ul>\r\nThis involves a 1 hour face-to-face (where possible) or skype session and you will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nThis package can be upgraded to the INITIATE package if you feel you would like to go into more detail and create an initial marketing plan.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTRO Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Intro-Candice-v3.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INITIATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INITIATE Package - $589</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INITIATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThe INITIATE package is about giving your marketing the huge push it needs, either when you first start your business or a little later down the track. This is a holistic approach, taking you from strategy, goals, and tactics through to implementation. This will provide a plan of action for the next year.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Explore your positioning and they key messages and selling points for your customers</li>\r\n	<li>Understand who your competitors are and what your point of difference is</li>\r\n	<li>Talk tactics on where to be present, identifying why and how to achieve this</li>\r\n	<li>Establish a plan for making your customers take action</li>\r\n	<li>Work together to formulate a marketing plan for the year</li>\r\n</ul>\r\nThis involves a 2 x 1.5 hour face-to-face (where possible) or skype sessions.  You will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nWe recommend you follow on to the INTEGRATE package as this package measures the effectiveness of your plan as implemented, and refines this on an ongoing basis.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INITIATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Initiate-Candice-v2.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTEGRATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTEGRATE Monthly Package - $289 per month</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTEGRATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n(3 month minimum)\r\n\r\nThis is a one on one session twice per month where together, we ensure your marketing is on track. We can utilise measurement techniques to assess the effectiveness of your strategies and keeping you on track to achieve the desired goals.\r\n\r\nWe meet via skype* twice per month to discuss your progress, any ideas or opportunities, and bounce ideas around. (*This can also be done in one longer face to face session if possible)\r\n\r\nThese sessions will help to keep on track with your marketing plan, and guide you throughout the year to meet and exceed your marketing and business goals. By measuring the effectiveness of current strategies, refinements can be effected to ensure your marketing continues to maximise results.\r\n\r\nSupport is available by e-mail, Facebook or reasonable phone support throughout the month if required.\r\n\r\nWe recommend you begin with the INTRO Package before commencing this INTEGRATE Package .\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTEGRATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Integrate-Candice-v2.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hands-on Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Hands-on-Packages\"></a>Hands-on Packages<a name=\"Hands-on-Packages\"></a></h2>\r\n<h3>We implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Custom\" currency=\"$\" per=\"month\" sum=\"?\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]We can design a custom package that suits the unique needs of your business.[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Incredible Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Incredible\" currency=\"$\" per=\"month\" sum=\"300\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]1 x Facebook / Instagram post content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\nMonthly e-mail newsletter\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Intermediate Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Intermediate\" currency=\"$\" per=\"month\" sum=\"600\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]2 x Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised  content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nFortnightly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Advanced Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Advanced\" currency=\"$\" per=\"month\" sum=\"900\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nWeekly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Expert Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Expert\" currency=\"$\" per=\"month\" sum=\"1500\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Twice weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n2 x Facebook cover content &amp; artwork\r\n\r\n2 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n2 x blog posts with search engine optimised\r\n\r\nPoint of sale content &amp; artwork\r\n\r\nManage media bookings/ad campaigns (Social Media/Google)\r\n\r\nWeekly e-mail newsletter\r\n\r\nWebsite updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Projects Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Individual-Projects\"></a>Individual Projects<a name=\"Individual-Projects\"></a></h2>\r\n<h3>We help you with a specific item of work</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Individual Projects Table\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nPrices below include effective marketing copy and design.\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"234\">Brochures</td>\r\n<td width=\"95\"></td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          One sided flyer</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Double sided flyer</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Multi-page  DLE brochure</td>\r\n<td width=\"95\">$195</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Poster</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Point of sale</td>\r\n<td width=\"95\">$ P.O.A</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website Content (200 words)</td>\r\n<td width=\"95\">$89</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Blog (400-600 words)</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">E-mail Campaign</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Cover Photo &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Post artwork &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website content revamp^</td>\r\n<td width=\"95\">$725</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Products Footer Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n^A more accurate quote will be given depending on your website and amount of content\r\n\r\nPrices shown in NZD &amp; Excludes GST and travel.\r\n\r\nExcludes cost of stock images (if required). Any detailed artwork such as illustration or other will be quoted separately.\r\n\r\nIf what you are looking for is not listed above, it does not necessarily mean we do not offer the service, please contact us for a quote.\r\n\r\nPrices above include marketing copy and design and includes 2 revisions, further revisions will be quoted. Prices are available for content only options, proofing only options and design only options.\r\n\r\nPrinting can be arranged and will be quoted separately. Photography and video options can be arranged and quoted for separately\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Other-Services\"></a>Other Services<a name=\"Other-Services\"></a></h2>\r\n<h3>We offer a number of other services - please contact us for a quote</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-244\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Graphic-Design.jpg\" alt=\"Graphic Design\" width=\"93\" height=\"76\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-246\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Printing.jpg\" alt=\"Printing\" width=\"77\" height=\"78\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-245\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Photography.jpg\" alt=\"Photography\" width=\"73\" height=\"60\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-247\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Video.jpg\" alt=\"Video\" width=\"68\" height=\"68\" /></strong></td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Graphic Design</p>\r\n</td>\r\n<td style=\"text-align: center;\" width=\"154\">Printing</td>\r\n<td style=\"text-align: center;\" width=\"154\">Photography</td>\r\n<td style=\"text-align: center;\" width=\"154\">Videography</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-243\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Event-Management.jpg\" alt=\"Event Management\" width=\"68\" height=\"74\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-248\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Web-Development.jpg\" alt=\"Web Development\" width=\"73\" height=\"75\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-242\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Copywriting.jpg\" alt=\"Proof Reading\" width=\"63\" height=\"77\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-241\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Advertising-Booking.jpg\" alt=\"Advertising Booking\" width=\"66\" height=\"67\" /></strong></td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\">Event Management</td>\r\n<td style=\"text-align: center;\" width=\"154\">Website Development</td>\r\n<td style=\"text-align: center;\" width=\"154\">Proof Reading</td>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Advertising Bookings\r\n&amp; Management</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"259\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"259\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"259\" admin_label=\"Call To Action - Contact\" title=\"Ready to take action?\" button_url=\"http://www.infinitymarketing.co.nz/contact/\" url_new_window=\"off\" button_text=\"Click here to contact us now\" use_background_color=\"off\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\nYour new future is waiting\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "WORK WITH ME", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2016-03-20 20:12:23", "2016-03-20 07:12:23", "", "39", "http://www.infinitymarketing.co.nz/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("288", "1", "2016-03-20 21:48:17", "2016-03-20 08:48:17", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Us Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Work With Us</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Me Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">We offer a range of marketing services for your small business. Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.</p>\r\n<p style=\"text-align: center;\">We offer great monthly packages, which are fully customisable to suit your business needs; and one-off services.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Coaching Image\" show_in_lightbox=\"off\" url=\"#Coaching-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Coaching_sml.jpg\" alt=\"Coaching\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Hands-on Packages Image\" show_in_lightbox=\"off\" url=\"#Hands-on-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Hands-on_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Individual Services Image\" show_in_lightbox=\"off\" url=\"#Individual-Projects\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Individual-Projects_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Other Services Image\" show_in_lightbox=\"off\" url=\"#Other-Services\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Other-Services_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Coaching Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Coaching-Packages\"></a>Coaching Packages<a name=\"Coaching-Packages\"></a></h2>\r\n<h3>We coach, and you implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTRO Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTRO Package - $189</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTRO Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis is about getting the basics right. We look at your current activity, recognise what is working, recommend any improvements and establish a plan going forward. This may suit those who have already started marketing their business and need help to get more customers or get themselves on track.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Establish a top line plan to get you where you want to be</li>\r\n</ul>\r\nThis involves a 1 hour face-to-face (where possible) or skype session and you will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nThis package can be upgraded to the INITIATE package if you feel you would like to go into more detail and create an initial marketing plan.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTRO Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Intro-Candice-v3.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INITIATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INITIATE Package - $589</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INITIATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThe INITIATE package is about giving your marketing the huge push it needs, either when you first start your business or a little later down the track. This is a holistic approach, taking you from strategy, goals, and tactics through to implementation. This will provide a plan of action for the next year.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Explore your positioning and they key messages and selling points for your customers</li>\r\n	<li>Understand who your competitors are and what your point of difference is</li>\r\n	<li>Talk tactics on where to be present, identifying why and how to achieve this</li>\r\n	<li>Establish a plan for making your customers take action</li>\r\n	<li>Work together to formulate a marketing plan for the year</li>\r\n</ul>\r\nThis involves a 2 x 1.5 hour face-to-face (where possible) or skype sessions.  You will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nWe recommend you follow on to the INTEGRATE package as this package measures the effectiveness of your plan as implemented, and refines this on an ongoing basis.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INITIATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Initiate-Candice-v2.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTEGRATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTEGRATE Monthly Package - $289 per month</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTEGRATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n(3 month minimum)\r\n\r\nThis is a one on one session twice per month where together, we ensure your marketing is on track. We can utilise measurement techniques to assess the effectiveness of your strategies and keeping you on track to achieve the desired goals.\r\n\r\nWe meet via skype* twice per month to discuss your progress, any ideas or opportunities, and bounce ideas around. (*This can also be done in one longer face to face session if possible)\r\n\r\nThese sessions will help to keep on track with your marketing plan, and guide you throughout the year to meet and exceed your marketing and business goals. By measuring the effectiveness of current strategies, refinements can be effected to ensure your marketing continues to maximise results.\r\n\r\nSupport is available by e-mail, Facebook or reasonable phone support throughout the month if required.\r\n\r\nWe recommend you begin with the INTRO Package before commencing this INTEGRATE Package .\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTEGRATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Integrate-Candice-v2.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hands-on Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Hands-on-Packages\"></a>Hands-on Packages<a name=\"Hands-on-Packages\"></a></h2>\r\n<h3>We implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Custom\" currency=\"$\" per=\"month\" sum=\"?\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]We can design a custom package that suits the unique needs of your business.[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Incredible Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Incredible\" currency=\"$\" per=\"month\" sum=\"300\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]1 x Facebook / Instagram post content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\nMonthly e-mail newsletter\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Intermediate Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Intermediate\" currency=\"$\" per=\"month\" sum=\"600\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]2 x Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised  content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nFortnightly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Advanced Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Advanced\" currency=\"$\" per=\"month\" sum=\"900\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nWeekly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Expert Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Expert\" currency=\"$\" per=\"month\" sum=\"1500\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Twice weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n2 x Facebook cover content &amp; artwork\r\n\r\n2 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n2 x blog posts with search engine optimised\r\n\r\nPoint of sale content &amp; artwork\r\n\r\nManage media bookings/ad campaigns (Social Media/Google)\r\n\r\nWeekly e-mail newsletter\r\n\r\nWebsite updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Projects Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Individual-Projects\"></a>Individual Projects<a name=\"Individual-Projects\"></a></h2>\r\n<h3>We help you with a specific item of work</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Individual Projects Table\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nPrices below include effective marketing copy and design.\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"234\">Brochures</td>\r\n<td width=\"95\"></td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          One sided flyer</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Double sided flyer</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Multi-page  DLE brochure</td>\r\n<td width=\"95\">$195</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Poster</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Point of sale</td>\r\n<td width=\"95\">$ P.O.A</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website Content (200 words)</td>\r\n<td width=\"95\">$89</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Blog (400-600 words)</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">E-mail Campaign</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Cover Photo &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Post artwork &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website content revamp^</td>\r\n<td width=\"95\">$725</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Products Footer Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h4>If what you are looking for is not listed above, it does not necessarily mean we do not offer the service, please <a href=\"http://www.infinitymarketing.co.nz/contact/\">contact us</a> for a quote.</h4>\r\n^A more accurate quote will be given depending on your website and amount of content\r\n\r\nPrinting can be arranged and will be quoted separately. Photography and video options can be arranged and quoted for separately\r\n\r\nExcludes cost of stock images (if required). Any detailed artwork such as illustration or other will be quoted separately.\r\n\r\nPrices above include marketing copy and design and includes 2 revisions, further revisions will be quoted. Prices are available for content only options, proofing only options and design only options.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Other-Services\"></a>Other Services<a name=\"Other-Services\"></a></h2>\r\n<h3>We offer a number of other services - please contact us for a quote</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-244\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Graphic-Design.jpg\" alt=\"Graphic Design\" width=\"93\" height=\"76\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-246\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Printing.jpg\" alt=\"Printing\" width=\"77\" height=\"78\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-245\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Photography.jpg\" alt=\"Photography\" width=\"73\" height=\"60\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-247\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Video.jpg\" alt=\"Video\" width=\"68\" height=\"68\" /></strong></td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Graphic Design</p>\r\n</td>\r\n<td style=\"text-align: center;\" width=\"154\">Printing</td>\r\n<td style=\"text-align: center;\" width=\"154\">Photography</td>\r\n<td style=\"text-align: center;\" width=\"154\">Videography</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-243\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Event-Management.jpg\" alt=\"Event Management\" width=\"68\" height=\"74\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-248\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Web-Development.jpg\" alt=\"Web Development\" width=\"73\" height=\"75\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-242\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Copywriting.jpg\" alt=\"Proof Reading\" width=\"63\" height=\"77\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-241\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Advertising-Booking.jpg\" alt=\"Advertising Booking\" width=\"66\" height=\"67\" /></strong></td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\">Event Management</td>\r\n<td style=\"text-align: center;\" width=\"154\">Website Development</td>\r\n<td style=\"text-align: center;\" width=\"154\">Proof Reading</td>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Advertising Bookings\r\n&amp; Management</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Terms &amp; Conditions Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nAll prices exclude GST and are shown in NZD. Travel for packages which include face to face meetings is included for a radius of up to 20km from Howick, any further kilometres will be charged at $0.74+GST.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"259\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"259\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"259\" admin_label=\"Call To Action - Contact\" title=\"Ready to take action?\" button_url=\"http://www.infinitymarketing.co.nz/contact/\" url_new_window=\"off\" button_text=\"Click here to contact us now\" use_background_color=\"off\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\nYour new future is waiting\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "WORK WITH US", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2016-03-20 21:48:17", "2016-03-20 08:48:17", "", "39", "http://www.infinitymarketing.co.nz/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("277", "1", "2016-03-20 20:27:11", "2016-03-20 07:27:11", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Me Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Work With Me</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Me Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">We offer a range of marketing services for your small business. Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.</p>\r\n<p style=\"text-align: center;\">We offer great monthly packages, which are fully customisable to suit your business needs; and one-off services.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Coaching Image\" show_in_lightbox=\"off\" url=\"#Coaching-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Coaching_sml.jpg\" alt=\"Coaching\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Hands-on Packages Image\" show_in_lightbox=\"off\" url=\"#Hands-on-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Hands-on_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Individual Services Image\" show_in_lightbox=\"off\" url=\"#Individual-Projects\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Individual-Projects_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Other Services Image\" show_in_lightbox=\"off\" url=\"#Other-Services\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Other-Services_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Coaching Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Coaching-Packages\"></a>Coaching Packages<a name=\"Coaching-Packages\"></a></h2>\r\n<h3>We coach, and you implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTRO Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTRO Package - $189</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTRO Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis is about getting the basics right. We look at your current activity, recognise what is working, recommend any improvements and establish a plan going forward. This may suit those who have already started marketing their business and need help to get more customers or get themselves on track.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Establish a top line plan to get you where you want to be</li>\r\n</ul>\r\nThis involves a 1 hour face-to-face (where possible) or skype session and you will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nThis package can be upgraded to the INITIATE package if you feel you would like to go into more detail and create an initial marketing plan.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTRO Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Intro-Candice-v3.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INITIATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INITIATE Package - $589</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INITIATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThe INITIATE package is about giving your marketing the huge push it needs, either when you first start your business or a little later down the track. This is a holistic approach, taking you from strategy, goals, and tactics through to implementation. This will provide a plan of action for the next year.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Explore your positioning and they key messages and selling points for your customers</li>\r\n	<li>Understand who your competitors are and what your point of difference is</li>\r\n	<li>Talk tactics on where to be present, identifying why and how to achieve this</li>\r\n	<li>Establish a plan for making your customers take action</li>\r\n	<li>Work together to formulate a marketing plan for the year</li>\r\n</ul>\r\nThis involves a 2 x 1.5 hour face-to-face (where possible) or skype sessions.  You will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nWe recommend you follow on to the INTEGRATE package as this package measures the effectiveness of your plan as implemented, and refines this on an ongoing basis.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INITIATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Initiate-Candice-v2.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTEGRATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTEGRATE Monthly Package - $289 per month</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTEGRATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n(3 month minimum)\r\n\r\nThis is a one on one session twice per month where together, we ensure your marketing is on track. We can utilise measurement techniques to assess the effectiveness of your strategies and keeping you on track to achieve the desired goals.\r\n\r\nWe meet via skype* twice per month to discuss your progress, any ideas or opportunities, and bounce ideas around. (*This can also be done in one longer face to face session if possible)\r\n\r\nThese sessions will help to keep on track with your marketing plan, and guide you throughout the year to meet and exceed your marketing and business goals. By measuring the effectiveness of current strategies, refinements can be effected to ensure your marketing continues to maximise results.\r\n\r\nSupport is available by e-mail, Facebook or reasonable phone support throughout the month if required.\r\n\r\nWe recommend you begin with the INTRO Package before commencing this INTEGRATE Package .\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTEGRATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Integrate-Candice-v2.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hands-on Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Hands-on-Packages\"></a>Hands-on Packages<a name=\"Hands-on-Packages\"></a></h2>\r\n<h3>We implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Custom\" currency=\"$\" per=\"month\" sum=\"?\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]We can design a custom package that suits the unique needs of your business.[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Incredible Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Incredible\" currency=\"$\" per=\"month\" sum=\"300\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]1 x Facebook / Instagram post content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\nMonthly e-mail newsletter\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Intermediate Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Intermediate\" currency=\"$\" per=\"month\" sum=\"600\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]2 x Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised  content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nFortnightly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Advanced Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Advanced\" currency=\"$\" per=\"month\" sum=\"900\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nWeekly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Expert Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Expert\" currency=\"$\" per=\"month\" sum=\"1500\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Twice weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n2 x Facebook cover content &amp; artwork\r\n\r\n2 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n2 x blog posts with search engine optimised\r\n\r\nPoint of sale content &amp; artwork\r\n\r\nManage media bookings/ad campaigns (Social Media/Google)\r\n\r\nWeekly e-mail newsletter\r\n\r\nWebsite updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Projects Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Individual-Projects\"></a>Individual Projects<a name=\"Individual-Projects\"></a></h2>\r\n<h3>We help you with a specific item of work</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Individual Projects Table\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nPrices below include effective marketing copy and design.\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"234\">Brochures</td>\r\n<td width=\"95\"></td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          One sided flyer</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Double sided flyer</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Multi-page  DLE brochure</td>\r\n<td width=\"95\">$195</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Poster</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Point of sale</td>\r\n<td width=\"95\">$ P.O.A</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website Content (200 words)</td>\r\n<td width=\"95\">$89</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Blog (400-600 words)</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">E-mail Campaign</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Cover Photo &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Post artwork &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website content revamp^</td>\r\n<td width=\"95\">$725</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Products Footer Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h4>If what you are looking for is not listed above, it does not necessarily mean we do not offer the service, please <a href=\"http://www.infinitymarketing.co.nz/contact/\">contact us</a> for a quote.</h4>\r\n^A more accurate quote will be given depending on your website and amount of content\r\n\r\nPrinting can be arranged and will be quoted separately. Photography and video options can be arranged and quoted for separately\r\n\r\nExcludes cost of stock images (if required). Any detailed artwork such as illustration or other will be quoted separately.\r\n\r\nPrices above include marketing copy and design and includes 2 revisions, further revisions will be quoted. Prices are available for content only options, proofing only options and design only options.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Other-Services\"></a>Other Services<a name=\"Other-Services\"></a></h2>\r\n<h3>We offer a number of other services - please contact us for a quote</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-244\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Graphic-Design.jpg\" alt=\"Graphic Design\" width=\"93\" height=\"76\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-246\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Printing.jpg\" alt=\"Printing\" width=\"77\" height=\"78\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-245\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Photography.jpg\" alt=\"Photography\" width=\"73\" height=\"60\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-247\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Video.jpg\" alt=\"Video\" width=\"68\" height=\"68\" /></strong></td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Graphic Design</p>\r\n</td>\r\n<td style=\"text-align: center;\" width=\"154\">Printing</td>\r\n<td style=\"text-align: center;\" width=\"154\">Photography</td>\r\n<td style=\"text-align: center;\" width=\"154\">Videography</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-243\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Event-Management.jpg\" alt=\"Event Management\" width=\"68\" height=\"74\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-248\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Web-Development.jpg\" alt=\"Web Development\" width=\"73\" height=\"75\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-242\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Copywriting.jpg\" alt=\"Proof Reading\" width=\"63\" height=\"77\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-241\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Advertising-Booking.jpg\" alt=\"Advertising Booking\" width=\"66\" height=\"67\" /></strong></td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\">Event Management</td>\r\n<td style=\"text-align: center;\" width=\"154\">Website Development</td>\r\n<td style=\"text-align: center;\" width=\"154\">Proof Reading</td>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Advertising Bookings\r\n&amp; Management</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Terms &amp; Conditions Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nAll prices exclude GST and are shown in NZD. Travel for packages which include face to face meetings is included for a radius of up to 20km from Howick, any further kilometres will be charged at xxxx +GST.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"259\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"259\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"259\" admin_label=\"Call To Action - Contact\" title=\"Ready to take action?\" button_url=\"http://www.infinitymarketing.co.nz/contact/\" url_new_window=\"off\" button_text=\"Click here to contact us now\" use_background_color=\"off\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\nYour new future is waiting\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "WORK WITH US", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2016-03-20 20:27:11", "2016-03-20 07:27:11", "", "39", "http://www.infinitymarketing.co.nz/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("271", "1", "2016-03-20 20:20:36", "2016-03-20 07:20:36", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Me Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Work With Me</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Me Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">We offer a range of marketing services for your small business. Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.</p>\r\n<p style=\"text-align: center;\">We offer great monthly packages, which are fully customisable to suit your business needs; and one-off services.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Coaching Image\" show_in_lightbox=\"off\" url=\"#Coaching-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Coaching_sml.jpg\" alt=\"Coaching\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Hands-on Packages Image\" show_in_lightbox=\"off\" url=\"#Hands-on-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Hands-on_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Individual Services Image\" show_in_lightbox=\"off\" url=\"#Individual-Projects\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Individual-Projects_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Other Services Image\" show_in_lightbox=\"off\" url=\"#Other-Services\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Other-Services_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Coaching Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Coaching-Packages\"></a>Coaching Packages<a name=\"Coaching-Packages\"></a></h2>\r\n<h3>We coach, and you implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTRO Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTRO Package - $189</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTRO Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis is about getting the basics right. We look at your current activity, recognise what is working, recommend any improvements and establish a plan going forward. This may suit those who have already started marketing their business and need help to get more customers or get themselves on track.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Establish a top line plan to get you where you want to be</li>\r\n</ul>\r\nThis involves a 1 hour face-to-face (where possible) or skype session and you will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nThis package can be upgraded to the INITIATE package if you feel you would like to go into more detail and create an initial marketing plan.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTRO Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Intro-Candice-v3.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INITIATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INITIATE Package - $589</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INITIATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThe INITIATE package is about giving your marketing the huge push it needs, either when you first start your business or a little later down the track. This is a holistic approach, taking you from strategy, goals, and tactics through to implementation. This will provide a plan of action for the next year.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Explore your positioning and they key messages and selling points for your customers</li>\r\n	<li>Understand who your competitors are and what your point of difference is</li>\r\n	<li>Talk tactics on where to be present, identifying why and how to achieve this</li>\r\n	<li>Establish a plan for making your customers take action</li>\r\n	<li>Work together to formulate a marketing plan for the year</li>\r\n</ul>\r\nThis involves a 2 x 1.5 hour face-to-face (where possible) or skype sessions.  You will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nWe recommend you follow on to the INTEGRATE package as this package measures the effectiveness of your plan as implemented, and refines this on an ongoing basis.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INITIATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Initiate-Candice-v2.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTEGRATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTEGRATE Monthly Package - $289 per month</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTEGRATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n(3 month minimum)\r\n\r\nThis is a one on one session twice per month where together, we ensure your marketing is on track. We can utilise measurement techniques to assess the effectiveness of your strategies and keeping you on track to achieve the desired goals.\r\n\r\nWe meet via skype* twice per month to discuss your progress, any ideas or opportunities, and bounce ideas around. (*This can also be done in one longer face to face session if possible)\r\n\r\nThese sessions will help to keep on track with your marketing plan, and guide you throughout the year to meet and exceed your marketing and business goals. By measuring the effectiveness of current strategies, refinements can be effected to ensure your marketing continues to maximise results.\r\n\r\nSupport is available by e-mail, Facebook or reasonable phone support throughout the month if required.\r\n\r\nWe recommend you begin with the INTRO Package before commencing this INTEGRATE Package .\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTEGRATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Integrate-Candice-v2.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hands-on Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Hands-on-Packages\"></a>Hands-on Packages<a name=\"Hands-on-Packages\"></a></h2>\r\n<h3>We implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Custom\" currency=\"$\" per=\"month\" sum=\"?\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]We can design a custom package that suits the unique needs of your business.[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Incredible Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Incredible\" currency=\"$\" per=\"month\" sum=\"300\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]1 x Facebook / Instagram post content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\nMonthly e-mail newsletter\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Intermediate Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Intermediate\" currency=\"$\" per=\"month\" sum=\"600\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]2 x Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised  content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nFortnightly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Advanced Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Advanced\" currency=\"$\" per=\"month\" sum=\"900\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nWeekly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Expert Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Expert\" currency=\"$\" per=\"month\" sum=\"1500\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Twice weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n2 x Facebook cover content &amp; artwork\r\n\r\n2 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n2 x blog posts with search engine optimised\r\n\r\nPoint of sale content &amp; artwork\r\n\r\nManage media bookings/ad campaigns (Social Media/Google)\r\n\r\nWeekly e-mail newsletter\r\n\r\nWebsite updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Projects Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Individual-Projects\"></a>Individual Projects<a name=\"Individual-Projects\"></a></h2>\r\n<h3>We help you with a specific item of work</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Individual Projects Table\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nPrices below include effective marketing copy and design.\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"234\">Brochures</td>\r\n<td width=\"95\"></td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          One sided flyer</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Double sided flyer</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Multi-page  DLE brochure</td>\r\n<td width=\"95\">$195</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Poster</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Point of sale</td>\r\n<td width=\"95\">$ P.O.A</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website Content (200 words)</td>\r\n<td width=\"95\">$89</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Blog (400-600 words)</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">E-mail Campaign</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Cover Photo &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Post artwork &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website content revamp^</td>\r\n<td width=\"95\">$725</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Products Footer Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n^A more accurate quote will be given depending on your website and amount of content\r\n\r\nIf what you are looking for is not listed above, it does not necessarily mean we do not offer the service, please <a href=\"http://www.infinitymarketing.co.nz/contact/\">contact us</a> for a quote.\r\n\r\nPrinting can be arranged and will be quoted separately. Photography and video options can be arranged and quoted for separately\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Other-Services\"></a>Other Services<a name=\"Other-Services\"></a></h2>\r\n<h3>We offer a number of other services - please contact us for a quote</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-244\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Graphic-Design.jpg\" alt=\"Graphic Design\" width=\"93\" height=\"76\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-246\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Printing.jpg\" alt=\"Printing\" width=\"77\" height=\"78\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-245\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Photography.jpg\" alt=\"Photography\" width=\"73\" height=\"60\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-247\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Video.jpg\" alt=\"Video\" width=\"68\" height=\"68\" /></strong></td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Graphic Design</p>\r\n</td>\r\n<td style=\"text-align: center;\" width=\"154\">Printing</td>\r\n<td style=\"text-align: center;\" width=\"154\">Photography</td>\r\n<td style=\"text-align: center;\" width=\"154\">Videography</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-243\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Event-Management.jpg\" alt=\"Event Management\" width=\"68\" height=\"74\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-248\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Web-Development.jpg\" alt=\"Web Development\" width=\"73\" height=\"75\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-242\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Copywriting.jpg\" alt=\"Proof Reading\" width=\"63\" height=\"77\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-241\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Advertising-Booking.jpg\" alt=\"Advertising Booking\" width=\"66\" height=\"67\" /></strong></td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\">Event Management</td>\r\n<td style=\"text-align: center;\" width=\"154\">Website Development</td>\r\n<td style=\"text-align: center;\" width=\"154\">Proof Reading</td>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Advertising Bookings\r\n&amp; Management</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" admin_label=\"Section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Terms &amp; Conditions Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nAll prices exclude GST and are shown in NZD. Travel for packages which include face to face meetings is included for a radius of up to 20km from Howick, any further kilometres will be charged at xxxx +GST.\r\n\r\nExcludes cost of stock images (if required). Any detailed artwork such as illustration or other will be quoted separately.\r\n\r\nPrices above include marketing copy and design and includes 2 revisions, further revisions will be quoted. Prices are available for content only options, proofing only options and design only options.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"259\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"259\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"259\" admin_label=\"Call To Action - Contact\" title=\"Ready to take action?\" button_url=\"http://www.infinitymarketing.co.nz/contact/\" url_new_window=\"off\" button_text=\"Click here to contact us now\" use_background_color=\"off\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\nYour new future is waiting\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "WORK WITH ME", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2016-03-20 20:20:36", "2016-03-20 07:20:36", "", "39", "http://www.infinitymarketing.co.nz/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("272", "1", "2016-03-20 20:21:20", "2016-03-20 07:21:20", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Me Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Work With Me</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Me Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">We offer a range of marketing services for your small business. Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.</p>\r\n<p style=\"text-align: center;\">We offer great monthly packages, which are fully customisable to suit your business needs; and one-off services.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Coaching Image\" show_in_lightbox=\"off\" url=\"#Coaching-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Coaching_sml.jpg\" alt=\"Coaching\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Hands-on Packages Image\" show_in_lightbox=\"off\" url=\"#Hands-on-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Hands-on_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Individual Services Image\" show_in_lightbox=\"off\" url=\"#Individual-Projects\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Individual-Projects_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Other Services Image\" show_in_lightbox=\"off\" url=\"#Other-Services\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Other-Services_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Coaching Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Coaching-Packages\"></a>Coaching Packages<a name=\"Coaching-Packages\"></a></h2>\r\n<h3>We coach, and you implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTRO Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTRO Package - $189</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTRO Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis is about getting the basics right. We look at your current activity, recognise what is working, recommend any improvements and establish a plan going forward. This may suit those who have already started marketing their business and need help to get more customers or get themselves on track.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Establish a top line plan to get you where you want to be</li>\r\n</ul>\r\nThis involves a 1 hour face-to-face (where possible) or skype session and you will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nThis package can be upgraded to the INITIATE package if you feel you would like to go into more detail and create an initial marketing plan.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTRO Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Intro-Candice-v3.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INITIATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INITIATE Package - $589</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INITIATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThe INITIATE package is about giving your marketing the huge push it needs, either when you first start your business or a little later down the track. This is a holistic approach, taking you from strategy, goals, and tactics through to implementation. This will provide a plan of action for the next year.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Explore your positioning and they key messages and selling points for your customers</li>\r\n	<li>Understand who your competitors are and what your point of difference is</li>\r\n	<li>Talk tactics on where to be present, identifying why and how to achieve this</li>\r\n	<li>Establish a plan for making your customers take action</li>\r\n	<li>Work together to formulate a marketing plan for the year</li>\r\n</ul>\r\nThis involves a 2 x 1.5 hour face-to-face (where possible) or skype sessions.  You will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nWe recommend you follow on to the INTEGRATE package as this package measures the effectiveness of your plan as implemented, and refines this on an ongoing basis.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INITIATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Initiate-Candice-v2.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTEGRATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTEGRATE Monthly Package - $289 per month</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTEGRATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n(3 month minimum)\r\n\r\nThis is a one on one session twice per month where together, we ensure your marketing is on track. We can utilise measurement techniques to assess the effectiveness of your strategies and keeping you on track to achieve the desired goals.\r\n\r\nWe meet via skype* twice per month to discuss your progress, any ideas or opportunities, and bounce ideas around. (*This can also be done in one longer face to face session if possible)\r\n\r\nThese sessions will help to keep on track with your marketing plan, and guide you throughout the year to meet and exceed your marketing and business goals. By measuring the effectiveness of current strategies, refinements can be effected to ensure your marketing continues to maximise results.\r\n\r\nSupport is available by e-mail, Facebook or reasonable phone support throughout the month if required.\r\n\r\nWe recommend you begin with the INTRO Package before commencing this INTEGRATE Package .\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTEGRATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Integrate-Candice-v2.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hands-on Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Hands-on-Packages\"></a>Hands-on Packages<a name=\"Hands-on-Packages\"></a></h2>\r\n<h3>We implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Custom\" currency=\"$\" per=\"month\" sum=\"?\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]We can design a custom package that suits the unique needs of your business.[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Incredible Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Incredible\" currency=\"$\" per=\"month\" sum=\"300\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]1 x Facebook / Instagram post content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\nMonthly e-mail newsletter\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Intermediate Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Intermediate\" currency=\"$\" per=\"month\" sum=\"600\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]2 x Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised  content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nFortnightly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Advanced Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Advanced\" currency=\"$\" per=\"month\" sum=\"900\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nWeekly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Expert Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Expert\" currency=\"$\" per=\"month\" sum=\"1500\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Twice weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n2 x Facebook cover content &amp; artwork\r\n\r\n2 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n2 x blog posts with search engine optimised\r\n\r\nPoint of sale content &amp; artwork\r\n\r\nManage media bookings/ad campaigns (Social Media/Google)\r\n\r\nWeekly e-mail newsletter\r\n\r\nWebsite updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Projects Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Individual-Projects\"></a>Individual Projects<a name=\"Individual-Projects\"></a></h2>\r\n<h3>We help you with a specific item of work</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Individual Projects Table\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nPrices below include effective marketing copy and design.\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"234\">Brochures</td>\r\n<td width=\"95\"></td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          One sided flyer</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Double sided flyer</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Multi-page  DLE brochure</td>\r\n<td width=\"95\">$195</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Poster</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Point of sale</td>\r\n<td width=\"95\">$ P.O.A</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website Content (200 words)</td>\r\n<td width=\"95\">$89</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Blog (400-600 words)</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">E-mail Campaign</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Cover Photo &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Post artwork &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website content revamp^</td>\r\n<td width=\"95\">$725</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Products Footer Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n^A more accurate quote will be given depending on your website and amount of content\r\n\r\nIf what you are looking for is not listed above, it does not necessarily mean we do not offer the service, please <a href=\"http://www.infinitymarketing.co.nz/contact/\">contact us</a> for a quote.\r\n\r\nPrinting can be arranged and will be quoted separately. Photography and video options can be arranged and quoted for separately\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Other-Services\"></a>Other Services<a name=\"Other-Services\"></a></h2>\r\n<h3>We offer a number of other services - please contact us for a quote</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-244\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Graphic-Design.jpg\" alt=\"Graphic Design\" width=\"93\" height=\"76\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-246\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Printing.jpg\" alt=\"Printing\" width=\"77\" height=\"78\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-245\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Photography.jpg\" alt=\"Photography\" width=\"73\" height=\"60\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-247\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Video.jpg\" alt=\"Video\" width=\"68\" height=\"68\" /></strong></td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Graphic Design</p>\r\n</td>\r\n<td style=\"text-align: center;\" width=\"154\">Printing</td>\r\n<td style=\"text-align: center;\" width=\"154\">Photography</td>\r\n<td style=\"text-align: center;\" width=\"154\">Videography</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-243\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Event-Management.jpg\" alt=\"Event Management\" width=\"68\" height=\"74\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-248\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Web-Development.jpg\" alt=\"Web Development\" width=\"73\" height=\"75\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-242\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Copywriting.jpg\" alt=\"Proof Reading\" width=\"63\" height=\"77\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-241\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Advertising-Booking.jpg\" alt=\"Advertising Booking\" width=\"66\" height=\"67\" /></strong></td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\">Event Management</td>\r\n<td style=\"text-align: center;\" width=\"154\">Website Development</td>\r\n<td style=\"text-align: center;\" width=\"154\">Proof Reading</td>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Advertising Bookings\r\n&amp; Management</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Terms &amp; Conditions Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nAll prices exclude GST and are shown in NZD. Travel for packages which include face to face meetings is included for a radius of up to 20km from Howick, any further kilometres will be charged at xxxx +GST.\r\n\r\nExcludes cost of stock images (if required). Any detailed artwork such as illustration or other will be quoted separately.\r\n\r\nPrices above include marketing copy and design and includes 2 revisions, further revisions will be quoted. Prices are available for content only options, proofing only options and design only options.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"259\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"259\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"259\" admin_label=\"Call To Action - Contact\" title=\"Ready to take action?\" button_url=\"http://www.infinitymarketing.co.nz/contact/\" url_new_window=\"off\" button_text=\"Click here to contact us now\" use_background_color=\"off\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\nYour new future is waiting\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "WORK WITH US", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2016-03-20 20:21:20", "2016-03-20 07:21:20", "", "39", "http://www.infinitymarketing.co.nz/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("273", "1", "2016-03-20 20:22:50", "2016-03-20 07:22:50", "[et_pb_section admin_label=\"Impact Background\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice-Infinity-Marketing-Banner-.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Impact Text\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/discover-v2.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_signup admin_label=\"Email Optin\" provider=\"mailchimp\" mailchimp_list=\"4419f44e8e\" aweber_list=\"none\" use_background_color=\"on\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"left\" use_focus_border_color=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" title=\"Get practical marketing tips delivered straight to your inbox\" button_text=\"Sign me up!\" header_font=\"Open Sans||||\" header_font_size=\"22\" body_font=\"Open Sans||||\"] [/et_pb_signup][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"0px|||\"]\r\n<h2 style=\"text-align: center;\">Building your dream business can be overwhelming</h2>\r\n<h2 style=\"text-align: center;\">and how do you know what marketing works?</h2>\r\n<p style=\"text-align: center;\">In your small business, you tend to try and juggle it all. But Infinity Marketing is here to help you,\r\nthrough marketing that suits your unique business and the stage that it is at.</p>\r\n<p style=\"text-align: center;\">We will work together with you, to gain a thorough understanding of who your customers are,\r\nand where they are, to deliver the best marketing for your small business.</p>\r\n<p style=\"text-align: center;\">You might know exactly what your business needs to get the extra punch it requires,\r\nand simply need help with implementation of your marketing plan, or you might just\r\nbe starting out and need a guiding hand to identify what needs to be done for your business marketing.</p>\r\n<p style=\"text-align: center;\">Whatever stage you are at, we can help you take your business to the next level,\r\nwhere the possibilities are infinite.</p>\r\n<p style=\"text-align: center;\"><strong><a href=\"http://www.infinitymarketing.co.nz/work-with-me/\">Let\'s discover how to make that happen for your business</a></strong></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#b3babf\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Connect CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Connect.jpg\" alt=\"Connect on Facebook\" show_in_lightbox=\"off\" url=\"http://www.facebook.com/infinitymarketing.co.nz\" url_new_window=\"on\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Services CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Services.jpg\" alt=\"View Services\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/work-with-me/\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Contact CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Contact.jpg\" alt=\"Contact us\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/contact/\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice-About_round.png\" alt=\"Candice Venter\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"About Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>About Candice</h2>\r\nCandice has has a passion for marketing for small businesses, having worked in both start up and large corporations, she has seen and done a lot. She has an absolute passion for helping small businesses grow through the power of marketing.\r\n\r\nAn expert in understanding who your customers are, understanding where they are and delivering messages that inspire action, Candice thrives on creating marketing that works.\r\n\r\nAbove all, she is passionate to see your business succeed.\r\n\r\n[/et_pb_text][et_pb_button admin_label=\"Read More Button\" button_url=\"http://www.infinitymarketing.co.nz/about/\" url_new_window=\"off\" button_text=\"Read More\" button_alignment=\"left\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#f9f9f9\" button_bg_color=\"#009edb\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon=\"%%28%%\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-us/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\">Discover the services we provide</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "HOME", "", "inherit", "closed", "closed", "", "37-revision-v1", "", "", "2016-03-20 20:22:50", "2016-03-20 07:22:50", "", "37", "http://www.infinitymarketing.co.nz/37-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("274", "1", "2016-03-20 20:23:29", "2016-03-20 07:23:29", "[et_pb_section admin_label=\"CTA Background\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-us/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\n\n<p style=\"text-align: center;\">Take the first step toward your new future</p>\n\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Work With Me", "", "inherit", "closed", "closed", "", "179-revision-v1", "", "", "2016-03-20 20:23:29", "2016-03-20 07:23:29", "", "179", "http://www.infinitymarketing.co.nz/179-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("275", "1", "2016-03-20 20:23:34", "2016-03-20 07:23:34", "[et_pb_section admin_label=\"section\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"About Infinity Marketing Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">About Infinity Marketing</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hello I\'m Candice Venter Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\"><strong>Hello, I\'m Candice Venter</strong></h2>\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h2 style=\"text-align: center;\"><em>Your outsourced marketing expert, </em><em>here to help you\r\nwith marketing your small business</em>\r\n<em> with marketing that works!</em></h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nRight now, I\'m sure you\'re feeling like you are trying to juggle it all, to know every aspect of how to do everything for your business, and not sure how to get the results you need for your business to grow (or even survive!) and overall just frustrated and bombarded!\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><strong>I get it, balancing everything is HARD and you quite simply can\'t be the expert at everything. </strong></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI\'m here to show you that there is help and a light at the end of the tunnel where your business can succeed.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhy I love helping small businesses deliver outstanding marketing and see their businesses grow as a result, is because I am inspired by what amazing people and talents there are in our community. My passion is seeing other people succeed and I believe that everyone <strong>deserves</strong> to succeed.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI want this for you! I want to share my sills as a qualified and experienced marketing professional, to help your business grow and succeed.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/About-Candice-.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Get Personal Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#888e8f\" border_style=\"outset\" border_width=\"2px\"]\r\n<h2 style=\"text-align: justify;\">Let\'s get personal</h2>\r\n[/et_pb_text][et_pb_text admin_label=\"Get Personal Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOriginally from South Africa, I have now lived over half my life in Auckland, New Zealand. That means I have a good mix of being able to tell it straight, with a good dose of kiwi ingenuity. I studied a Bachelor of Business and Information Management, with a second major in Marketing at the University of Auckland and have gained my professional experience in both global corporations and a great kiwi start-up.\r\n\r\nFamily is my everything, this includes my 15 year old miniature sausage dog, Dante. It\'s for them, that I do what I do.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" global_module=\"179\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"179\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"179\" admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-us/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\">Take the first step toward your new future</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "ABOUT", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2016-03-20 20:23:34", "2016-03-20 07:23:34", "", "2", "http://www.infinitymarketing.co.nz/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("276", "1", "2016-03-20 20:24:30", "2016-03-20 07:24:30", "[et_pb_section admin_label=\"section\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Blog Title\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Blog</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_blog admin_label=\"Blog\" fullwidth=\"on\" show_thumbnail=\"on\" show_content=\"off\" show_more=\"on\" show_author=\"on\" show_date=\"on\" show_categories=\"on\" show_comments=\"on\" show_pagination=\"on\" offset_number=\"0\" use_overlay=\"off\" background_layout=\"light\" use_dropshadow=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blog][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"right\" area=\"sidebar-1\" background_layout=\"light\" remove_border=\"off\"] [/et_pb_sidebar][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" global_module=\"179\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"179\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"179\" admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-us/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\">Take the first step toward your new future</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "BLOG", "", "inherit", "closed", "closed", "", "98-revision-v1", "", "", "2016-03-20 20:24:30", "2016-03-20 07:24:30", "", "98", "http://www.infinitymarketing.co.nz/98-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("278", "1", "2016-03-20 20:28:02", "2016-03-20 07:28:02", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Me Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Work With Me</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Me Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">We offer a range of marketing services for your small business. Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.</p>\r\n<p style=\"text-align: center;\">We offer great monthly packages, which are fully customisable to suit your business needs; and one-off services.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Coaching Image\" show_in_lightbox=\"off\" url=\"#Coaching-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Coaching_sml.jpg\" alt=\"Coaching\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Hands-on Packages Image\" show_in_lightbox=\"off\" url=\"#Hands-on-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Hands-on_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Individual Services Image\" show_in_lightbox=\"off\" url=\"#Individual-Projects\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Individual-Projects_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Other Services Image\" show_in_lightbox=\"off\" url=\"#Other-Services\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Other-Services_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Coaching Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Coaching-Packages\"></a>Coaching Packages<a name=\"Coaching-Packages\"></a></h2>\r\n<h3>We coach, and you implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTRO Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTRO Package - $189</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTRO Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis is about getting the basics right. We look at your current activity, recognise what is working, recommend any improvements and establish a plan going forward. This may suit those who have already started marketing their business and need help to get more customers or get themselves on track.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Establish a top line plan to get you where you want to be</li>\r\n</ul>\r\nThis involves a 1 hour face-to-face (where possible) or skype session and you will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nThis package can be upgraded to the INITIATE package if you feel you would like to go into more detail and create an initial marketing plan.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTRO Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Intro-Candice-v3.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INITIATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INITIATE Package - $589</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INITIATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThe INITIATE package is about giving your marketing the huge push it needs, either when you first start your business or a little later down the track. This is a holistic approach, taking you from strategy, goals, and tactics through to implementation. This will provide a plan of action for the next year.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Explore your positioning and they key messages and selling points for your customers</li>\r\n	<li>Understand who your competitors are and what your point of difference is</li>\r\n	<li>Talk tactics on where to be present, identifying why and how to achieve this</li>\r\n	<li>Establish a plan for making your customers take action</li>\r\n	<li>Work together to formulate a marketing plan for the year</li>\r\n</ul>\r\nThis involves a 2 x 1.5 hour face-to-face (where possible) or skype sessions.  You will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nWe recommend you follow on to the INTEGRATE package as this package measures the effectiveness of your plan as implemented, and refines this on an ongoing basis.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INITIATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Initiate-Candice-v2.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTEGRATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTEGRATE Monthly Package - $289 per month</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTEGRATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n(3 month minimum)\r\n\r\nThis is a one on one session twice per month where together, we ensure your marketing is on track. We can utilise measurement techniques to assess the effectiveness of your strategies and keeping you on track to achieve the desired goals.\r\n\r\nWe meet via skype* twice per month to discuss your progress, any ideas or opportunities, and bounce ideas around. (*This can also be done in one longer face to face session if possible)\r\n\r\nThese sessions will help to keep on track with your marketing plan, and guide you throughout the year to meet and exceed your marketing and business goals. By measuring the effectiveness of current strategies, refinements can be effected to ensure your marketing continues to maximise results.\r\n\r\nSupport is available by e-mail, Facebook or reasonable phone support throughout the month if required.\r\n\r\nWe recommend you begin with the INTRO Package before commencing this INTEGRATE Package .\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTEGRATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Integrate-Candice-v2.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hands-on Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Hands-on-Packages\"></a>Hands-on Packages<a name=\"Hands-on-Packages\"></a></h2>\r\n<h3>We implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Custom\" currency=\"$\" per=\"month\" sum=\"?\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]We can design a custom package that suits the unique needs of your business.[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Incredible Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Incredible\" currency=\"$\" per=\"month\" sum=\"300\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]1 x Facebook / Instagram post content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\nMonthly e-mail newsletter\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Intermediate Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Intermediate\" currency=\"$\" per=\"month\" sum=\"600\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]2 x Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised  content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nFortnightly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Advanced Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Advanced\" currency=\"$\" per=\"month\" sum=\"900\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nWeekly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Expert Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Expert\" currency=\"$\" per=\"month\" sum=\"1500\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Twice weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n2 x Facebook cover content &amp; artwork\r\n\r\n2 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n2 x blog posts with search engine optimised\r\n\r\nPoint of sale content &amp; artwork\r\n\r\nManage media bookings/ad campaigns (Social Media/Google)\r\n\r\nWeekly e-mail newsletter\r\n\r\nWebsite updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Projects Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Individual-Projects\"></a>Individual Projects<a name=\"Individual-Projects\"></a></h2>\r\n<h3>We help you with a specific item of work</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Individual Projects Table\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nPrices below include effective marketing copy and design.\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"234\">Brochures</td>\r\n<td width=\"95\"></td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          One sided flyer</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Double sided flyer</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Multi-page  DLE brochure</td>\r\n<td width=\"95\">$195</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Poster</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Point of sale</td>\r\n<td width=\"95\">$ P.O.A</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website Content (200 words)</td>\r\n<td width=\"95\">$89</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Blog (400-600 words)</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">E-mail Campaign</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Cover Photo &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Post artwork &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website content revamp^</td>\r\n<td width=\"95\">$725</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Products Footer Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h4>If what you are looking for is not listed above, it does not necessarily mean we do not offer the service, please <a href=\"http://www.infinitymarketing.co.nz/contact/\">contact us</a> for a quote.</h4>\r\n^A more accurate quote will be given depending on your website and amount of content\r\n\r\nPrinting can be arranged and will be quoted separately. Photography and video options can be arranged and quoted for separately\r\n\r\nExcludes cost of stock images (if required). Any detailed artwork such as illustration or other will be quoted separately.\r\n\r\nPrices above include marketing copy and design and includes 2 revisions, further revisions will be quoted. Prices are available for content only options, proofing only options and design only options.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Other-Services\"></a>Other Services<a name=\"Other-Services\"></a></h2>\r\n<h3>We offer a number of other services - please contact us for a quote</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-244\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Graphic-Design.jpg\" alt=\"Graphic Design\" width=\"93\" height=\"76\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-246\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Printing.jpg\" alt=\"Printing\" width=\"77\" height=\"78\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-245\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Photography.jpg\" alt=\"Photography\" width=\"73\" height=\"60\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-247\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Video.jpg\" alt=\"Video\" width=\"68\" height=\"68\" /></strong></td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Graphic Design</p>\r\n</td>\r\n<td style=\"text-align: center;\" width=\"154\">Printing</td>\r\n<td style=\"text-align: center;\" width=\"154\">Photography</td>\r\n<td style=\"text-align: center;\" width=\"154\">Videography</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-243\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Event-Management.jpg\" alt=\"Event Management\" width=\"68\" height=\"74\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-248\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Web-Development.jpg\" alt=\"Web Development\" width=\"73\" height=\"75\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-242\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Copywriting.jpg\" alt=\"Proof Reading\" width=\"63\" height=\"77\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-241\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Advertising-Booking.jpg\" alt=\"Advertising Booking\" width=\"66\" height=\"67\" /></strong></td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\">Event Management</td>\r\n<td style=\"text-align: center;\" width=\"154\">Website Development</td>\r\n<td style=\"text-align: center;\" width=\"154\">Proof Reading</td>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Advertising Bookings\r\n&amp; Management</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Terms &amp; Conditions Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nAll prices exclude GST and are shown in NZD. Travel for packages which include face to face meetings is included for a radius of up to 20km from Howick, any further kilometres will be charged at $0.74+GST.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"259\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"259\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"259\" admin_label=\"Call To Action - Contact\" title=\"Ready to take action?\" button_url=\"http://www.infinitymarketing.co.nz/contact/\" url_new_window=\"off\" button_text=\"Click here to contact us now\" use_background_color=\"off\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\nYour new future is waiting\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "WORK WITH US", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2016-03-20 20:28:02", "2016-03-20 07:28:02", "", "39", "http://www.infinitymarketing.co.nz/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("279", "1", "2016-03-20 21:03:38", "2016-03-20 08:03:38", "Network NZ", "Network NZ", "", "inherit", "open", "closed", "", "network-nz-transparent", "", "", "2016-03-20 21:04:28", "2016-03-20 08:04:28", "", "37", "http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Network-NZ-Transparent.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("282", "1", "2016-03-20 21:09:09", "2016-03-20 08:09:09", "[et_pb_section admin_label=\"section\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"About Infinity Marketing Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">About Infinity Marketing</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hello I\'m Candice Venter Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\"><strong>Hello, I\'m Candice Venter</strong></h2>\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h2 style=\"text-align: center;\"><em>Your outsourced marketing expert, </em><em>here to help you\r\nwith marketing your small business</em>\r\n<em> with marketing that works!</em></h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nRight now, I\'m sure you\'re feeling like you are trying to juggle it all, to know every aspect of how to do everything for your business, and not sure how to get the results you need for your business to grow (or even survive!) and overall just frustrated and bombarded!\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><strong>I get it, balancing everything is HARD and you quite simply can\'t be the expert at everything. </strong></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI\'m here to show you that there is help and a light at the end of the tunnel where your business can succeed.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhy I love helping small businesses deliver outstanding marketing and see their businesses grow as a result, is because I am inspired by what amazing people and talents there are in our community. My passion is seeing other people succeed and I believe that everyone <strong>deserves</strong> to succeed.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI want this for you! I want to share my sills as a qualified and experienced marketing professional, to help your business grow and succeed.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/About-Candice-.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Get Personal Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#888e8f\" border_style=\"outset\" border_width=\"2px\"]\r\n<h2 style=\"text-align: justify;\">Let\'s get personal</h2>\r\n[/et_pb_text][et_pb_text admin_label=\"Get Personal Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOriginally from South Africa, I have now lived over half my life in Auckland, New Zealand. That means I have a good mix of being able to tell it straight, with a good dose of kiwi ingenuity. I studied a Bachelor of Business and Information Management, with a second major in Marketing at the University of Auckland and have gained my professional experience in both global corporations and a great kiwi start-up.\r\n\r\nFamily is my everything, this includes my 15 year old miniature sausage dog, Dante. It\'s for them, that I do what I do.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Network NZ Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Network-NZ-Transparent.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" /][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>Infinity Marketing is proudly a Foundation Member of Network NZ.</h2>\r\nTo find out more about Network NZ, <a href=\"http://www.networknz.nz\">click here to visit www.networknz.nz</a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" global_module=\"179\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"179\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"179\" admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-us/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\">Take the first step toward your new future</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "ABOUT", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2016-03-20 21:09:09", "2016-03-20 08:09:09", "", "2", "http://www.infinitymarketing.co.nz/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("283", "1", "2016-03-20 21:10:26", "2016-03-20 08:10:26", "[et_pb_section admin_label=\"section\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"About Infinity Marketing Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">About Infinity Marketing</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hello I\'m Candice Venter Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\"><strong>Hello, I\'m Candice Venter</strong></h2>\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h2 style=\"text-align: center;\"><em>Your outsourced marketing expert, </em><em>here to help you\r\nwith marketing your small business</em>\r\n<em> with marketing that works!</em></h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nRight now, I\'m sure you\'re feeling like you are trying to juggle it all, to know every aspect of how to do everything for your business, and not sure how to get the results you need for your business to grow (or even survive!) and overall just frustrated and bombarded!\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><strong>I get it, balancing everything is HARD and you quite simply can\'t be the expert at everything. </strong></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI\'m here to show you that there is help and a light at the end of the tunnel where your business can succeed.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhy I love helping small businesses deliver outstanding marketing and see their businesses grow as a result, is because I am inspired by what amazing people and talents there are in our community. My passion is seeing other people succeed and I believe that everyone <strong>deserves</strong> to succeed.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI want this for you! I want to share my sills as a qualified and experienced marketing professional, to help your business grow and succeed.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/About-Candice-.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Get Personal Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#888e8f\" border_style=\"outset\" border_width=\"2px\"]\r\n<h2 style=\"text-align: justify;\">Let\'s get personal</h2>\r\n[/et_pb_text][et_pb_text admin_label=\"Get Personal Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOriginally from South Africa, I have now lived over half my life in Auckland, New Zealand. That means I have a good mix of being able to tell it straight, with a good dose of kiwi ingenuity. I studied a Bachelor of Business and Information Management, with a second major in Marketing at the University of Auckland and have gained my professional experience in both global corporations and a great kiwi start-up.\r\n\r\nFamily is my everything, this includes my 15 year old miniature sausage dog, Dante. It\'s for them, that I do what I do.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Network NZ Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Network-NZ-Transparent.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>Infinity Marketing is proud to be a Foundation Member of Network NZ</h2>\r\nTo find out more about Network NZ, <a href=\"http://www.networknz.nz\">click here to visit www.networknz.nz</a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" global_module=\"179\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"179\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"179\" admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-us/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\">Take the first step toward your new future</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "ABOUT", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2016-03-20 21:10:26", "2016-03-20 08:10:26", "", "2", "http://www.infinitymarketing.co.nz/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("284", "1", "2016-03-20 21:11:46", "2016-03-20 08:11:46", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Us Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Work With Us</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Me Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">We offer a range of marketing services for your small business. Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.</p>\r\n<p style=\"text-align: center;\">We offer great monthly packages, which are fully customisable to suit your business needs; and one-off services.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Coaching Image\" show_in_lightbox=\"off\" url=\"#Coaching-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Coaching_sml.jpg\" alt=\"Coaching\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Hands-on Packages Image\" show_in_lightbox=\"off\" url=\"#Hands-on-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Hands-on_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Individual Services Image\" show_in_lightbox=\"off\" url=\"#Individual-Projects\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Individual-Projects_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Other Services Image\" show_in_lightbox=\"off\" url=\"#Other-Services\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Other-Services_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Coaching Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Coaching-Packages\"></a>Coaching Packages<a name=\"Coaching-Packages\"></a></h2>\r\n<h3>We coach, and you implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTRO Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTRO Package - $189</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTRO Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis is about getting the basics right. We look at your current activity, recognise what is working, recommend any improvements and establish a plan going forward. This may suit those who have already started marketing their business and need help to get more customers or get themselves on track.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Establish a top line plan to get you where you want to be</li>\r\n</ul>\r\nThis involves a 1 hour face-to-face (where possible) or skype session and you will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nThis package can be upgraded to the INITIATE package if you feel you would like to go into more detail and create an initial marketing plan.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTRO Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Intro-Candice-v3.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INITIATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INITIATE Package - $589</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INITIATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThe INITIATE package is about giving your marketing the huge push it needs, either when you first start your business or a little later down the track. This is a holistic approach, taking you from strategy, goals, and tactics through to implementation. This will provide a plan of action for the next year.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Explore your positioning and they key messages and selling points for your customers</li>\r\n	<li>Understand who your competitors are and what your point of difference is</li>\r\n	<li>Talk tactics on where to be present, identifying why and how to achieve this</li>\r\n	<li>Establish a plan for making your customers take action</li>\r\n	<li>Work together to formulate a marketing plan for the year</li>\r\n</ul>\r\nThis involves a 2 x 1.5 hour face-to-face (where possible) or skype sessions.  You will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nWe recommend you follow on to the INTEGRATE package as this package measures the effectiveness of your plan as implemented, and refines this on an ongoing basis.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INITIATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Initiate-Candice-v2.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTEGRATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTEGRATE Monthly Package - $289 per month</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTEGRATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n(3 month minimum)\r\n\r\nThis is a one on one session twice per month where together, we ensure your marketing is on track. We can utilise measurement techniques to assess the effectiveness of your strategies and keeping you on track to achieve the desired goals.\r\n\r\nWe meet via skype* twice per month to discuss your progress, any ideas or opportunities, and bounce ideas around. (*This can also be done in one longer face to face session if possible)\r\n\r\nThese sessions will help to keep on track with your marketing plan, and guide you throughout the year to meet and exceed your marketing and business goals. By measuring the effectiveness of current strategies, refinements can be effected to ensure your marketing continues to maximise results.\r\n\r\nSupport is available by e-mail, Facebook or reasonable phone support throughout the month if required.\r\n\r\nWe recommend you begin with the INTRO Package before commencing this INTEGRATE Package .\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTEGRATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Integrate-Candice-v2.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hands-on Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Hands-on-Packages\"></a>Hands-on Packages<a name=\"Hands-on-Packages\"></a></h2>\r\n<h3>We implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Custom\" currency=\"$\" per=\"month\" sum=\"?\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]We can design a custom package that suits the unique needs of your business.[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Incredible Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Incredible\" currency=\"$\" per=\"month\" sum=\"300\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]1 x Facebook / Instagram post content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\nMonthly e-mail newsletter\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Intermediate Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Intermediate\" currency=\"$\" per=\"month\" sum=\"600\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]2 x Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised  content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nFortnightly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Advanced Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Advanced\" currency=\"$\" per=\"month\" sum=\"900\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nWeekly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Expert Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Expert\" currency=\"$\" per=\"month\" sum=\"1500\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Twice weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n2 x Facebook cover content &amp; artwork\r\n\r\n2 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n2 x blog posts with search engine optimised\r\n\r\nPoint of sale content &amp; artwork\r\n\r\nManage media bookings/ad campaigns (Social Media/Google)\r\n\r\nWeekly e-mail newsletter\r\n\r\nWebsite updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Projects Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Individual-Projects\"></a>Individual Projects<a name=\"Individual-Projects\"></a></h2>\r\n<h3>We help you with a specific item of work</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Individual Projects Table\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nPrices below include effective marketing copy and design.\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"234\">Brochures</td>\r\n<td width=\"95\"></td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          One sided flyer</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Double sided flyer</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Multi-page  DLE brochure</td>\r\n<td width=\"95\">$195</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Poster</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Point of sale</td>\r\n<td width=\"95\">$ P.O.A</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website Content (200 words)</td>\r\n<td width=\"95\">$89</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Blog (400-600 words)</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">E-mail Campaign</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Cover Photo &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Post artwork &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website content revamp^</td>\r\n<td width=\"95\">$725</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Products Footer Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h4>If what you are looking for is not listed above, it does not necessarily mean we do not offer the service, please <a href=\"http://www.infinitymarketing.co.nz/contact/\">contact us</a> for a quote.</h4>\r\n^A more accurate quote will be given depending on your website and amount of content\r\n\r\nPrinting can be arranged and will be quoted separately. Photography and video options can be arranged and quoted for separately\r\n\r\nExcludes cost of stock images (if required). Any detailed artwork such as illustration or other will be quoted separately.\r\n\r\nPrices above include marketing copy and design and includes 2 revisions, further revisions will be quoted. Prices are available for content only options, proofing only options and design only options.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Other-Services\"></a>Other Services<a name=\"Other-Services\"></a></h2>\r\n<h3>We offer a number of other services - please contact us for a quote</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-244\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Graphic-Design.jpg\" alt=\"Graphic Design\" width=\"93\" height=\"76\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-246\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Printing.jpg\" alt=\"Printing\" width=\"77\" height=\"78\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-245\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Photography.jpg\" alt=\"Photography\" width=\"73\" height=\"60\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-247\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Video.jpg\" alt=\"Video\" width=\"68\" height=\"68\" /></strong></td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Graphic Design</p>\r\n</td>\r\n<td style=\"text-align: center;\" width=\"154\">Printing</td>\r\n<td style=\"text-align: center;\" width=\"154\">Photography</td>\r\n<td style=\"text-align: center;\" width=\"154\">Videography</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-243\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Event-Management.jpg\" alt=\"Event Management\" width=\"68\" height=\"74\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-248\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Web-Development.jpg\" alt=\"Web Development\" width=\"73\" height=\"75\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-242\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Copywriting.jpg\" alt=\"Proof Reading\" width=\"63\" height=\"77\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-241\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Advertising-Booking.jpg\" alt=\"Advertising Booking\" width=\"66\" height=\"67\" /></strong></td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\">Event Management</td>\r\n<td style=\"text-align: center;\" width=\"154\">Website Development</td>\r\n<td style=\"text-align: center;\" width=\"154\">Proof Reading</td>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Advertising Bookings\r\n&amp; Management</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Terms &amp; Conditions Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nAll prices exclude GST and are shown in NZD. Travel for packages which include face to face meetings is included for a radius of up to 20km from Howick, any further kilometres will be charged at $0.74+GST.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"259\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"259\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"259\" admin_label=\"Call To Action - Contact\" title=\"Ready to take action?\" button_url=\"http://www.infinitymarketing.co.nz/contact/\" url_new_window=\"off\" button_text=\"Click here to contact us now\" use_background_color=\"off\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\nYour new future is waiting\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "WORK WITH US", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2016-03-20 21:11:46", "2016-03-20 08:11:46", "", "39", "http://www.infinitymarketing.co.nz/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("285", "1", "2016-03-20 21:42:14", "2016-03-20 08:42:14", "[et_pb_section admin_label=\"Impact Background\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice-Infinity-Marketing-Banner-.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Impact Text\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/discover-v2.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_signup admin_label=\"Email Optin\" provider=\"mailchimp\" mailchimp_list=\"4419f44e8e\" aweber_list=\"none\" use_background_color=\"on\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"left\" use_focus_border_color=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" title=\"Get practical marketing tips delivered straight to your inbox\" button_text=\"Sign me up!\" header_font=\"Open Sans||||\" header_font_size=\"22\" body_font=\"Open Sans||||\"] [/et_pb_signup][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"0px|||\"]\r\n<h2 style=\"text-align: center;\">Building your dream business can be overwhelming</h2>\r\n<h2 style=\"text-align: center;\">and how do you know what marketing works?</h2>\r\n<p style=\"text-align: center;\">In your small business, you tend to try and juggle it all. But Infinity Marketing is here to help you,\r\nthrough marketing that suits your unique business and the stage that it is at.</p>\r\n<p style=\"text-align: center;\">We will work together with you, to gain a thorough understanding of who your customers are,\r\nand where they are, to deliver the best marketing for your small business.</p>\r\n<p style=\"text-align: center;\">You might know exactly what your business needs to get the extra punch it requires,\r\nand simply need help with implementation of your marketing plan, or you might just\r\nbe starting out and need a guiding hand to identify what needs to be done for your business marketing.</p>\r\n<p style=\"text-align: center;\">Whatever stage you are at, we can help you take your business to the next level,\r\nwhere the possibilities are infinite.</p>\r\n<p style=\"text-align: center;\"><strong><a href=\"http://www.infinitymarketing.co.nz/work-with-us/\">Let\'s discover how to make that happen for your business</a></strong></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#b3babf\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Connect CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Connect.jpg\" alt=\"Connect on Facebook\" show_in_lightbox=\"off\" url=\"http://www.facebook.com/infinitymarketing.co.nz\" url_new_window=\"on\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Services CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Services.jpg\" alt=\"View Services\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/work-with-me/\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Contact CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Contact.jpg\" alt=\"Contact us\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/contact/\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice-About_round.png\" alt=\"Candice Venter\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"About Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>About Candice</h2>\r\nCandice has has a passion for marketing for small businesses, having worked in both start up and large corporations, she has seen and done a lot. She has an absolute passion for helping small businesses grow through the power of marketing.\r\n\r\nAn expert in understanding who your customers are, understanding where they are and delivering messages that inspire action, Candice thrives on creating marketing that works.\r\n\r\nAbove all, she is passionate to see your business succeed.\r\n\r\n[/et_pb_text][et_pb_button admin_label=\"Read More Button\" button_url=\"http://www.infinitymarketing.co.nz/about/\" url_new_window=\"off\" button_text=\"Read More\" button_alignment=\"left\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#f9f9f9\" button_bg_color=\"#009edb\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon=\"%%28%%\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-us/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\">Discover the services we provide</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "HOME", "", "inherit", "closed", "closed", "", "37-revision-v1", "", "", "2016-03-20 21:42:14", "2016-03-20 08:42:14", "", "37", "http://www.infinitymarketing.co.nz/37-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("286", "1", "2016-03-20 21:43:24", "2016-03-20 08:43:24", "[et_pb_section admin_label=\"Impact Background\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice-Infinity-Marketing-Banner-.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Impact Text\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/discover-v2.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_signup admin_label=\"Email Optin\" provider=\"mailchimp\" mailchimp_list=\"4419f44e8e\" aweber_list=\"none\" use_background_color=\"on\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"left\" use_focus_border_color=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" title=\"Get practical marketing tips delivered straight to your inbox\" button_text=\"Sign me up!\" header_font=\"Open Sans||||\" header_font_size=\"22\" body_font=\"Open Sans||||\"] [/et_pb_signup][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"0px|||\"]\r\n<h2 style=\"text-align: center;\">Building your dream business can be overwhelming</h2>\r\n<h2 style=\"text-align: center;\">and how do you know what marketing works?</h2>\r\n<p style=\"text-align: center;\">In your small business, you tend to try and juggle it all. But Infinity Marketing is here to help you,\r\nthrough marketing that suits your unique business and the stage that it is at.</p>\r\n<p style=\"text-align: center;\">We will work together with you, to gain a thorough understanding of who your customers are,\r\nand where they are, to deliver the best marketing for your small business.</p>\r\n<p style=\"text-align: center;\">You might know exactly what your business needs to get the extra punch it requires,\r\nand simply need help with implementation of your marketing plan, or you might just\r\nbe starting out and need a guiding hand to identify what needs to be done for your business marketing.</p>\r\n<p style=\"text-align: center;\">Whatever stage you are at, we can help you take your business to the next level,\r\nwhere the possibilities are infinite.</p>\r\n<p style=\"text-align: center;\"><strong><a href=\"http://www.infinitymarketing.co.nz/work-with-us/\">Let\'s discover how to make that happen for your business</a></strong></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#b3babf\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Connect CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Connect.jpg\" alt=\"Connect on Facebook\" show_in_lightbox=\"off\" url=\"http://www.facebook.com/infinitymarketing.co.nz\" url_new_window=\"on\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Services CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Services.jpg\" alt=\"View Services\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/work-with-me/\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Contact CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Contact.jpg\" alt=\"Contact us\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/contact/\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice-About_round.png\" alt=\"Candice Venter\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"About Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>About Candice</h2>\r\nCandice has has a passion for marketing for small businesses, having worked in both start up and large corporations, she has seen and done a lot. She has an absolute passion for helping small businesses grow through the power of marketing.\r\n\r\nAn expert in understanding who your customers are, understanding where they are and delivering messages that inspire action, Candice thrives on creating marketing that works.\r\n\r\nAbove all, she is passionate to help your business succeed.\r\n\r\n[/et_pb_text][et_pb_button admin_label=\"Read More Button\" button_url=\"http://www.infinitymarketing.co.nz/about/\" url_new_window=\"off\" button_text=\"Read More\" button_alignment=\"left\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#f9f9f9\" button_bg_color=\"#009edb\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon=\"%%28%%\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-us/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\">Discover the services we provide</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "HOME", "", "inherit", "closed", "closed", "", "37-revision-v1", "", "", "2016-03-20 21:43:24", "2016-03-20 08:43:24", "", "37", "http://www.infinitymarketing.co.nz/37-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("432", "1", "2016-04-29 16:34:59", "2016-04-29 04:34:59", "[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<h2>We also provide the following services</h2>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Coaching Blurb\" title=\"Coaching\" url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One on One coaching and consulting services, either as a one-off service or on an on-going basis. Helping you get your marketing on track, and stay on track.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Marketing Services Blurb\" title=\"Marketing Services\" url=\"www.infinitymarketing.co.nz/marketing-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p style=\"text-align: center;\">Ongoing Marketing Services ensures your marketing happens like clock-work. The wheels keep churning, and your marketing keeps working for you.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Other Services Blurb\" title=\"Other Services\" url=\"www.infinitymarketing.co.nz/other-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%171%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>We aim to provide all your marketing needs in one place, and work with specialists in order to do this. No need to find alternative suppliers, we can help you.</p>\n\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "We Also Provide Coaching, Marketing Services & Other Services", "", "inherit", "closed", "closed", "", "414-revision-v1", "", "", "2016-04-29 16:34:59", "2016-04-29 04:34:59", "", "414", "http://www.infinitymarketing.co.nz/414-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("431", "1", "2016-04-29 16:34:51", "2016-04-29 04:34:51", "[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<h2>We also provide the following services</h2>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Coaching Blurb\" title=\"Coaching\" url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One on One coaching and consulting services, either as a one-off service or on an on-going basis. Helping you get your marketing on track, and stay on track.</p>\n\n[/et_pb_blurb][et_pb_blurb admin_label=\"Coaching Blurb\" title=\"Coaching\" url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One on One coaching and consulting services, either as a one-off service or on an on-going basis. Helping you get your marketing on track, and stay on track.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Marketing Services Blurb\" title=\"Marketing Services\" url=\"www.infinitymarketing.co.nz/marketing-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p style=\"text-align: center;\">Ongoing Marketing Services ensures your marketing happens like clock-work. The wheels keep churning, and your marketing keeps working for you.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Other Services Blurb\" title=\"Other Services\" url=\"www.infinitymarketing.co.nz/other-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%171%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>We aim to provide all your marketing needs in one place, and work with specialists in order to do this. No need to find alternative suppliers, we can help you.</p>\n\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "We Also Provide Coaching, Marketing Services & Other Services", "", "inherit", "closed", "closed", "", "414-revision-v1", "", "", "2016-04-29 16:34:51", "2016-04-29 04:34:51", "", "414", "http://www.infinitymarketing.co.nz/414-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("289", "1", "2016-03-20 21:58:39", "2016-03-20 08:58:39", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Us Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Work With Us</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Us Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">We offer a range of marketing services for your small business. Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.</p>\r\n<p style=\"text-align: center;\">We offer great monthly packages, which are fully customisable to suit your business needs; and one-off services.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Coaching Image\" show_in_lightbox=\"off\" url=\"#Coaching-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Coaching_sml.jpg\" alt=\"Coaching\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Hands-on Packages Image\" show_in_lightbox=\"off\" url=\"#Hands-on-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Hands-on_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Individual Services Image\" show_in_lightbox=\"off\" url=\"#Individual-Projects\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Individual-Projects_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Other Services Image\" show_in_lightbox=\"off\" url=\"#Other-Services\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Other-Services_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Coaching Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Coaching-Packages\"></a>Coaching Packages<a name=\"Coaching-Packages\"></a></h2>\r\n<h3>We coach, and you implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTRO Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTRO Package - $189</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTRO Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis is about getting the basics right. We look at your current activity, recognise what is working, recommend any improvements and establish a plan going forward. This may suit those who have already started marketing their business and need help to get more customers or get themselves on track.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Establish a top line plan to get you where you want to be</li>\r\n</ul>\r\nThis involves a 1 hour face-to-face (where possible) or skype session and you will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nThis package can be upgraded to the INITIATE package if you feel you would like to go into more detail and create an initial marketing plan.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTRO Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Intro-Candice-v3.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INITIATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INITIATE Package - $589</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INITIATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThe INITIATE package is about giving your marketing the huge push it needs, either when you first start your business or a little later down the track. This is a holistic approach, taking you from strategy, goals, and tactics through to implementation. This will provide a plan of action for the next year.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Explore your positioning and they key messages and selling points for your customers</li>\r\n	<li>Understand who your competitors are and what your point of difference is</li>\r\n	<li>Talk tactics on where to be present, identifying why and how to achieve this</li>\r\n	<li>Establish a plan for making your customers take action</li>\r\n	<li>Work together to formulate a marketing plan for the year</li>\r\n</ul>\r\nThis involves a 2 x 1.5 hour face-to-face (where possible) or skype sessions.  You will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nWe recommend you follow on to the INTEGRATE package as this package measures the effectiveness of your plan as implemented, and refines this on an ongoing basis.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INITIATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Initiate-Candice-v2.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTEGRATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTEGRATE Monthly Package - $289 per month</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTEGRATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n(3 month minimum)\r\n\r\nThis is a one on one session twice per month where together, we ensure your marketing is on track. We can utilise measurement techniques to assess the effectiveness of your strategies and keeping you on track to achieve the desired goals.\r\n\r\nWe meet via skype* twice per month to discuss your progress, any ideas or opportunities, and bounce ideas around. (*This can also be done in one longer face to face session if possible)\r\n\r\nThese sessions will help to keep on track with your marketing plan, and guide you throughout the year to meet and exceed your marketing and business goals. By measuring the effectiveness of current strategies, refinements can be effected to ensure your marketing continues to maximise results.\r\n\r\nSupport is available by e-mail, Facebook or reasonable phone support throughout the month if required.\r\n\r\nWe recommend you begin with the INTRO Package before commencing this INTEGRATE Package .\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTEGRATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Integrate-Candice-v2.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hands-on Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Hands-on-Packages\"></a>Hands-on Packages<a name=\"Hands-on-Packages\"></a></h2>\r\n<h3>We implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Custom\" currency=\"$\" per=\"month\" sum=\"?\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]We can design a custom package that suits the unique needs of your business.[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Incredible Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Incredible\" currency=\"$\" per=\"month\" sum=\"300\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]1 x Facebook / Instagram post content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\nMonthly e-mail newsletter\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Intermediate Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Intermediate\" currency=\"$\" per=\"month\" sum=\"600\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]2 x Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised  content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nFortnightly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Advanced Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Advanced\" currency=\"$\" per=\"month\" sum=\"900\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nWeekly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Expert Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Expert\" currency=\"$\" per=\"month\" sum=\"1500\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Twice weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n2 x Facebook cover content &amp; artwork\r\n\r\n2 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n2 x blog posts with search engine optimised\r\n\r\nPoint of sale content &amp; artwork\r\n\r\nManage media bookings/ad campaigns (Social Media/Google)\r\n\r\nWeekly e-mail newsletter\r\n\r\nWebsite updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Projects Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Individual-Projects\"></a>Individual Projects<a name=\"Individual-Projects\"></a></h2>\r\n<h3>We help you with a specific item of work</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Individual Projects Table\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nPrices below include effective marketing copy and design.\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"234\">Brochures</td>\r\n<td width=\"95\"></td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          One sided flyer</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Double sided flyer</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Multi-page  DLE brochure</td>\r\n<td width=\"95\">$195</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Poster</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Point of sale</td>\r\n<td width=\"95\">$ P.O.A</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website Content (200 words)</td>\r\n<td width=\"95\">$89</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Blog (400-600 words)</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">E-mail Campaign</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Cover Photo &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Post artwork &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website content revamp^</td>\r\n<td width=\"95\">$725</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Products Footer Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h4>If what you are looking for is not listed above, it does not necessarily mean we do not offer the service, please <a href=\"http://www.infinitymarketing.co.nz/contact/\">contact us</a> for a quote.</h4>\r\n^A more accurate quote will be given depending on your website and amount of content\r\n\r\nPrinting can be arranged and will be quoted separately. Photography and video options can be arranged and quoted for separately\r\n\r\nExcludes cost of stock images (if required). Any detailed artwork such as illustration or other will be quoted separately.\r\n\r\nPrices above include marketing copy and design and includes 2 revisions, further revisions will be quoted. Prices are available for content only options, proofing only options and design only options.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Other-Services\"></a>Other Services<a name=\"Other-Services\"></a></h2>\r\n<h3>We offer a number of other services - please contact us for a quote</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-244\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Graphic-Design.jpg\" alt=\"Graphic Design\" width=\"93\" height=\"76\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-246\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Printing.jpg\" alt=\"Printing\" width=\"77\" height=\"78\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-245\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Photography.jpg\" alt=\"Photography\" width=\"73\" height=\"60\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-247\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Video.jpg\" alt=\"Video\" width=\"68\" height=\"68\" /></strong></td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Graphic Design</p>\r\n</td>\r\n<td style=\"text-align: center;\" width=\"154\">Printing</td>\r\n<td style=\"text-align: center;\" width=\"154\">Photography</td>\r\n<td style=\"text-align: center;\" width=\"154\">Videography</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-243\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Event-Management.jpg\" alt=\"Event Management\" width=\"68\" height=\"74\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-248\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Web-Development.jpg\" alt=\"Web Development\" width=\"73\" height=\"75\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-242\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Copywriting.jpg\" alt=\"Proof Reading\" width=\"63\" height=\"77\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-241\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Advertising-Booking.jpg\" alt=\"Advertising Booking\" width=\"66\" height=\"67\" /></strong></td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\">Event Management</td>\r\n<td style=\"text-align: center;\" width=\"154\">Website Development</td>\r\n<td style=\"text-align: center;\" width=\"154\">Proof Reading</td>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Advertising Bookings\r\n&amp; Management</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Terms &amp; Conditions Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nAll prices exclude GST and are shown in NZD. Travel for packages which include face to face meetings is included for a radius of up to 20km from Howick, any further kilometres will be charged at $0.74+GST.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"259\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"259\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"259\" admin_label=\"Call To Action - Contact\" title=\"Ready to take action?\" button_url=\"http://www.infinitymarketing.co.nz/contact/\" url_new_window=\"off\" button_text=\"Click here to contact us now\" use_background_color=\"off\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\nYour new future is waiting\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "WORK WITH US", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2016-03-20 21:58:39", "2016-03-20 08:58:39", "", "39", "http://www.infinitymarketing.co.nz/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("290", "1", "2016-03-20 22:00:49", "2016-03-20 09:00:49", "[et_pb_section admin_label=\"section\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"About Infinity Marketing Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">About Infinity Marketing</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hello I\'m Candice Venter Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\"><strong>Hi, I\'m Candice Venter</strong></h2>\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h2 style=\"text-align: center;\"><em>Your outsourced marketing expert, </em><em>here to help you\r\nwith marketing your small business</em>\r\n<em> with marketing that works!</em></h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nRight now, I\'m sure you\'re feeling like you are trying to juggle it all, to know every aspect of how to do everything for your business, and not sure how to get the results you need for your business to grow (or even survive!) and overall just frustrated and bombarded!\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><strong>I get it, balancing everything is HARD and you quite simply can\'t be the expert at everything. </strong></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI\'m here to show you that there is help and a light at the end of the tunnel where your business can succeed.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhy I love helping small businesses deliver outstanding marketing and see their businesses grow as a result, is because I am inspired by what amazing people and talents there are in our community. My passion is helping other people succeed, and I believe that everyone <strong>deserves</strong> to succeed.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI want this for you! I want to share my skills as a qualified and experienced marketing professional, to help your business grow and succeed.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/About-Candice-.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Get Personal Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#888e8f\" border_style=\"outset\" border_width=\"2px\"]\r\n<h2 style=\"text-align: justify;\">Let\'s get personal</h2>\r\n[/et_pb_text][et_pb_text admin_label=\"Get Personal Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOriginally from South Africa, I have now lived over half my life in Auckland, New Zealand. That means I have a good mix of being able to tell it straight, with a good dose of kiwi ingenuity. I studied a Bachelor of Business and Information Management, with a second major in Marketing at the University of Auckland and have gained my professional experience in both global corporations and a great kiwi start-up.\r\n\r\nFamily is my everything, this includes my 15 year old miniature sausage dog, Dante. It\'s for them, that I do what I do.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Network NZ Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Network-NZ-Transparent.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>Infinity Marketing is proud to be a Foundation Member of Network NZ</h2>\r\nTo find out more about Network NZ, <a href=\"http://www.networknz.nz\">click here to visit www.networknz.nz</a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" global_module=\"179\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"179\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"179\" admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-us/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\">Take the first step toward your new future</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "ABOUT", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2016-03-20 22:00:49", "2016-03-20 09:00:49", "", "2", "http://www.infinitymarketing.co.nz/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("291", "1", "2016-03-20 22:04:09", "2016-03-20 09:04:09", "[et_pb_section admin_label=\"Impact Background\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice-Infinity-Marketing-Banner-.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Impact Text\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/discover-v2.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_signup admin_label=\"Email Optin\" provider=\"mailchimp\" mailchimp_list=\"4419f44e8e\" aweber_list=\"none\" use_background_color=\"on\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"left\" use_focus_border_color=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" title=\"Get practical marketing tips delivered straight to your inbox\" button_text=\"Sign me up!\" header_font=\"Open Sans||||\" header_font_size=\"22\" body_font=\"Open Sans||||\"] [/et_pb_signup][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"0px|||\"]\r\n<h2 style=\"text-align: center;\">Building your dream business can be overwhelming</h2>\r\n<h2 style=\"text-align: center;\">and how do you know what marketing works?</h2>\r\n<p style=\"text-align: center;\">In your small business, you tend to try and juggle it all. Infinity Marketing is here to help you\r\nwith marketing that suits your unique business, no matter which stage it is at.</p>\r\n<p style=\"text-align: center;\">We work together with you, to gain a thorough understanding of who your customers are,\r\nand where they are, to deliver the best marketing for your small business.</p>\r\n<p style=\"text-align: center;\">You might know exactly what your business needs to get the extra punch it requires,\r\nand need help with implementation of your marketing plan. Otherwise, you might\r\nbe starting out and need a guiding hand to identify what needs to be done for your business marketing.</p>\r\n<p style=\"text-align: center;\">Whatever stage you are at, we can help you take your business to the next level,\r\nwhere the possibilities are infinite.</p>\r\n<p style=\"text-align: center;\"><strong><a href=\"http://www.infinitymarketing.co.nz/work-with-us/\">Let\'s discover how we can make that happen for your business</a></strong></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#b3babf\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Connect CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Connect.jpg\" alt=\"Connect on Facebook\" show_in_lightbox=\"off\" url=\"http://www.facebook.com/infinitymarketing.co.nz\" url_new_window=\"on\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Services CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Services.jpg\" alt=\"View Services\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/work-with-me/\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Contact CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Contact.jpg\" alt=\"Contact us\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/contact/\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice-About_round.png\" alt=\"Candice Venter\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"About Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>About Candice</h2>\r\nCandice has has a passion for marketing for small businesses, having worked in both start up and large corporations, she has seen and done a lot. She has an absolute passion for helping small businesses grow through the power of marketing.\r\n\r\nAn expert in understanding who your customers are, understanding where they are and delivering messages that inspire action, Candice thrives on creating marketing that works.\r\n\r\nAbove all, she is passionate to help your business succeed.\r\n\r\n[/et_pb_text][et_pb_button admin_label=\"Read More Button\" button_url=\"http://www.infinitymarketing.co.nz/about/\" url_new_window=\"off\" button_text=\"Read More\" button_alignment=\"left\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#f9f9f9\" button_bg_color=\"#009edb\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon=\"%%28%%\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-us/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\">Discover the services we provide</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "HOME", "", "inherit", "closed", "closed", "", "37-revision-v1", "", "", "2016-03-20 22:04:09", "2016-03-20 09:04:09", "", "37", "http://www.infinitymarketing.co.nz/37-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("292", "1", "2016-03-20 22:06:54", "2016-03-20 09:06:54", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Us Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Work With Us</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Us Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">We offer a range of marketing services for your small business. Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.</p>\r\n<p style=\"text-align: center;\">We offer great monthly packages, which are fully customisable to suit your business needs; and one-off services.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Coaching Image\" show_in_lightbox=\"off\" url=\"#Coaching-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Coaching_sml.jpg\" alt=\"Coaching\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Hands-on Packages Image\" show_in_lightbox=\"off\" url=\"#Hands-on-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Hands-on_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Individual Services Image\" show_in_lightbox=\"off\" url=\"#Individual-Projects\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Individual-Projects_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Other Services Image\" show_in_lightbox=\"off\" url=\"#Other-Services\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Other-Services_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Coaching Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Coaching-Packages\"></a>Coaching Packages<a name=\"Coaching-Packages\"></a></h2>\r\n<h3>We coach, and you implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTRO Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTRO Package - $189</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTRO Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis is about getting the basics right. We look at your current activity, recognise what is working, recommend any improvements and establish a plan going forward. This may suit those who have already started marketing their business and need help to get more customers or get themselves on track.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Establish a top line plan to get you where you want to be</li>\r\n</ul>\r\nThis involves a 1 hour face-to-face (where possible) or skype session and you will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nThis package can be upgraded to the INITIATE package if you feel you would like to go into more detail and create an initial marketing plan.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTRO Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Intro-Candice-v3.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INITIATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INITIATE Package - $589</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INITIATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThe INITIATE package is about giving your marketing the huge push it needs, either when you first start your business or a little later down the track. This is a holistic approach, taking you from strategy, goals, and tactics through to implementation. This will provide a plan of action for the next year.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Explore your positioning and they key messages and selling points for your customers</li>\r\n	<li>Understand who your competitors are and what your point of difference is</li>\r\n	<li>Talk tactics on where to be present, identifying why and how to achieve this</li>\r\n	<li>Establish a plan for making your customers take action</li>\r\n	<li>Work together to formulate a marketing plan for the year</li>\r\n</ul>\r\nThis involves a 2 x 1.5 hour face-to-face (where possible) or skype sessions.  You will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nWe recommend you follow on to the INTEGRATE package as this package measures the effectiveness of your plan as implemented, and refines this on an ongoing basis.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INITIATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Initiate-Candice-v2.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTEGRATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTEGRATE Monthly Package - $289 per month</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTEGRATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n(3 month minimum)\r\n\r\nThis is a one on one session twice per month where together, we ensure your marketing is on track. We can utilise measurement techniques to assess the effectiveness of your strategies and keeping you on track to achieve the desired goals.\r\n\r\nWe meet via skype* twice per month to discuss your progress, any ideas or opportunities, and bounce ideas around. (*This can also be done in one longer face to face session if possible)\r\n\r\nThese sessions will help to keep on track with your marketing plan, and guide you throughout the year to meet and exceed your marketing and business goals. By measuring the effectiveness of current strategies, refinements can be effected to ensure your marketing continues to maximise results.\r\n\r\nSupport is available by e-mail, Facebook or reasonable phone support throughout the month if required.\r\n\r\nWe recommend you begin with the INTRO Package before commencing this INTEGRATE Package .\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTEGRATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Integrate-Candice-v2.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hands-on Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Hands-on-Packages\"></a>Hands-on Packages<a name=\"Hands-on-Packages\"></a></h2>\r\n<h3>We implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Custom\" currency=\"$\" per=\"month\" sum=\"?\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]We can design a custom package that suits the unique needs of your business.[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Incredible Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Incredible\" currency=\"$\" per=\"month\" sum=\"300\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]1 x Facebook / Instagram post content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\nMonthly e-mail newsletter\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Intermediate Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Intermediate\" currency=\"$\" per=\"month\" sum=\"600\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]2 x Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised  content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nFortnightly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Advanced Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Advanced\" currency=\"$\" per=\"month\" sum=\"900\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nWeekly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Expert Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Expert\" currency=\"$\" per=\"month\" sum=\"1500\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Twice weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n2 x Facebook cover content &amp; artwork\r\n\r\n2 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n2 x blog posts with search engine optimised\r\n\r\nPoint of sale content &amp; artwork\r\n\r\nManage media bookings/ad campaigns (Social Media/Google)\r\n\r\nWeekly e-mail newsletter\r\n\r\nWebsite updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Projects Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Individual-Projects\"></a>Individual Projects<a name=\"Individual-Projects\"></a></h2>\r\n<h3>We help you with a specific item of work</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Individual Projects Table\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nPrices below include effective marketing copy and design.\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"234\">Brochures</td>\r\n<td width=\"95\"></td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          One sided flyer</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Double sided flyer</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Multi-page  DLE brochure</td>\r\n<td width=\"95\">$195</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Poster</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Point of sale</td>\r\n<td width=\"95\">$ P.O.A</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website Content (200 words)</td>\r\n<td width=\"95\">$89</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Blog (400-600 words)</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">E-mail Campaign</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Cover Photo &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Post artwork &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website content revamp  (indicative)</td>\r\n<td width=\"95\">$725</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Products Footer Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h4>If what you are looking for is not listed above, it does not necessarily mean we do not offer the service, please <a href=\"http://www.infinitymarketing.co.nz/contact/\">contact us</a> for a quote.</h4>\r\nWe can provide quotes tailored to your specific project requirements.\r\n\r\nPrinting can be arranged and will be quoted separately. Photography and video options can be arranged and quoted for separately\r\n\r\nExcludes cost of stock images (if required). Any detailed artwork such as illustration or other will be quoted separately.\r\n\r\nPrices above include marketing copy and design and includes 2 revisions, further revisions will be quoted. Prices are available for content only options, proofing only options and design only options.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Other-Services\"></a>Other Services<a name=\"Other-Services\"></a></h2>\r\n<h3>We offer a number of other services - please contact us for a quote</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-244\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Graphic-Design.jpg\" alt=\"Graphic Design\" width=\"93\" height=\"76\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-246\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Printing.jpg\" alt=\"Printing\" width=\"77\" height=\"78\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-245\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Photography.jpg\" alt=\"Photography\" width=\"73\" height=\"60\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-247\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Video.jpg\" alt=\"Video\" width=\"68\" height=\"68\" /></strong></td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Graphic Design</p>\r\n</td>\r\n<td style=\"text-align: center;\" width=\"154\">Printing</td>\r\n<td style=\"text-align: center;\" width=\"154\">Photography</td>\r\n<td style=\"text-align: center;\" width=\"154\">Videography</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-243\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Event-Management.jpg\" alt=\"Event Management\" width=\"68\" height=\"74\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-248\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Web-Development.jpg\" alt=\"Web Development\" width=\"73\" height=\"75\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-242\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Copywriting.jpg\" alt=\"Proof Reading\" width=\"63\" height=\"77\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-241\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Advertising-Booking.jpg\" alt=\"Advertising Booking\" width=\"66\" height=\"67\" /></strong></td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\">Event Management</td>\r\n<td style=\"text-align: center;\" width=\"154\">Website Development</td>\r\n<td style=\"text-align: center;\" width=\"154\">Proof Reading</td>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Advertising Bookings\r\n&amp; Management</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Terms &amp; Conditions Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nAll prices exclude GST and are shown in NZD. Travel for packages which include face to face meetings is included for a radius of up to 20km from Howick, any further kilometres will be charged at $0.74+GST.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"259\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"259\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"259\" admin_label=\"Call To Action - Contact\" title=\"Ready to take action?\" button_url=\"http://www.infinitymarketing.co.nz/contact/\" url_new_window=\"off\" button_text=\"Click here to contact us now\" use_background_color=\"off\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\nYour new future is waiting\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "WORK WITH US", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2016-03-20 22:06:54", "2016-03-20 09:06:54", "", "39", "http://www.infinitymarketing.co.nz/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("293", "1", "2016-03-20 22:12:51", "2016-03-20 09:12:51", "[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Contact Title\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Contact</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nInfinity Marketing is based in Howick, Auckland; New Zealand\r\n\r\n<span class=\"phone\"><strong>Phone:</strong> 021 159 1215\r\n</span><span class=\"email\"><strong>E-mail: </strong>candice@infinitymarketing.co.nz</span>\r\n\r\nOr complete the form below to email us:\r\n\r\n[/et_pb_text][et_pb_contact_form admin_label=\"Contact Form\" captcha=\"on\" email=\"contact@infinitymarketing.co.nz\" use_redirect=\"off\" success_message=\"Sent!\" input_border_radius=\"0\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_contact_field field_title=\"Name\" field_type=\"input\" field_id=\"Name\" required_mark=\"on\" fullwidth_field=\"off\"] [/et_pb_contact_field][et_pb_contact_field field_title=\"Email Address\" field_type=\"email\" field_id=\"Email\" required_mark=\"on\" fullwidth_field=\"off\"] [/et_pb_contact_field][et_pb_contact_field field_id=\"Phone Number\" field_title=\"Phone Number\" field_type=\"text\" required_mark=\"off\" fullwidth_field=\"on\" form_field_font_select=\"default\" form_field_font=\"||||\" use_border_color=\"off\" border_style=\"solid\" /][et_pb_contact_field field_title=\"Message\" field_type=\"text\" field_id=\"Message\" required_mark=\"on\"] [/et_pb_contact_field] [/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][/et_pb_row][/et_pb_section]", "CONTACT", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2016-03-20 22:12:51", "2016-03-20 09:12:51", "", "43", "http://www.infinitymarketing.co.nz/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("294", "1", "2016-03-20 22:13:32", "2016-03-20 09:13:32", "[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Contact Title\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Contact</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nInfinity Marketing is based in Howick, Auckland; New Zealand\r\n\r\n<span class=\"phone\"><strong>Phone:</strong> 021 159 1215\r\n</span><span class=\"email\"><strong>E-mail: </strong>candice@infinitymarketing.co.nz</span>\r\n\r\nOr complete the form below to email us:\r\n\r\n[/et_pb_text][et_pb_contact_form admin_label=\"Contact Form\" captcha=\"on\" email=\"contact@infinitymarketing.co.nz\" use_redirect=\"off\" success_message=\"Sent!\" input_border_radius=\"0\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_contact_field field_title=\"Name\" field_type=\"input\" field_id=\"Name\" required_mark=\"on\" fullwidth_field=\"off\"] [/et_pb_contact_field][et_pb_contact_field field_title=\"Email Address\" field_type=\"email\" field_id=\"Email\" required_mark=\"on\" fullwidth_field=\"off\"] [/et_pb_contact_field][et_pb_contact_field field_id=\"Phone Number\" field_title=\"Phone Number\" field_type=\"text\" required_mark=\"off\" fullwidth_field=\"off\" form_field_font_select=\"default\" form_field_font=\"||||\" use_border_color=\"off\" border_style=\"solid\"] [/et_pb_contact_field][et_pb_contact_field field_title=\"Message\" field_type=\"text\" field_id=\"Message\" required_mark=\"on\"] [/et_pb_contact_field] [/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][/et_pb_row][/et_pb_section]", "CONTACT", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2016-03-20 22:13:32", "2016-03-20 09:13:32", "", "43", "http://www.infinitymarketing.co.nz/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("295", "1", "2016-03-20 22:14:23", "2016-03-20 09:14:23", "[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Contact Title\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Contact</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nInfinity Marketing is based in Howick, Auckland; New Zealand\r\n\r\n<span class=\"phone\"><strong>Phone:</strong> 021 159 1215\r\n</span><span class=\"email\"><strong>E-mail: </strong>candice@infinitymarketing.co.nz</span>\r\n\r\nOr complete the form below to email us:\r\n\r\n[/et_pb_text][et_pb_contact_form admin_label=\"Contact Form\" captcha=\"on\" email=\"contact@infinitymarketing.co.nz\" use_redirect=\"off\" success_message=\"Sent!\" input_border_radius=\"0\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_contact_field field_title=\"Name\" field_type=\"input\" field_id=\"Name\" required_mark=\"on\" fullwidth_field=\"off\"] [/et_pb_contact_field][et_pb_contact_field field_title=\"Email Address\" field_type=\"email\" field_id=\"Email\" required_mark=\"on\" fullwidth_field=\"off\"] [/et_pb_contact_field][et_pb_contact_field field_id=\"Phone Number\" field_title=\"Phone Number\" field_type=\"input\" required_mark=\"off\" fullwidth_field=\"off\" form_field_font_select=\"default\" form_field_font=\"||||\" use_border_color=\"off\" border_style=\"solid\"] [/et_pb_contact_field][et_pb_contact_field field_title=\"Message\" field_type=\"text\" field_id=\"Message\" required_mark=\"on\"] [/et_pb_contact_field] [/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][/et_pb_row][/et_pb_section]", "CONTACT", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2016-03-20 22:14:23", "2016-03-20 09:14:23", "", "43", "http://www.infinitymarketing.co.nz/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("296", "1", "2016-03-20 22:15:48", "2016-03-20 09:15:48", "[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Contact Title\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Contact</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIf you have any questions, comments, feedback or even just to say hi, please contact us using any of the methods below and we will respond as soon as we can.\r\n\r\nInfinity Marketing is based in Howick, Auckland; New Zealand\r\n\r\n<span class=\"phone\"><strong>Phone:</strong> 021 159 1215\r\n</span><span class=\"email\"><strong>E-mail: </strong>candice@infinitymarketing.co.nz</span>\r\n\r\nOr complete the form below to email us:\r\n\r\n[/et_pb_text][et_pb_contact_form admin_label=\"Contact Form\" captcha=\"on\" email=\"contact@infinitymarketing.co.nz\" use_redirect=\"off\" success_message=\"Sent!\" input_border_radius=\"0\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_contact_field field_title=\"Name\" field_type=\"input\" field_id=\"Name\" required_mark=\"on\" fullwidth_field=\"off\"] [/et_pb_contact_field][et_pb_contact_field field_title=\"Email Address\" field_type=\"email\" field_id=\"Email\" required_mark=\"on\" fullwidth_field=\"off\"] [/et_pb_contact_field][et_pb_contact_field field_id=\"Phone Number\" field_title=\"Phone Number\" field_type=\"input\" required_mark=\"off\" fullwidth_field=\"off\" form_field_font_select=\"default\" form_field_font=\"||||\" use_border_color=\"off\" border_style=\"solid\"] [/et_pb_contact_field][et_pb_contact_field field_title=\"Message\" field_type=\"text\" field_id=\"Message\" required_mark=\"on\"] [/et_pb_contact_field] [/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][/et_pb_row][/et_pb_section]", "CONTACT", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2016-03-20 22:15:48", "2016-03-20 09:15:48", "", "43", "http://www.infinitymarketing.co.nz/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("297", "1", "2016-03-20 22:22:49", "2016-03-20 09:22:49", "[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Contact Title\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Contact</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/cropped-Candice-About_round.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" /][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIf you have any questions, comments, feedback or even just to say hi, please contact us using any of the methods below and we will respond as soon as we can.\r\n\r\nInfinity Marketing is based in Howick, Auckland; New Zealand\r\n\r\n<span class=\"phone\"><strong>Phone:</strong> 021 159 1215\r\n</span><span class=\"email\"><strong>E-mail: </strong>candice@infinitymarketing.co.nz</span>\r\n\r\nOr complete the form below to email us:\r\n\r\n[/et_pb_text][et_pb_contact_form admin_label=\"Contact Form\" captcha=\"on\" email=\"contact@infinitymarketing.co.nz\" use_redirect=\"off\" success_message=\"Sent!\" input_border_radius=\"0\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_contact_field field_title=\"Name\" field_type=\"input\" field_id=\"Name\" required_mark=\"on\" fullwidth_field=\"off\"] [/et_pb_contact_field][et_pb_contact_field field_title=\"Email Address\" field_type=\"email\" field_id=\"Email\" required_mark=\"on\" fullwidth_field=\"off\"] [/et_pb_contact_field][et_pb_contact_field field_id=\"Phone Number\" field_title=\"Phone Number\" field_type=\"input\" required_mark=\"off\" fullwidth_field=\"off\" form_field_font_select=\"default\" form_field_font=\"||||\" use_border_color=\"off\" border_style=\"solid\"] [/et_pb_contact_field][et_pb_contact_field field_title=\"Message\" field_type=\"text\" field_id=\"Message\" required_mark=\"on\"] [/et_pb_contact_field] [/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]", "CONTACT", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2016-03-20 22:22:49", "2016-03-20 09:22:49", "", "43", "http://www.infinitymarketing.co.nz/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("298", "1", "2016-03-20 22:25:12", "2016-03-20 09:25:12", "[et_pb_section admin_label=\"Impact Background\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice-Infinity-Marketing-Banner-.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Impact Text\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/discover-v2.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_signup admin_label=\"Email Optin\" provider=\"mailchimp\" mailchimp_list=\"4419f44e8e\" aweber_list=\"none\" use_background_color=\"on\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"left\" use_focus_border_color=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" title=\"Get practical marketing tips delivered straight to your inbox\" button_text=\"Sign me up!\" header_font=\"Open Sans||||\" header_font_size=\"22\" body_font=\"Open Sans||||\"] [/et_pb_signup][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"0px|||\"]\r\n<h2 style=\"text-align: center;\">Building your dream business can be overwhelming</h2>\r\n<h2 style=\"text-align: center;\">and how do you know what marketing works?</h2>\r\n<p style=\"text-align: center;\">In your small business, you tend to try and juggle it all. Infinity Marketing is here to help you\r\nwith marketing that suits your unique business, no matter which stage it is at.</p>\r\n<p style=\"text-align: center;\">We work together with you, to gain a thorough understanding of who your customers are,\r\nand where they are, to deliver the best marketing for your small business.</p>\r\n<p style=\"text-align: center;\">You might know exactly what your business needs to get the extra punch it requires,\r\nand need help with implementation of your marketing plan. Otherwise, you might\r\nbe starting out and need a guiding hand to identify what needs to be done for your business marketing.</p>\r\n<p style=\"text-align: center;\">Whatever stage you are at, we can help you take your business to the next level,\r\nwhere the possibilities are infinite.</p>\r\n<p style=\"text-align: center;\"><strong><a href=\"http://www.infinitymarketing.co.nz/work-with-us/\">Let\'s discover how we can make that happen for your business</a></strong></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#b3babf\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Connect CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Connect.jpg\" alt=\"Connect on Facebook\" show_in_lightbox=\"off\" url=\"http://www.facebook.com/infinitymarketing.co.nz\" url_new_window=\"on\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Services CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Services.jpg\" alt=\"View Services\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/work-with-us/\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Contact CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Contact.jpg\" alt=\"Contact us\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/contact/\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice-About_round.png\" alt=\"Candice Venter\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"About Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>About Candice</h2>\r\nCandice has has a passion for marketing for small businesses, having worked in both start up and large corporations, she has seen and done a lot. She has an absolute passion for helping small businesses grow through the power of marketing.\r\n\r\nAn expert in understanding who your customers are, understanding where they are and delivering messages that inspire action, Candice thrives on creating marketing that works.\r\n\r\nAbove all, she is passionate to help your business succeed.\r\n\r\n[/et_pb_text][et_pb_button admin_label=\"Read More Button\" button_url=\"http://www.infinitymarketing.co.nz/about/\" url_new_window=\"off\" button_text=\"Read More\" button_alignment=\"left\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#f9f9f9\" button_bg_color=\"#009edb\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon=\"%%28%%\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-us/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\">Discover the services we provide</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "HOME", "", "inherit", "closed", "closed", "", "37-revision-v1", "", "", "2016-03-20 22:25:12", "2016-03-20 09:25:12", "", "37", "http://www.infinitymarketing.co.nz/37-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("301", "1", "2016-03-21 13:37:54", "2016-03-21 00:37:54", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Us Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Work With Us</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Us Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">We offer a range of marketing services for your small business. Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.</p>\r\n<p style=\"text-align: center;\">We offer great monthly packages, which are fully customisable to suit your business needs; and one-off services.</p>\r\n<p style=\"text-align: center;\">All prices exclude GST and are shown in NZD.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Coaching Image\" show_in_lightbox=\"off\" url=\"#Coaching-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Coaching_sml.jpg\" alt=\"Coaching\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Hands-on Packages Image\" show_in_lightbox=\"off\" url=\"#Hands-on-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Hands-on_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Individual Services Image\" show_in_lightbox=\"off\" url=\"#Individual-Projects\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Individual-Projects_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Other Services Image\" show_in_lightbox=\"off\" url=\"#Other-Services\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Other-Services_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Coaching Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Coaching-Packages\"></a>Coaching Packages<a name=\"Coaching-Packages\"></a></h2>\r\n<h3>We coach, and you implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTRO Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTRO Package - $189</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTRO Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis is about getting the basics right. We look at your current activity, recognise what is working, recommend any improvements and establish a plan going forward. This may suit those who have already started marketing their business and need help to get more customers or get themselves on track.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Establish a top line plan to get you where you want to be</li>\r\n</ul>\r\nThis involves a 1 hour face-to-face (where possible) or skype session and you will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nThis package can be upgraded to the INITIATE package if you feel you would like to go into more detail and create an initial marketing plan.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTRO Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Intro-Candice-v3.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INITIATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INITIATE Package - $589</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INITIATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThe INITIATE package is about giving your marketing the huge push it needs, either when you first start your business or a little later down the track. This is a holistic approach, taking you from strategy, goals, and tactics through to implementation. This will provide a plan of action for the next year.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Explore your positioning and they key messages and selling points for your customers</li>\r\n	<li>Understand who your competitors are and what your point of difference is</li>\r\n	<li>Talk tactics on where to be present, identifying why and how to achieve this</li>\r\n	<li>Establish a plan for making your customers take action</li>\r\n	<li>Work together to formulate a marketing plan for the year</li>\r\n</ul>\r\nThis involves a 2 x 1.5 hour face-to-face (where possible) or skype sessions.  You will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nWe recommend you follow on to the INTEGRATE package as this package measures the effectiveness of your plan as implemented, and refines this on an ongoing basis.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INITIATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Initiate-Candice-v2.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTEGRATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTEGRATE Monthly Package - $289 per month</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTEGRATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n(3 month minimum)\r\n\r\nThis is a one on one session twice per month where together, we ensure your marketing is on track. We can utilise measurement techniques to assess the effectiveness of your strategies and keeping you on track to achieve the desired goals.\r\n\r\nWe meet via skype* twice per month to discuss your progress, any ideas or opportunities, and bounce ideas around. (*This can also be done in one longer face to face session if possible)\r\n\r\nThese sessions will help to keep on track with your marketing plan, and guide you throughout the year to meet and exceed your marketing and business goals. By measuring the effectiveness of current strategies, refinements can be effected to ensure your marketing continues to maximise results.\r\n\r\nSupport is available by e-mail, Facebook or reasonable phone support throughout the month if required.\r\n\r\nWe recommend you begin with the INTRO Package before commencing this INTEGRATE Package .\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTEGRATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Integrate-Candice-v2.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hands-on Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Hands-on-Packages\"></a>Hands-on Packages<a name=\"Hands-on-Packages\"></a></h2>\r\n<h3>We implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Custom\" currency=\"$\" per=\"month\" sum=\"?\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]We can design a custom package that suits the unique needs of your business.[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Incredible Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Incredible\" currency=\"$\" per=\"month\" sum=\"300\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]1 x Facebook / Instagram post content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\nMonthly e-mail newsletter\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Intermediate Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Intermediate\" currency=\"$\" per=\"month\" sum=\"600\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]2 x Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised  content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nFortnightly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Advanced Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Advanced\" currency=\"$\" per=\"month\" sum=\"900\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nWeekly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Expert Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Expert\" currency=\"$\" per=\"month\" sum=\"1500\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Twice weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n2 x Facebook cover content &amp; artwork\r\n\r\n2 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n2 x blog posts with search engine optimised\r\n\r\nPoint of sale content &amp; artwork\r\n\r\nManage media bookings/ad campaigns (Social Media/Google)\r\n\r\nWeekly e-mail newsletter\r\n\r\nWebsite updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Projects Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Individual-Projects\"></a>Individual Projects<a name=\"Individual-Projects\"></a></h2>\r\n<h3>We help you with a specific item of work</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Individual Projects Table\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nPrices below include effective marketing copy and design. We aim to turn the work around within a week, this will be confirmed at time of briefing.\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"234\">Brochures</td>\r\n<td width=\"95\"></td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          One sided flyer</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Double sided flyer</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Multi-page  DLE brochure</td>\r\n<td width=\"95\">$195</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Poster</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Point of sale</td>\r\n<td width=\"95\">$ P.O.A</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website Content (200 words)</td>\r\n<td width=\"95\">$89</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Blog (400-600 words)</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">E-mail Campaign</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Cover Photo &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Post artwork &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website content revamp  (indicative)</td>\r\n<td width=\"95\">$725</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Products Footer Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h4>If what you are looking for is not listed above, it does not necessarily mean we do not offer the service, <a href=\"http://www.infinitymarketing.co.nz/contact/\">please contact us for a quote.</a></h4>\r\nWe can provide quotes tailored to your specific project requirements.\r\n\r\nPrinting can be arranged and will be quoted separately. Photography and video options can be arranged and quoted for separately\r\n\r\nExcludes cost of stock images (if required). Any detailed artwork such as illustration or other will be quoted separately.\r\n\r\nPrices above include marketing copy and design and includes 2 revisions, further revisions will be quoted. Prices are available for content only options, proofing only options and design only options.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Other-Services\"></a>Other Services<a name=\"Other-Services\"></a></h2>\r\n<h3>We offer a number of other services - <a href=\"http://www.infinitymarketing.co.nz/contact/\">please contact us for a quote</a></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-244\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Graphic-Design.jpg\" alt=\"Graphic Design\" width=\"93\" height=\"76\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-246\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Printing.jpg\" alt=\"Printing\" width=\"77\" height=\"78\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-245\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Photography.jpg\" alt=\"Photography\" width=\"73\" height=\"60\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-247\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Video.jpg\" alt=\"Video\" width=\"68\" height=\"68\" /></strong></td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Graphic Design</p>\r\n</td>\r\n<td style=\"text-align: center;\" width=\"154\">Printing</td>\r\n<td style=\"text-align: center;\" width=\"154\">Photography</td>\r\n<td style=\"text-align: center;\" width=\"154\">Videography</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-243\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Event-Management.jpg\" alt=\"Event Management\" width=\"68\" height=\"74\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-248\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Web-Development.jpg\" alt=\"Web Development\" width=\"73\" height=\"75\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-242\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Copywriting.jpg\" alt=\"Proof Reading\" width=\"63\" height=\"77\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-241\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Advertising-Booking.jpg\" alt=\"Advertising Booking\" width=\"66\" height=\"67\" /></strong></td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\">Event Management</td>\r\n<td style=\"text-align: center;\" width=\"154\">Website Development</td>\r\n<td style=\"text-align: center;\" width=\"154\">Proof Reading</td>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Advertising Bookings\r\n&amp; Management</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Terms &amp; Conditions Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nAll prices exclude GST and are shown in NZD. Travel for packages which include face to face meetings is included for a radius of up to 20km from Howick, any further kilometres will be charged at $0.74+GST.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"259\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"259\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"259\" admin_label=\"Call To Action - Contact\" title=\"Ready to take action?\" button_url=\"http://www.infinitymarketing.co.nz/contact/\" url_new_window=\"off\" button_text=\"Click here to contact us now\" use_background_color=\"off\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\nYour new future is waiting\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "WORK WITH US", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2016-03-21 13:37:54", "2016-03-21 00:37:54", "", "39", "http://www.infinitymarketing.co.nz/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("300", "1", "2016-03-20 22:33:36", "2016-03-20 09:33:36", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Us Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Work With Us</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Us Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">We offer a range of marketing services for your small business. Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.</p>\r\n<p style=\"text-align: center;\">We offer great monthly packages, which are fully customisable to suit your business needs; and one-off services.</p>\r\n<p style=\"text-align: center;\">All prices exclude GST and are shown in NZD.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Coaching Image\" show_in_lightbox=\"off\" url=\"#Coaching-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Coaching_sml.jpg\" alt=\"Coaching\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Hands-on Packages Image\" show_in_lightbox=\"off\" url=\"#Hands-on-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Hands-on_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Individual Services Image\" show_in_lightbox=\"off\" url=\"#Individual-Projects\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Individual-Projects_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Other Services Image\" show_in_lightbox=\"off\" url=\"#Other-Services\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Other-Services_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Coaching Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Coaching-Packages\"></a>Coaching Packages<a name=\"Coaching-Packages\"></a></h2>\r\n<h3>We coach, and you implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTRO Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTRO Package - $189</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTRO Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis is about getting the basics right. We look at your current activity, recognise what is working, recommend any improvements and establish a plan going forward. This may suit those who have already started marketing their business and need help to get more customers or get themselves on track.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Establish a top line plan to get you where you want to be</li>\r\n</ul>\r\nThis involves a 1 hour face-to-face (where possible) or skype session and you will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nThis package can be upgraded to the INITIATE package if you feel you would like to go into more detail and create an initial marketing plan.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTRO Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Intro-Candice-v3.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INITIATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INITIATE Package - $589</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INITIATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThe INITIATE package is about giving your marketing the huge push it needs, either when you first start your business or a little later down the track. This is a holistic approach, taking you from strategy, goals, and tactics through to implementation. This will provide a plan of action for the next year.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Explore your positioning and they key messages and selling points for your customers</li>\r\n	<li>Understand who your competitors are and what your point of difference is</li>\r\n	<li>Talk tactics on where to be present, identifying why and how to achieve this</li>\r\n	<li>Establish a plan for making your customers take action</li>\r\n	<li>Work together to formulate a marketing plan for the year</li>\r\n</ul>\r\nThis involves a 2 x 1.5 hour face-to-face (where possible) or skype sessions.  You will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nWe recommend you follow on to the INTEGRATE package as this package measures the effectiveness of your plan as implemented, and refines this on an ongoing basis.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INITIATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Initiate-Candice-v2.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTEGRATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTEGRATE Monthly Package - $289 per month</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTEGRATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n(3 month minimum)\r\n\r\nThis is a one on one session twice per month where together, we ensure your marketing is on track. We can utilise measurement techniques to assess the effectiveness of your strategies and keeping you on track to achieve the desired goals.\r\n\r\nWe meet via skype* twice per month to discuss your progress, any ideas or opportunities, and bounce ideas around. (*This can also be done in one longer face to face session if possible)\r\n\r\nThese sessions will help to keep on track with your marketing plan, and guide you throughout the year to meet and exceed your marketing and business goals. By measuring the effectiveness of current strategies, refinements can be effected to ensure your marketing continues to maximise results.\r\n\r\nSupport is available by e-mail, Facebook or reasonable phone support throughout the month if required.\r\n\r\nWe recommend you begin with the INTRO Package before commencing this INTEGRATE Package .\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTEGRATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Integrate-Candice-v2.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hands-on Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Hands-on-Packages\"></a>Hands-on Packages<a name=\"Hands-on-Packages\"></a></h2>\r\n<h3>We implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Custom\" currency=\"$\" per=\"month\" sum=\"?\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]We can design a custom package that suits the unique needs of your business.[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Incredible Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Incredible\" currency=\"$\" per=\"month\" sum=\"300\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]1 x Facebook / Instagram post content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\nMonthly e-mail newsletter\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Intermediate Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Intermediate\" currency=\"$\" per=\"month\" sum=\"600\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]2 x Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised  content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nFortnightly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Advanced Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Advanced\" currency=\"$\" per=\"month\" sum=\"900\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nWeekly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Expert Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Expert\" currency=\"$\" per=\"month\" sum=\"1500\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Twice weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n2 x Facebook cover content &amp; artwork\r\n\r\n2 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n2 x blog posts with search engine optimised\r\n\r\nPoint of sale content &amp; artwork\r\n\r\nManage media bookings/ad campaigns (Social Media/Google)\r\n\r\nWeekly e-mail newsletter\r\n\r\nWebsite updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Projects Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Individual-Projects\"></a>Individual Projects<a name=\"Individual-Projects\"></a></h2>\r\n<h3>We help you with a specific item of work</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Individual Projects Table\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nPrices below include effective marketing copy and design.\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"234\">Brochures</td>\r\n<td width=\"95\"></td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          One sided flyer</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Double sided flyer</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Multi-page  DLE brochure</td>\r\n<td width=\"95\">$195</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Poster</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Point of sale</td>\r\n<td width=\"95\">$ P.O.A</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website Content (200 words)</td>\r\n<td width=\"95\">$89</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Blog (400-600 words)</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">E-mail Campaign</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Cover Photo &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Post artwork &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website content revamp  (indicative)</td>\r\n<td width=\"95\">$725</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Products Footer Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h4>If what you are looking for is not listed above, it does not necessarily mean we do not offer the service, <a href=\"http://www.infinitymarketing.co.nz/contact/\">please contact us for a quote.</a></h4>\r\nWe can provide quotes tailored to your specific project requirements.\r\n\r\nPrinting can be arranged and will be quoted separately. Photography and video options can be arranged and quoted for separately\r\n\r\nExcludes cost of stock images (if required). Any detailed artwork such as illustration or other will be quoted separately.\r\n\r\nPrices above include marketing copy and design and includes 2 revisions, further revisions will be quoted. Prices are available for content only options, proofing only options and design only options.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Other-Services\"></a>Other Services<a name=\"Other-Services\"></a></h2>\r\n<h3>We offer a number of other services - <a href=\"http://www.infinitymarketing.co.nz/contact/\">please contact us for a quote</a></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-244\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Graphic-Design.jpg\" alt=\"Graphic Design\" width=\"93\" height=\"76\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-246\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Printing.jpg\" alt=\"Printing\" width=\"77\" height=\"78\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-245\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Photography.jpg\" alt=\"Photography\" width=\"73\" height=\"60\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-247\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Video.jpg\" alt=\"Video\" width=\"68\" height=\"68\" /></strong></td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Graphic Design</p>\r\n</td>\r\n<td style=\"text-align: center;\" width=\"154\">Printing</td>\r\n<td style=\"text-align: center;\" width=\"154\">Photography</td>\r\n<td style=\"text-align: center;\" width=\"154\">Videography</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-243\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Event-Management.jpg\" alt=\"Event Management\" width=\"68\" height=\"74\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-248\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Web-Development.jpg\" alt=\"Web Development\" width=\"73\" height=\"75\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-242\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Copywriting.jpg\" alt=\"Proof Reading\" width=\"63\" height=\"77\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-241\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Advertising-Booking.jpg\" alt=\"Advertising Booking\" width=\"66\" height=\"67\" /></strong></td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\">Event Management</td>\r\n<td style=\"text-align: center;\" width=\"154\">Website Development</td>\r\n<td style=\"text-align: center;\" width=\"154\">Proof Reading</td>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Advertising Bookings\r\n&amp; Management</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Terms &amp; Conditions Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nAll prices exclude GST and are shown in NZD. Travel for packages which include face to face meetings is included for a radius of up to 20km from Howick, any further kilometres will be charged at $0.74+GST.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"259\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"259\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"259\" admin_label=\"Call To Action - Contact\" title=\"Ready to take action?\" button_url=\"http://www.infinitymarketing.co.nz/contact/\" url_new_window=\"off\" button_text=\"Click here to contact us now\" use_background_color=\"off\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\nYour new future is waiting\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "WORK WITH US", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2016-03-20 22:33:36", "2016-03-20 09:33:36", "", "39", "http://www.infinitymarketing.co.nz/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("299", "1", "2016-03-20 22:26:41", "2016-03-20 09:26:41", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Us Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Work With Us</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Us Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">We offer a range of marketing services for your small business. Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.</p>\r\n<p style=\"text-align: center;\">We offer great monthly packages, which are fully customisable to suit your business needs; and one-off services.</p>\r\n<p style=\"text-align: center;\">All prices exclude GST and are shown in NZD.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Coaching Image\" show_in_lightbox=\"off\" url=\"#Coaching-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Coaching_sml.jpg\" alt=\"Coaching\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Hands-on Packages Image\" show_in_lightbox=\"off\" url=\"#Hands-on-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Hands-on_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Individual Services Image\" show_in_lightbox=\"off\" url=\"#Individual-Projects\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Individual-Projects_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Other Services Image\" show_in_lightbox=\"off\" url=\"#Other-Services\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Other-Services_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Coaching Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Coaching-Packages\"></a>Coaching Packages<a name=\"Coaching-Packages\"></a></h2>\r\n<h3>We coach, and you implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTRO Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTRO Package - $189</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTRO Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis is about getting the basics right. We look at your current activity, recognise what is working, recommend any improvements and establish a plan going forward. This may suit those who have already started marketing their business and need help to get more customers or get themselves on track.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Establish a top line plan to get you where you want to be</li>\r\n</ul>\r\nThis involves a 1 hour face-to-face (where possible) or skype session and you will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nThis package can be upgraded to the INITIATE package if you feel you would like to go into more detail and create an initial marketing plan.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTRO Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Intro-Candice-v3.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INITIATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INITIATE Package - $589</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INITIATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThe INITIATE package is about giving your marketing the huge push it needs, either when you first start your business or a little later down the track. This is a holistic approach, taking you from strategy, goals, and tactics through to implementation. This will provide a plan of action for the next year.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Explore your positioning and they key messages and selling points for your customers</li>\r\n	<li>Understand who your competitors are and what your point of difference is</li>\r\n	<li>Talk tactics on where to be present, identifying why and how to achieve this</li>\r\n	<li>Establish a plan for making your customers take action</li>\r\n	<li>Work together to formulate a marketing plan for the year</li>\r\n</ul>\r\nThis involves a 2 x 1.5 hour face-to-face (where possible) or skype sessions.  You will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nWe recommend you follow on to the INTEGRATE package as this package measures the effectiveness of your plan as implemented, and refines this on an ongoing basis.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INITIATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Initiate-Candice-v2.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTEGRATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTEGRATE Monthly Package - $289 per month</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTEGRATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n(3 month minimum)\r\n\r\nThis is a one on one session twice per month where together, we ensure your marketing is on track. We can utilise measurement techniques to assess the effectiveness of your strategies and keeping you on track to achieve the desired goals.\r\n\r\nWe meet via skype* twice per month to discuss your progress, any ideas or opportunities, and bounce ideas around. (*This can also be done in one longer face to face session if possible)\r\n\r\nThese sessions will help to keep on track with your marketing plan, and guide you throughout the year to meet and exceed your marketing and business goals. By measuring the effectiveness of current strategies, refinements can be effected to ensure your marketing continues to maximise results.\r\n\r\nSupport is available by e-mail, Facebook or reasonable phone support throughout the month if required.\r\n\r\nWe recommend you begin with the INTRO Package before commencing this INTEGRATE Package .\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTEGRATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Integrate-Candice-v2.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hands-on Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Hands-on-Packages\"></a>Hands-on Packages<a name=\"Hands-on-Packages\"></a></h2>\r\n<h3>We implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Custom\" currency=\"$\" per=\"month\" sum=\"?\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]We can design a custom package that suits the unique needs of your business.[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Incredible Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Incredible\" currency=\"$\" per=\"month\" sum=\"300\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]1 x Facebook / Instagram post content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\nMonthly e-mail newsletter\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Intermediate Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Intermediate\" currency=\"$\" per=\"month\" sum=\"600\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]2 x Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised  content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nFortnightly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Advanced Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Advanced\" currency=\"$\" per=\"month\" sum=\"900\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nWeekly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Expert Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Expert\" currency=\"$\" per=\"month\" sum=\"1500\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Twice weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n2 x Facebook cover content &amp; artwork\r\n\r\n2 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n2 x blog posts with search engine optimised\r\n\r\nPoint of sale content &amp; artwork\r\n\r\nManage media bookings/ad campaigns (Social Media/Google)\r\n\r\nWeekly e-mail newsletter\r\n\r\nWebsite updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Projects Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Individual-Projects\"></a>Individual Projects<a name=\"Individual-Projects\"></a></h2>\r\n<h3>We help you with a specific item of work</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Individual Projects Table\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nPrices below include effective marketing copy and design.\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"234\">Brochures</td>\r\n<td width=\"95\"></td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          One sided flyer</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Double sided flyer</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Multi-page  DLE brochure</td>\r\n<td width=\"95\">$195</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Poster</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Point of sale</td>\r\n<td width=\"95\">$ P.O.A</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website Content (200 words)</td>\r\n<td width=\"95\">$89</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Blog (400-600 words)</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">E-mail Campaign</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Cover Photo &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Post artwork &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website content revamp  (indicative)</td>\r\n<td width=\"95\">$725</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Products Footer Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h4>If what you are looking for is not listed above, it does not necessarily mean we do not offer the service, please <a href=\"http://www.infinitymarketing.co.nz/contact/\">contact us</a> for a quote.</h4>\r\nWe can provide quotes tailored to your specific project requirements.\r\n\r\nPrinting can be arranged and will be quoted separately. Photography and video options can be arranged and quoted for separately\r\n\r\nExcludes cost of stock images (if required). Any detailed artwork such as illustration or other will be quoted separately.\r\n\r\nPrices above include marketing copy and design and includes 2 revisions, further revisions will be quoted. Prices are available for content only options, proofing only options and design only options.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Other-Services\"></a>Other Services<a name=\"Other-Services\"></a></h2>\r\n<h3>We offer a number of other services - please contact us for a quote</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-244\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Graphic-Design.jpg\" alt=\"Graphic Design\" width=\"93\" height=\"76\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-246\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Printing.jpg\" alt=\"Printing\" width=\"77\" height=\"78\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-245\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Photography.jpg\" alt=\"Photography\" width=\"73\" height=\"60\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-247\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Video.jpg\" alt=\"Video\" width=\"68\" height=\"68\" /></strong></td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Graphic Design</p>\r\n</td>\r\n<td style=\"text-align: center;\" width=\"154\">Printing</td>\r\n<td style=\"text-align: center;\" width=\"154\">Photography</td>\r\n<td style=\"text-align: center;\" width=\"154\">Videography</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-243\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Event-Management.jpg\" alt=\"Event Management\" width=\"68\" height=\"74\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-248\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Web-Development.jpg\" alt=\"Web Development\" width=\"73\" height=\"75\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-242\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Copywriting.jpg\" alt=\"Proof Reading\" width=\"63\" height=\"77\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-241\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Advertising-Booking.jpg\" alt=\"Advertising Booking\" width=\"66\" height=\"67\" /></strong></td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\">Event Management</td>\r\n<td style=\"text-align: center;\" width=\"154\">Website Development</td>\r\n<td style=\"text-align: center;\" width=\"154\">Proof Reading</td>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Advertising Bookings\r\n&amp; Management</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Terms &amp; Conditions Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nAll prices exclude GST and are shown in NZD. Travel for packages which include face to face meetings is included for a radius of up to 20km from Howick, any further kilometres will be charged at $0.74+GST.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"259\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"259\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"259\" admin_label=\"Call To Action - Contact\" title=\"Ready to take action?\" button_url=\"http://www.infinitymarketing.co.nz/contact/\" url_new_window=\"off\" button_text=\"Click here to contact us now\" use_background_color=\"off\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\nYour new future is waiting\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "WORK WITH US", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2016-03-20 22:26:41", "2016-03-20 09:26:41", "", "39", "http://www.infinitymarketing.co.nz/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("302", "1", "2016-03-21 14:10:03", "2016-03-21 01:10:03", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Us Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Work With Us</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Us Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">We offer a range of marketing services for your small business. Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.</p>\r\n<p style=\"text-align: center;\">We offer great monthly packages, which are fully customisable to suit your business needs; and one-off services.</p>\r\n<p style=\"text-align: center;\">All prices exclude GST and are shown in NZD.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Coaching Image\" show_in_lightbox=\"off\" url=\"#Coaching-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Coaching_sml.jpg\" alt=\"Coaching\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Hands-on Packages Image\" show_in_lightbox=\"off\" url=\"#Hands-on-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Hands-on_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Individual Services Image\" show_in_lightbox=\"off\" url=\"#Individual-Projects\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Individual-Projects_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Other Services Image\" show_in_lightbox=\"off\" url=\"#Other-Services\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Other-Services_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Coaching Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Coaching-Packages\"></a>Coaching Packages<a name=\"Coaching-Packages\"></a></h2>\r\n<h3>We coach, and you implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTRO Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTRO Package - $189</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTRO Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis is about getting the basics right. We look at your current activity, recognise what is working, recommend any improvements and establish a plan going forward. This may suit those who have already started marketing their business and need help to get more customers or get themselves on track.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Establish a top line plan to get you where you want to be</li>\r\n</ul>\r\nThis involves a 1 hour face-to-face (where possible) or skype session and you will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nThis package can be upgraded to the INITIATE package if you feel you would like to go into more detail and create an initial marketing plan.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTRO Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Intro-Candice-v3.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=V46576J27YZG4\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INITIATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INITIATE Package - $589</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INITIATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThe INITIATE package is about giving your marketing the huge push it needs, either when you first start your business or a little later down the track. This is a holistic approach, taking you from strategy, goals, and tactics through to implementation. This will provide a plan of action for the next year.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Explore your positioning and they key messages and selling points for your customers</li>\r\n	<li>Understand who your competitors are and what your point of difference is</li>\r\n	<li>Talk tactics on where to be present, identifying why and how to achieve this</li>\r\n	<li>Establish a plan for making your customers take action</li>\r\n	<li>Work together to formulate a marketing plan for the year</li>\r\n</ul>\r\nThis involves a 2 x 1.5 hour face-to-face (where possible) or skype sessions.  You will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nWe recommend you follow on to the INTEGRATE package as this package measures the effectiveness of your plan as implemented, and refines this on an ongoing basis.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INITIATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Initiate-Candice-v2.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=W9P8XUK654W6G\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTEGRATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTEGRATE Monthly Package - $289 per month</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTEGRATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n(3 month minimum)\r\n\r\nThis is a one on one session twice per month where together, we ensure your marketing is on track. We can utilise measurement techniques to assess the effectiveness of your strategies and keeping you on track to achieve the desired goals.\r\n\r\nWe meet via skype* twice per month to discuss your progress, any ideas or opportunities, and bounce ideas around. (*This can also be done in one longer face to face session if possible)\r\n\r\nThese sessions will help to keep on track with your marketing plan, and guide you throughout the year to meet and exceed your marketing and business goals. By measuring the effectiveness of current strategies, refinements can be effected to ensure your marketing continues to maximise results.\r\n\r\nSupport is available by e-mail, Facebook or reasonable phone support throughout the month if required.\r\n\r\nWe recommend you begin with the INTRO Package before commencing this INTEGRATE Package .\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTEGRATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Integrate-Candice-v2.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=PN7JHBND8QBFJ\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hands-on Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Hands-on-Packages\"></a>Hands-on Packages<a name=\"Hands-on-Packages\"></a></h2>\r\n<h3>We implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Custom\" currency=\"$\" per=\"month\" sum=\"?\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]We can design a custom package that suits the unique needs of your business.[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Incredible Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Incredible\" currency=\"$\" per=\"month\" sum=\"300\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]1 x Facebook / Instagram post content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\nMonthly e-mail newsletter\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=GXECEYG2YK63W\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Intermediate Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Intermediate\" currency=\"$\" per=\"month\" sum=\"600\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]2 x Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised  content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nFortnightly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=NGKPUYHNBB62Y\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Advanced Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Advanced\" currency=\"$\" per=\"month\" sum=\"900\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nWeekly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=BLCK98JX9N83J\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Expert Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Expert\" currency=\"$\" per=\"month\" sum=\"1500\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Twice weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n2 x Facebook cover content &amp; artwork\r\n\r\n2 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n2 x blog posts with search engine optimised\r\n\r\nPoint of sale content &amp; artwork\r\n\r\nManage media bookings/ad campaigns (Social Media/Google)\r\n\r\nWeekly e-mail newsletter\r\n\r\nWebsite updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=9SKCDXVSUANKN\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Projects Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Individual-Projects\"></a>Individual Projects<a name=\"Individual-Projects\"></a></h2>\r\n<h3>We help you with a specific item of work</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Individual Projects Table\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nPrices below include effective marketing copy and design. We aim to turn the work around within a week, this will be confirmed at time of briefing.\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"234\">Brochures</td>\r\n<td width=\"95\"></td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          One sided flyer</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Double sided flyer</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Multi-page  DLE brochure</td>\r\n<td width=\"95\">$195</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Poster</td>\r\n<td width=\"95\">$100</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Point of sale</td>\r\n<td width=\"95\">$ P.O.A</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website Content (200 words)</td>\r\n<td width=\"95\">$89</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Blog (400-600 words)</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">E-mail Campaign</td>\r\n<td width=\"95\">$150</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Cover Photo &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Post artwork &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website content revamp  (indicative)</td>\r\n<td width=\"95\">$725</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Products Footer Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h4>If what you are looking for is not listed above, it does not necessarily mean we do not offer the service, <a href=\"http://www.infinitymarketing.co.nz/contact/\">please contact us for a quote.</a></h4>\r\nWe can provide quotes tailored to your specific project requirements.\r\n\r\nPrinting can be arranged and will be quoted separately. Photography and video options can be arranged and quoted for separately\r\n\r\nExcludes cost of stock images (if required). Any detailed artwork such as illustration or other will be quoted separately.\r\n\r\nPrices above include marketing copy and design and includes 2 revisions, further revisions will be quoted. Prices are available for content only options, proofing only options and design only options.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Other-Services\"></a>Other Services<a name=\"Other-Services\"></a></h2>\r\n<h3>We offer a number of other services - <a href=\"http://www.infinitymarketing.co.nz/contact/\">please contact us for a quote</a></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-244\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Graphic-Design.jpg\" alt=\"Graphic Design\" width=\"93\" height=\"76\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-246\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Printing.jpg\" alt=\"Printing\" width=\"77\" height=\"78\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-245\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Photography.jpg\" alt=\"Photography\" width=\"73\" height=\"60\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-247\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Video.jpg\" alt=\"Video\" width=\"68\" height=\"68\" /></strong></td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Graphic Design</p>\r\n</td>\r\n<td style=\"text-align: center;\" width=\"154\">Printing</td>\r\n<td style=\"text-align: center;\" width=\"154\">Photography</td>\r\n<td style=\"text-align: center;\" width=\"154\">Videography</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-243\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Event-Management.jpg\" alt=\"Event Management\" width=\"68\" height=\"74\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-248\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Web-Development.jpg\" alt=\"Web Development\" width=\"73\" height=\"75\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-242\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Copywriting.jpg\" alt=\"Proof Reading\" width=\"63\" height=\"77\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-241\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Advertising-Booking.jpg\" alt=\"Advertising Booking\" width=\"66\" height=\"67\" /></strong></td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\">Event Management</td>\r\n<td style=\"text-align: center;\" width=\"154\">Website Development</td>\r\n<td style=\"text-align: center;\" width=\"154\">Proof Reading</td>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Advertising Bookings\r\n&amp; Management</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Terms &amp; Conditions Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nAll prices exclude GST and are shown in NZD. Travel for packages which include face to face meetings is included for a radius of up to 20km from Howick, any further kilometres will be charged at $0.74+GST.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"259\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"259\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"259\" admin_label=\"Call To Action - Contact\" title=\"Ready to take action?\" button_url=\"http://www.infinitymarketing.co.nz/contact/\" url_new_window=\"off\" button_text=\"Click here to contact us now\" use_background_color=\"off\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\nYour new future is waiting\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "WORK WITH US", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2016-03-21 14:10:03", "2016-03-21 01:10:03", "", "39", "http://www.infinitymarketing.co.nz/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("441", "1", "2016-04-29 16:48:21", "2016-04-29 04:48:21", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"PROJECTS Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">PROJECTS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Projects Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Individual-Projects\"></a>Individual Projects<a name=\"Individual-Projects\"></a></h2>\r\n<h3>We can help you with a specific item of work</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Projects Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: left;\">We are happy to help you with your <strong>one-off project needs</strong>.</p>\r\n<p style=\"text-align: left;\">There are a range of ways we can help you: <strong>Marketing and Design</strong> services, <strong>Marketing only</strong> services, <strong>Design only</strong> services, or we can <strong>work to whatever you need.</strong> Ideal if you need something different each time,<strong> without the on-going commitment.</strong></p>\r\n<p style=\"text-align: left;\">We work to your brief, or can even help you come up with the brief. Everything is <strong>fully customisable to suit your business needs</strong>; and on a <strong>one-off basis</strong>. <a href=\"http://www.infinitymarketing.co.nz/contact/\"><strong>Contact us to discuss your requirements and get a quote.</strong> </a></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Projects Table - no pricing\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"234\">Brochures</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          One sided flyer</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Double sided flyer</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Multi-page  DLE brochure</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Poster</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Point of sale</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website Content (200 words)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Blog (400-600 words)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">E-mail Campaign</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">E-mail Template</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Cover Photo &amp; content</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Post Artwork &amp; content</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website Content Revamp</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website Development</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Corporate Identity &amp; Branding</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Products Footer Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h4>If what you are looking for is not listed above, it does not necessarily mean we do not offer the service, <a href=\"http://www.infinitymarketing.co.nz/contact/\">please contact us for a quote.</a></h4>\r\nWe can provide quotes tailored to your specific project requirements.\r\n\r\nPrinting can be arranged and will be quoted separately. Photography and video options can be arranged and quoted for separately.\r\n\r\nWhen quoting - we will usually provide prices that include marketing copy and design and includes 2 revisions, further revisions will be quoted. Prices are available for content only options, proofing only options and design only options. Please let us know what you would like.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"414\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"414\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text global_parent=\"414\" admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>We also provide the following services</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row global_parent=\"414\" admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb global_parent=\"414\" admin_label=\"Coaching Blurb\" title=\"Coaching\" url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne on One coaching and consulting services, either as a one-off service or on an on-going basis. Helping you get your marketing on track, and stay on track.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb global_parent=\"414\" admin_label=\"Marketing Services Blurb\" title=\"Marketing Services\" url=\"www.infinitymarketing.co.nz/marketing-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">Ongoing Marketing Services ensures your marketing happens like clock-work. The wheels keep churning, and your marketing keeps working for you.</p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb global_parent=\"414\" admin_label=\"Other Services Blurb\" title=\"Other Services\" url=\"www.infinitymarketing.co.nz/other-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%171%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe aim to provide all your marketing needs in one place, and work with specialists in order to do this. No need to find alternative suppliers, we can help you.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"259\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"259\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"259\" admin_label=\"Call To Action - Contact\" title=\"Ready to take action?\" button_url=\"http://www.infinitymarketing.co.nz/contact/\" url_new_window=\"off\" button_text=\"Click here to contact us now\" use_background_color=\"off\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\nYour new future is waiting\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "PROJECTS", "", "inherit", "closed", "closed", "", "343-revision-v1", "", "", "2016-04-29 16:48:21", "2016-04-29 04:48:21", "", "343", "http://www.infinitymarketing.co.nz/343-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("303", "1", "2016-03-23 23:54:24", "2016-03-23 10:54:24", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Us Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Work With Us</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Us Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">We offer a range of marketing services for your small business. Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.</p>\r\n<p style=\"text-align: center;\">We offer great monthly packages, which are fully customisable to suit your business needs; and one-off services.</p>\r\n<p style=\"text-align: center;\">All prices exclude GST and are shown in NZD.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Coaching Image\" show_in_lightbox=\"off\" url=\"#Coaching-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Coaching_sml.jpg\" alt=\"Coaching\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Hands-on Packages Image\" show_in_lightbox=\"off\" url=\"#Hands-on-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Hands-on_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Individual Services Image\" show_in_lightbox=\"off\" url=\"#Individual-Projects\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Individual-Projects_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Other Services Image\" show_in_lightbox=\"off\" url=\"#Other-Services\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Other-Services_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Coaching Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Coaching-Packages\"></a>Coaching Packages<a name=\"Coaching-Packages\"></a></h2>\r\n<h3>We coach, and you implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTRO Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTRO Package - $189</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTRO Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis is about getting the basics right. We look at your current activity, recognise what is working, recommend any improvements and establish a plan going forward. This may suit those who have already started marketing their business and need help to get more customers or get themselves on track.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Establish a top line plan to get you where you want to be</li>\r\n</ul>\r\nThis involves a 1 hour face-to-face (where possible) or skype session and you will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nThis package can be upgraded to the INITIATE package if you feel you would like to go into more detail and create an initial marketing plan.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTRO Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Intro-Candice-v3.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=V46576J27YZG4\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INITIATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INITIATE Package - $589</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INITIATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThe INITIATE package is about giving your marketing the huge push it needs, either when you first start your business or a little later down the track. This is a holistic approach, taking you from strategy, goals, and tactics through to implementation. This will provide a plan of action for the next year.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Explore your positioning and they key messages and selling points for your customers</li>\r\n	<li>Understand who your competitors are and what your point of difference is</li>\r\n	<li>Talk tactics on where to be present, identifying why and how to achieve this</li>\r\n	<li>Establish a plan for making your customers take action</li>\r\n	<li>Work together to formulate a marketing plan for the year</li>\r\n</ul>\r\nThis involves a 2 x 1.5 hour face-to-face (where possible) or skype sessions.  You will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nWe recommend you follow on to the INTEGRATE package as this package measures the effectiveness of your plan as implemented, and refines this on an ongoing basis.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INITIATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Initiate-Candice-v2.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=W9P8XUK654W6G\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTEGRATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTEGRATE Monthly Package - $289 per month</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTEGRATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n(3 month minimum)\r\n\r\nThis is a one on one session twice per month where together, we ensure your marketing is on track. We can utilise measurement techniques to assess the effectiveness of your strategies and keeping you on track to achieve the desired goals.\r\n\r\nWe meet via skype* twice per month to discuss your progress, any ideas or opportunities, and bounce ideas around. (*This can also be done in one longer face to face session if possible)\r\n\r\nThese sessions will help to keep on track with your marketing plan, and guide you throughout the year to meet and exceed your marketing and business goals. By measuring the effectiveness of current strategies, refinements can be effected to ensure your marketing continues to maximise results.\r\n\r\nSupport is available by e-mail, Facebook or reasonable phone support throughout the month if required.\r\n\r\nWe recommend you begin with the INTRO Package before commencing this INTEGRATE Package .\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTEGRATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Integrate-Candice-v2.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=PN7JHBND8QBFJ\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hands-on Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Hands-on-Packages\"></a>Hands-on Packages<a name=\"Hands-on-Packages\"></a></h2>\r\n<h3>We implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Custom\" currency=\"$\" per=\"month\" sum=\"?\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]We can design a custom package that suits the unique needs of your business.[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Incredible Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Incredible\" currency=\"$\" per=\"month\" sum=\"300\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]1 x Facebook / Instagram post content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\nMonthly e-mail newsletter\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=GXECEYG2YK63W\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Intermediate Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Intermediate\" currency=\"$\" per=\"month\" sum=\"600\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]2 x Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised  content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nFortnightly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=NGKPUYHNBB62Y\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Advanced Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Advanced\" currency=\"$\" per=\"month\" sum=\"900\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nWeekly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=BLCK98JX9N83J\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Expert Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Expert\" currency=\"$\" per=\"month\" sum=\"1500\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Twice weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n2 x Facebook cover content &amp; artwork\r\n\r\n2 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n2 x blog posts with search engine optimised\r\n\r\nPoint of sale content &amp; artwork\r\n\r\nManage media bookings/ad campaigns (Social Media/Google)\r\n\r\nWeekly e-mail newsletter\r\n\r\nWebsite updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=9SKCDXVSUANKN\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Projects Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Individual-Projects\"></a>Individual Projects<a name=\"Individual-Projects\"></a></h2>\r\n<h3>We help you with a specific item of work</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Individual Projects Table\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"234\">Brochures</td>\r\n<td width=\"95\">&nbsp;</td>\r\n<td width=\"95\">&nbsp;</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          One sided flyer</td>\r\n<td width=\"95\">$100</td>\r\n<td width=\"95\">[button link=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=7MTEMEKPRRFAL\"] Buy Now[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Double sided flyer</td>\r\n<td width=\"95\">$150</td>\r\n<td width=\"95\">[button link=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=6D7UM34WXWEPJ\"] Buy Now[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Multi-page  DLE brochure</td>\r\n<td width=\"95\">$195</td>\r\n<td width=\"95\">[button link=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=Y5L9R8DF4KNFN\"] Buy Now[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Poster</td>\r\n<td width=\"95\">$100</td>\r\n<td width=\"95\">[button link=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=RXE6FW58ECAHS\"] Buy Now[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Point of sale</td>\r\n<td width=\"95\">$ P.O.A</td>\r\n<td width=\"95\">[button link=\"http://www.infinitymarketing.co.nz/contact/\"] Enquire[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website Content (200 words)</td>\r\n<td width=\"95\">$89</td>\r\n<td width=\"95\">[button link=\" https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=JVDVKH35P6GJ2\"] Buy Now[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Blog (400-600 words)</td>\r\n<td width=\"95\">$150</td>\r\n<td width=\"95\">[button link=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=3W7ZX86E7ABR6\"] Buy Now[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">E-mail Campaign</td>\r\n<td width=\"95\">$150</td>\r\n<td width=\"95\">[button link=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=9883VE784CLCN\"] Buy Now[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Cover Photo &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n<td width=\"95\">[button link=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=2WNJAJE85S2TY\"] Buy Now[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Post artwork &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n<td width=\"95\">[button link=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=PCKETDR2HCYWL\"] Buy Now[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website content revamp^</td>\r\n<td width=\"95\">$725</td>\r\n<td width=\"95\">[button link=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=XR4FA4RQ4Y2Q2\"] Buy Now[/button]</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Products Footer Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h4>If what you are looking for is not listed above, it does not necessarily mean we do not offer the service, <a href=\"http://www.infinitymarketing.co.nz/contact/\">please contact us for a quote.</a></h4>\r\nWe can provide quotes tailored to your specific project requirements.\r\n\r\nPrinting can be arranged and will be quoted separately. Photography and video options can be arranged and quoted for separately\r\n\r\nExcludes cost of stock images (if required). Any detailed artwork such as illustration or other will be quoted separately.\r\n\r\nPrices above include marketing copy and design and includes 2 revisions, further revisions will be quoted. Prices are available for content only options, proofing only options and design only options.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Other-Services\"></a>Other Services<a name=\"Other-Services\"></a></h2>\r\n<h3>We offer a number of other services - <a href=\"http://www.infinitymarketing.co.nz/contact/\">please contact us for a quote</a></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-244\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Graphic-Design.jpg\" alt=\"Graphic Design\" width=\"93\" height=\"76\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-246\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Printing.jpg\" alt=\"Printing\" width=\"77\" height=\"78\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-245\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Photography.jpg\" alt=\"Photography\" width=\"73\" height=\"60\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-247\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Video.jpg\" alt=\"Video\" width=\"68\" height=\"68\" /></strong></td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Graphic Design</p>\r\n</td>\r\n<td style=\"text-align: center;\" width=\"154\">Printing</td>\r\n<td style=\"text-align: center;\" width=\"154\">Photography</td>\r\n<td style=\"text-align: center;\" width=\"154\">Videography</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-243\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Event-Management.jpg\" alt=\"Event Management\" width=\"68\" height=\"74\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-248\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Web-Development.jpg\" alt=\"Web Development\" width=\"73\" height=\"75\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-242\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Copywriting.jpg\" alt=\"Proof Reading\" width=\"63\" height=\"77\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-241\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Advertising-Booking.jpg\" alt=\"Advertising Booking\" width=\"66\" height=\"67\" /></strong></td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\">Event Management</td>\r\n<td style=\"text-align: center;\" width=\"154\">Website Development</td>\r\n<td style=\"text-align: center;\" width=\"154\">Proof Reading</td>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Advertising Bookings\r\n&amp; Management</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Terms &amp; Conditions Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nAll prices exclude GST and are shown in NZD. Travel for packages which include face to face meetings is included for a radius of up to 20km from Howick, any further kilometres will be charged at $0.74+GST.\r\n\r\nPayments can be accepted through our website by Credit Card, in person by Credit Card, Debit Card or Eftpos, or by internet banking. A Tax invoice will be provided for every payment.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"259\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"259\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"259\" admin_label=\"Call To Action - Contact\" title=\"Ready to take action?\" button_url=\"http://www.infinitymarketing.co.nz/contact/\" url_new_window=\"off\" button_text=\"Click here to contact us now\" use_background_color=\"off\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\nYour new future is waiting\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "WORK WITH US", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2016-03-23 23:54:24", "2016-03-23 10:54:24", "", "39", "http://www.infinitymarketing.co.nz/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("305", "1", "2016-03-29 20:47:11", "2016-03-29 07:47:11", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Us Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Work With Us</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Us Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">We offer a range of marketing services for your small business. Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.</p>\r\n<p style=\"text-align: center;\">We offer great monthly packages, which are fully customisable to suit your business needs; and one-off services.</p>\r\n<p style=\"text-align: center;\">All prices exclude GST and are shown in NZD.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Coaching Image\" show_in_lightbox=\"off\" url=\"#Coaching-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Coaching_sml.jpg\" alt=\"Coaching\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Hands-on Packages Image\" show_in_lightbox=\"off\" url=\"#Hands-on-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Hands-on_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Individual Services Image\" show_in_lightbox=\"off\" url=\"#Individual-Projects\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Individual-Projects_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Other Services Image\" show_in_lightbox=\"off\" url=\"#Other-Services\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Other-Services_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Coaching Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Coaching-Packages\"></a>Coaching Packages<a name=\"Coaching-Packages\"></a></h2>\r\n<h3>We coach, and you implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTRO Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTRO Package - $189</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTRO Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis is about getting the basics right. We look at your current activity, recognise what is working, recommend any improvements and establish a plan going forward. This may suit those who have already started marketing their business and need help to get more customers or get themselves on track.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Establish a top line plan to get you where you want to be</li>\r\n</ul>\r\nThis involves a 1 hour face-to-face (where possible) or skype session and you will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nThis package can be upgraded to the INITIATE package if you feel you would like to go into more detail and create an initial marketing plan.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTRO Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Intro-Candice-v3.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=V46576J27YZG4\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INITIATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INITIATE Package - $589</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INITIATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThe INITIATE package is about giving your marketing the huge push it needs, either when you first start your business or a little later down the track. This is a holistic approach, taking you from strategy, goals, and tactics through to implementation. This will provide a plan of action for the next year.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Explore your positioning and they key messages and selling points for your customers</li>\r\n	<li>Understand who your competitors are and what your point of difference is</li>\r\n	<li>Talk tactics on where to be present, identifying why and how to achieve this</li>\r\n	<li>Establish a plan for making your customers take action</li>\r\n	<li>Work together to formulate a marketing plan for the year</li>\r\n</ul>\r\nThis involves a 2 x 1.5 hour face-to-face (where possible) or skype sessions.  You will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nWe recommend you follow on to the INTEGRATE package as this package measures the effectiveness of your plan as implemented, and refines this on an ongoing basis.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INITIATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Initiate-Candice-v2.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=W9P8XUK654W6G\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTEGRATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTEGRATE Monthly Package - $289 per month</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTEGRATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n(3 month minimum)\r\n\r\nThis is a one on one session twice per month where together, we ensure your marketing is on track. We can utilise measurement techniques to assess the effectiveness of your strategies and keeping you on track to achieve the desired goals.\r\n\r\nWe meet via skype* twice per month to discuss your progress, any ideas or opportunities, and bounce ideas around. (*This can also be done in one longer face to face session if possible)\r\n\r\nThese sessions will help to keep on track with your marketing plan, and guide you throughout the year to meet and exceed your marketing and business goals. By measuring the effectiveness of current strategies, refinements can be effected to ensure your marketing continues to maximise results.\r\n\r\nSupport is available by e-mail, Facebook or reasonable phone support throughout the month if required.\r\n\r\nWe recommend you begin with the INTRO Package before commencing this INTEGRATE Package .\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTEGRATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Integrate-Candice-v2.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=PN7JHBND8QBFJ\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hands-on Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Hands-on-Packages\"></a>Hands-on Packages<a name=\"Hands-on-Packages\"></a></h2>\r\n<h3>We implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Custom\" currency=\"$\" per=\"month\" sum=\"?\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]We can design a custom package that suits the unique needs of your business.[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Incredible Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Incredible\" currency=\"$\" per=\"month\" sum=\"300\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]1 x Facebook / Instagram post content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\nMonthly e-mail newsletter\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=GXECEYG2YK63W\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Intermediate Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Intermediate\" currency=\"$\" per=\"month\" sum=\"600\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]2 x Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised  content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nFortnightly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=NGKPUYHNBB62Y\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Advanced Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Advanced\" currency=\"$\" per=\"month\" sum=\"900\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nWeekly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=BLCK98JX9N83J\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Expert Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Expert\" currency=\"$\" per=\"month\" sum=\"1500\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Twice weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n2 x Facebook cover content &amp; artwork\r\n\r\n2 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n2 x blog posts with search engine optimised\r\n\r\nPoint of sale content &amp; artwork\r\n\r\nManage media bookings/ad campaigns (Social Media/Google)\r\n\r\nWeekly e-mail newsletter\r\n\r\nWebsite updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=9SKCDXVSUANKN\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Projects Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Individual-Projects\"></a>Individual Projects<a name=\"Individual-Projects\"></a></h2>\r\n<h3>We help you with a specific item of work</h3>\r\n<h4 style=\"text-align: justify;\"><span style=\"color: #009edb;\">INTRO SPECIAL PRICING</span></h4>\r\n[/et_pb_text][et_pb_text admin_label=\"Individual Projects Table\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"234\">Brochures</td>\r\n<td width=\"95\"></td>\r\n<td width=\"95\"></td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          One sided flyer</td>\r\n<td width=\"95\">$100</td>\r\n<td width=\"95\">[button link=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=7MTEMEKPRRFAL\"] Buy Now[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Double sided flyer</td>\r\n<td width=\"95\">$150</td>\r\n<td width=\"95\">[button link=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=6D7UM34WXWEPJ\"] Buy Now[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Multi-page  DLE brochure</td>\r\n<td width=\"95\">$195</td>\r\n<td width=\"95\">[button link=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=Y5L9R8DF4KNFN\"] Buy Now[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Poster</td>\r\n<td width=\"95\">$100</td>\r\n<td width=\"95\">[button link=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=RXE6FW58ECAHS\"] Buy Now[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Point of sale</td>\r\n<td width=\"95\">$ P.O.A</td>\r\n<td width=\"95\">[button link=\"http://www.infinitymarketing.co.nz/contact/\"] Enquire[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website Content (200 words)</td>\r\n<td width=\"95\">$89</td>\r\n<td width=\"95\">[button link=\" https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=JVDVKH35P6GJ2\"] Buy Now[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Blog (400-600 words)</td>\r\n<td width=\"95\">$150</td>\r\n<td width=\"95\">[button link=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=3W7ZX86E7ABR6\"] Buy Now[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">E-mail Campaign</td>\r\n<td width=\"95\">$150</td>\r\n<td width=\"95\">[button link=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=9883VE784CLCN\"] Buy Now[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Cover Photo &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n<td width=\"95\">[button link=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=2WNJAJE85S2TY\"] Buy Now[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Post artwork &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n<td width=\"95\">[button link=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=PCKETDR2HCYWL\"] Buy Now[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website content revamp^</td>\r\n<td width=\"95\">$725</td>\r\n<td width=\"95\">[button link=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=XR4FA4RQ4Y2Q2\"] Buy Now[/button]</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Products Footer Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h4>If what you are looking for is not listed above, it does not necessarily mean we do not offer the service, <a href=\"http://www.infinitymarketing.co.nz/contact/\">please contact us for a quote.</a></h4>\r\nWe can provide quotes tailored to your specific project requirements.\r\n\r\nPrinting can be arranged and will be quoted separately. Photography and video options can be arranged and quoted for separately\r\n\r\nExcludes cost of stock images (if required). Any detailed artwork such as illustration or other will be quoted separately.\r\n\r\nPrices above include marketing copy and design and includes 2 revisions, further revisions will be quoted. Prices are available for content only options, proofing only options and design only options.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Other-Services\"></a>Other Services<a name=\"Other-Services\"></a></h2>\r\n<h3>We offer a number of other services - <a href=\"http://www.infinitymarketing.co.nz/contact/\">please contact us for a quote</a></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-244\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Graphic-Design.jpg\" alt=\"Graphic Design\" width=\"93\" height=\"76\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-246\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Printing.jpg\" alt=\"Printing\" width=\"77\" height=\"78\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-245\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Photography.jpg\" alt=\"Photography\" width=\"73\" height=\"60\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-247\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Video.jpg\" alt=\"Video\" width=\"68\" height=\"68\" /></strong></td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Graphic Design</p>\r\n</td>\r\n<td style=\"text-align: center;\" width=\"154\">Printing</td>\r\n<td style=\"text-align: center;\" width=\"154\">Photography</td>\r\n<td style=\"text-align: center;\" width=\"154\">Videography</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-243\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Event-Management.jpg\" alt=\"Event Management\" width=\"68\" height=\"74\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-248\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Web-Development.jpg\" alt=\"Web Development\" width=\"73\" height=\"75\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-242\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Copywriting.jpg\" alt=\"Proof Reading\" width=\"63\" height=\"77\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-241\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Advertising-Booking.jpg\" alt=\"Advertising Booking\" width=\"66\" height=\"67\" /></strong></td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\">Event Management</td>\r\n<td style=\"text-align: center;\" width=\"154\">Website Development</td>\r\n<td style=\"text-align: center;\" width=\"154\">Proof Reading</td>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Advertising Bookings\r\n&amp; Management</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Terms &amp; Conditions Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nAll prices exclude GST and are shown in NZD. Travel for packages which include face to face meetings is included for a radius of up to 20km from Howick, any further kilometres will be charged at $0.74+GST.\r\n\r\nPayments can be accepted through our website by Credit Card, in person by Credit Card, Debit Card or Eftpos, or by internet banking. A Tax invoice will be provided for every payment.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"259\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"259\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"259\" admin_label=\"Call To Action - Contact\" title=\"Ready to take action?\" button_url=\"http://www.infinitymarketing.co.nz/contact/\" url_new_window=\"off\" button_text=\"Click here to contact us now\" use_background_color=\"off\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\nYour new future is waiting\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "WORK WITH US", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2016-03-29 20:47:11", "2016-03-29 07:47:11", "", "39", "http://www.infinitymarketing.co.nz/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("306", "1", "2016-03-29 20:48:28", "2016-03-29 07:48:28", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Us Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Work With Us</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Us Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">We offer a range of marketing services for your small business. Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.</p>\r\n<p style=\"text-align: center;\">We offer great monthly packages, which are fully customisable to suit your business needs; and one-off services.</p>\r\n<p style=\"text-align: center;\">All prices exclude GST and are shown in NZD.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Coaching Image\" show_in_lightbox=\"off\" url=\"#Coaching-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Coaching_sml.jpg\" alt=\"Coaching\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Hands-on Packages Image\" show_in_lightbox=\"off\" url=\"#Hands-on-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Hands-on_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Individual Services Image\" show_in_lightbox=\"off\" url=\"#Individual-Projects\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Individual-Projects_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Other Services Image\" show_in_lightbox=\"off\" url=\"#Other-Services\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Other-Services_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Coaching Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Coaching-Packages\"></a>Coaching Packages<a name=\"Coaching-Packages\"></a></h2>\r\n<h3>We coach, and you implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTRO Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTRO Package - $189</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTRO Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis is about getting the basics right. We look at your current activity, recognise what is working, recommend any improvements and establish a plan going forward. This may suit those who have already started marketing their business and need help to get more customers or get themselves on track.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Establish a top line plan to get you where you want to be</li>\r\n</ul>\r\nThis involves a 1 hour face-to-face (where possible) or skype session and you will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nThis package can be upgraded to the INITIATE package if you feel you would like to go into more detail and create an initial marketing plan.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTRO Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Intro-Candice-v3.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=V46576J27YZG4\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INITIATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INITIATE Package - $589</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INITIATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThe INITIATE package is about giving your marketing the huge push it needs, either when you first start your business or a little later down the track. This is a holistic approach, taking you from strategy, goals, and tactics through to implementation. This will provide a plan of action for the next year.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Explore your positioning and they key messages and selling points for your customers</li>\r\n	<li>Understand who your competitors are and what your point of difference is</li>\r\n	<li>Talk tactics on where to be present, identifying why and how to achieve this</li>\r\n	<li>Establish a plan for making your customers take action</li>\r\n	<li>Work together to formulate a marketing plan for the year</li>\r\n</ul>\r\nThis involves a 2 x 1.5 hour face-to-face (where possible) or skype sessions.  You will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nWe recommend you follow on to the INTEGRATE package as this package measures the effectiveness of your plan as implemented, and refines this on an ongoing basis.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INITIATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Initiate-Candice-v2.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=W9P8XUK654W6G\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTEGRATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTEGRATE Monthly Package - $289 per month</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTEGRATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n(3 month minimum)\r\n\r\nThis is a one on one session twice per month where together, we ensure your marketing is on track. We can utilise measurement techniques to assess the effectiveness of your strategies and keeping you on track to achieve the desired goals.\r\n\r\nWe meet via skype* twice per month to discuss your progress, any ideas or opportunities, and bounce ideas around. (*This can also be done in one longer face to face session if possible)\r\n\r\nThese sessions will help to keep on track with your marketing plan, and guide you throughout the year to meet and exceed your marketing and business goals. By measuring the effectiveness of current strategies, refinements can be effected to ensure your marketing continues to maximise results.\r\n\r\nSupport is available by e-mail, Facebook or reasonable phone support throughout the month if required.\r\n\r\nWe recommend you begin with the INTRO Package before commencing this INTEGRATE Package .\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTEGRATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Integrate-Candice-v2.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=PN7JHBND8QBFJ\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hands-on Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Hands-on-Packages\"></a>Hands-on Packages<a name=\"Hands-on-Packages\"></a></h2>\r\n<h3>We implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Custom\" currency=\"$\" per=\"month\" sum=\"?\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]We can design a custom package that suits the unique needs of your business.[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Incredible Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Incredible\" currency=\"$\" per=\"month\" sum=\"300\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]1 x Facebook / Instagram post content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\nMonthly e-mail newsletter\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=GXECEYG2YK63W\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Intermediate Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Intermediate\" currency=\"$\" per=\"month\" sum=\"600\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]2 x Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised  content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nFortnightly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=NGKPUYHNBB62Y\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Advanced Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Advanced\" currency=\"$\" per=\"month\" sum=\"900\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nWeekly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=BLCK98JX9N83J\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Expert Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Expert\" currency=\"$\" per=\"month\" sum=\"1500\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Twice weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n2 x Facebook cover content &amp; artwork\r\n\r\n2 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n2 x blog posts with search engine optimised\r\n\r\nPoint of sale content &amp; artwork\r\n\r\nManage media bookings/ad campaigns (Social Media/Google)\r\n\r\nWeekly e-mail newsletter\r\n\r\nWebsite updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=9SKCDXVSUANKN\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Projects Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Individual-Projects\"></a>Individual Projects<a name=\"Individual-Projects\"></a></h2>\r\n<h3>We help you with a specific item of work</h3>\r\n<h4 style=\"text-align: justify;\"><span style=\"color: #009edb;\">INTRO SPECIAL PRICING VALID UNTIL 30TH APRIL 2016</span></h4>\r\n[/et_pb_text][et_pb_text admin_label=\"Individual Projects Table\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"234\">Brochures</td>\r\n<td width=\"95\"></td>\r\n<td width=\"95\"></td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          One sided flyer</td>\r\n<td width=\"95\">$100</td>\r\n<td width=\"95\">[button link=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=7MTEMEKPRRFAL\"] Buy Now[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Double sided flyer</td>\r\n<td width=\"95\">$150</td>\r\n<td width=\"95\">[button link=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=6D7UM34WXWEPJ\"] Buy Now[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Multi-page  DLE brochure</td>\r\n<td width=\"95\">$195</td>\r\n<td width=\"95\">[button link=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=Y5L9R8DF4KNFN\"] Buy Now[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Poster</td>\r\n<td width=\"95\">$100</td>\r\n<td width=\"95\">[button link=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=RXE6FW58ECAHS\"] Buy Now[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Point of sale</td>\r\n<td width=\"95\">$ P.O.A</td>\r\n<td width=\"95\">[button link=\"http://www.infinitymarketing.co.nz/contact/\"] Enquire[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website Content (200 words)</td>\r\n<td width=\"95\">$89</td>\r\n<td width=\"95\">[button link=\" https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=JVDVKH35P6GJ2\"] Buy Now[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Blog (400-600 words)</td>\r\n<td width=\"95\">$150</td>\r\n<td width=\"95\">[button link=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=3W7ZX86E7ABR6\"] Buy Now[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">E-mail Campaign</td>\r\n<td width=\"95\">$150</td>\r\n<td width=\"95\">[button link=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=9883VE784CLCN\"] Buy Now[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Cover Photo &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n<td width=\"95\">[button link=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=2WNJAJE85S2TY\"] Buy Now[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Post artwork &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n<td width=\"95\">[button link=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=PCKETDR2HCYWL\"] Buy Now[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website content revamp^</td>\r\n<td width=\"95\">$725</td>\r\n<td width=\"95\">[button link=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=XR4FA4RQ4Y2Q2\"] Buy Now[/button]</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Products Footer Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h4>If what you are looking for is not listed above, it does not necessarily mean we do not offer the service, <a href=\"http://www.infinitymarketing.co.nz/contact/\">please contact us for a quote.</a></h4>\r\nWe can provide quotes tailored to your specific project requirements.\r\n\r\nPrinting can be arranged and will be quoted separately. Photography and video options can be arranged and quoted for separately\r\n\r\nExcludes cost of stock images (if required). Any detailed artwork such as illustration or other will be quoted separately.\r\n\r\nPrices above include marketing copy and design and includes 2 revisions, further revisions will be quoted. Prices are available for content only options, proofing only options and design only options.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Other-Services\"></a>Other Services<a name=\"Other-Services\"></a></h2>\r\n<h3>We offer a number of other services - <a href=\"http://www.infinitymarketing.co.nz/contact/\">please contact us for a quote</a></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-244\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Graphic-Design.jpg\" alt=\"Graphic Design\" width=\"93\" height=\"76\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-246\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Printing.jpg\" alt=\"Printing\" width=\"77\" height=\"78\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-245\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Photography.jpg\" alt=\"Photography\" width=\"73\" height=\"60\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-247\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Video.jpg\" alt=\"Video\" width=\"68\" height=\"68\" /></strong></td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Graphic Design</p>\r\n</td>\r\n<td style=\"text-align: center;\" width=\"154\">Printing</td>\r\n<td style=\"text-align: center;\" width=\"154\">Photography</td>\r\n<td style=\"text-align: center;\" width=\"154\">Videography</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-243\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Event-Management.jpg\" alt=\"Event Management\" width=\"68\" height=\"74\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-248\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Web-Development.jpg\" alt=\"Web Development\" width=\"73\" height=\"75\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-242\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Copywriting.jpg\" alt=\"Proof Reading\" width=\"63\" height=\"77\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-241\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Advertising-Booking.jpg\" alt=\"Advertising Booking\" width=\"66\" height=\"67\" /></strong></td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\">Event Management</td>\r\n<td style=\"text-align: center;\" width=\"154\">Website Development</td>\r\n<td style=\"text-align: center;\" width=\"154\">Proof Reading</td>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Advertising Bookings\r\n&amp; Management</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Terms &amp; Conditions Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nAll prices exclude GST and are shown in NZD. Travel for packages which include face to face meetings is included for a radius of up to 20km from Howick, any further kilometres will be charged at $0.74+GST.\r\n\r\nPayments can be accepted through our website by Credit Card, in person by Credit Card, Debit Card or Eftpos, or by internet banking. A Tax invoice will be provided for every payment.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"259\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"259\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"259\" admin_label=\"Call To Action - Contact\" title=\"Ready to take action?\" button_url=\"http://www.infinitymarketing.co.nz/contact/\" url_new_window=\"off\" button_text=\"Click here to contact us now\" use_background_color=\"off\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\nYour new future is waiting\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "WORK WITH US", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2016-03-29 20:48:28", "2016-03-29 07:48:28", "", "39", "http://www.infinitymarketing.co.nz/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("307", "1", "2016-03-30 11:58:52", "2016-03-29 22:58:52", "Infinity Marketing Background", "Infinity Marketing Background", "", "inherit", "open", "closed", "", "headerbackground_blue", "", "", "2016-03-30 11:59:08", "2016-03-29 22:59:08", "", "2", "http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("308", "1", "2016-03-30 11:59:19", "2016-03-29 22:59:19", "[et_pb_section admin_label=\"section\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"About Infinity Marketing Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">About Infinity Marketing</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hello I\'m Candice Venter Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\"><strong>Hi, I\'m Candice Venter</strong></h2>\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h2 style=\"text-align: center;\"><em>Your outsourced marketing expert, </em><em>here to help you\r\nwith marketing your small business</em>\r\n<em> with marketing that works!</em></h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nRight now, I\'m sure you\'re feeling like you are trying to juggle it all, to know every aspect of how to do everything for your business, and not sure how to get the results you need for your business to grow (or even survive!) and overall just frustrated and bombarded!\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><strong>I get it, balancing everything is HARD and you quite simply can\'t be the expert at everything. </strong></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI\'m here to show you that there is help and a light at the end of the tunnel where your business can succeed.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhy I love helping small businesses deliver outstanding marketing and see their businesses grow as a result, is because I am inspired by what amazing people and talents there are in our community. My passion is helping other people succeed, and I believe that everyone <strong>deserves</strong> to succeed.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI want this for you! I want to share my skills as a qualified and experienced marketing professional, to help your business grow and succeed.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/About-Candice-.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Get Personal Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#888e8f\" border_style=\"outset\" border_width=\"2px\"]\r\n<h2 style=\"text-align: justify;\">Let\'s get personal</h2>\r\n[/et_pb_text][et_pb_text admin_label=\"Get Personal Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOriginally from South Africa, I have now lived over half my life in Auckland, New Zealand. That means I have a good mix of being able to tell it straight, with a good dose of kiwi ingenuity. I studied a Bachelor of Business and Information Management, with a second major in Marketing at the University of Auckland and have gained my professional experience in both global corporations and a great kiwi start-up.\r\n\r\nFamily is my everything, this includes my 15 year old miniature sausage dog, Dante. It\'s for them, that I do what I do.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Network NZ Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Network-NZ-Transparent.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>Infinity Marketing is proud to be a Foundation Member of Network NZ</h2>\r\nTo find out more about Network NZ, <a href=\"http://www.networknz.nz\">click here to visit www.networknz.nz</a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" global_module=\"179\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"179\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"179\" admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-us/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\">Take the first step toward your new future</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "ABOUT", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2016-03-30 11:59:19", "2016-03-29 22:59:19", "", "2", "http://www.infinitymarketing.co.nz/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("309", "1", "2016-03-30 12:00:29", "2016-03-29 23:00:29", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Us Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Work With Us</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Us Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">We offer a range of marketing services for your small business. Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.</p>\r\n<p style=\"text-align: center;\">We offer great monthly packages, which are fully customisable to suit your business needs; and one-off services.</p>\r\n<p style=\"text-align: center;\">All prices exclude GST and are shown in NZD.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Coaching Image\" show_in_lightbox=\"off\" url=\"#Coaching-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Coaching_sml.jpg\" alt=\"Coaching\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Hands-on Packages Image\" show_in_lightbox=\"off\" url=\"#Hands-on-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Hands-on_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Individual Services Image\" show_in_lightbox=\"off\" url=\"#Individual-Projects\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Individual-Projects_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Other Services Image\" show_in_lightbox=\"off\" url=\"#Other-Services\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Other-Services_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Coaching Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Coaching-Packages\"></a>Coaching Packages<a name=\"Coaching-Packages\"></a></h2>\r\n<h3>We coach, and you implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTRO Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTRO Package - $189</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTRO Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis is about getting the basics right. We look at your current activity, recognise what is working, recommend any improvements and establish a plan going forward. This may suit those who have already started marketing their business and need help to get more customers or get themselves on track.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Establish a top line plan to get you where you want to be</li>\r\n</ul>\r\nThis involves a 1 hour face-to-face (where possible) or skype session and you will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nThis package can be upgraded to the INITIATE package if you feel you would like to go into more detail and create an initial marketing plan.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTRO Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Intro-Candice-v3.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=V46576J27YZG4\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INITIATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INITIATE Package - $589</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INITIATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThe INITIATE package is about giving your marketing the huge push it needs, either when you first start your business or a little later down the track. This is a holistic approach, taking you from strategy, goals, and tactics through to implementation. This will provide a plan of action for the next year.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Explore your positioning and they key messages and selling points for your customers</li>\r\n	<li>Understand who your competitors are and what your point of difference is</li>\r\n	<li>Talk tactics on where to be present, identifying why and how to achieve this</li>\r\n	<li>Establish a plan for making your customers take action</li>\r\n	<li>Work together to formulate a marketing plan for the year</li>\r\n</ul>\r\nThis involves a 2 x 1.5 hour face-to-face (where possible) or skype sessions.  You will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nWe recommend you follow on to the INTEGRATE package as this package measures the effectiveness of your plan as implemented, and refines this on an ongoing basis.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INITIATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Initiate-Candice-v2.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=W9P8XUK654W6G\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTEGRATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTEGRATE Monthly Package - $289 per month</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTEGRATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n(3 month minimum)\r\n\r\nThis is a one on one session twice per month where together, we ensure your marketing is on track. We can utilise measurement techniques to assess the effectiveness of your strategies and keeping you on track to achieve the desired goals.\r\n\r\nWe meet via skype* twice per month to discuss your progress, any ideas or opportunities, and bounce ideas around. (*This can also be done in one longer face to face session if possible)\r\n\r\nThese sessions will help to keep on track with your marketing plan, and guide you throughout the year to meet and exceed your marketing and business goals. By measuring the effectiveness of current strategies, refinements can be effected to ensure your marketing continues to maximise results.\r\n\r\nSupport is available by e-mail, Facebook or reasonable phone support throughout the month if required.\r\n\r\nWe recommend you begin with the INTRO Package before commencing this INTEGRATE Package .\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTEGRATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Integrate-Candice-v2.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=PN7JHBND8QBFJ\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hands-on Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Hands-on-Packages\"></a>Hands-on Packages<a name=\"Hands-on-Packages\"></a></h2>\r\n<h3>We implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Custom\" currency=\"$\" per=\"month\" sum=\"?\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]We can design a custom package that suits the unique needs of your business.[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Incredible Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Incredible\" currency=\"$\" per=\"month\" sum=\"300\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]1 x Facebook / Instagram post content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\nMonthly e-mail newsletter\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=GXECEYG2YK63W\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Intermediate Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Intermediate\" currency=\"$\" per=\"month\" sum=\"600\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]2 x Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised  content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nFortnightly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=NGKPUYHNBB62Y\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Advanced Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Advanced\" currency=\"$\" per=\"month\" sum=\"900\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nWeekly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=BLCK98JX9N83J\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Expert Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Expert\" currency=\"$\" per=\"month\" sum=\"1500\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Twice weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n2 x Facebook cover content &amp; artwork\r\n\r\n2 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n2 x blog posts with search engine optimised\r\n\r\nPoint of sale content &amp; artwork\r\n\r\nManage media bookings/ad campaigns (Social Media/Google)\r\n\r\nWeekly e-mail newsletter\r\n\r\nWebsite updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=9SKCDXVSUANKN\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Projects Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Individual-Projects\"></a>Individual Projects<a name=\"Individual-Projects\"></a></h2>\r\n<h3>We help you with a specific item of work</h3>\r\n<h4 style=\"text-align: justify;\"><span style=\"color: #009edb;\">INTRO SPECIAL PRICING VALID UNTIL 30TH APRIL 2016</span></h4>\r\n[/et_pb_text][et_pb_text admin_label=\"Individual Projects Table\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"234\">Brochures</td>\r\n<td width=\"95\"></td>\r\n<td width=\"95\"></td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          One sided flyer</td>\r\n<td width=\"95\">$100</td>\r\n<td width=\"95\">[button link=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=7MTEMEKPRRFAL\"] Buy Now[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Double sided flyer</td>\r\n<td width=\"95\">$150</td>\r\n<td width=\"95\">[button link=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=6D7UM34WXWEPJ\"] Buy Now[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Multi-page  DLE brochure</td>\r\n<td width=\"95\">$195</td>\r\n<td width=\"95\">[button link=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=Y5L9R8DF4KNFN\"] Buy Now[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Poster</td>\r\n<td width=\"95\">$100</td>\r\n<td width=\"95\">[button link=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=RXE6FW58ECAHS\"] Buy Now[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Point of sale</td>\r\n<td width=\"95\">$ P.O.A</td>\r\n<td width=\"95\">[button link=\"http://www.infinitymarketing.co.nz/contact/\"] Enquire[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website Content (200 words)</td>\r\n<td width=\"95\">$89</td>\r\n<td width=\"95\">[button link=\" https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=JVDVKH35P6GJ2\"] Buy Now[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Blog (400-600 words)</td>\r\n<td width=\"95\">$150</td>\r\n<td width=\"95\">[button link=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=3W7ZX86E7ABR6\"] Buy Now[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">E-mail Campaign</td>\r\n<td width=\"95\">$150</td>\r\n<td width=\"95\">[button link=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=9883VE784CLCN\"] Buy Now[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Cover Photo &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n<td width=\"95\">[button link=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=2WNJAJE85S2TY\"] Buy Now[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Post artwork &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n<td width=\"95\">[button link=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=PCKETDR2HCYWL\"] Buy Now[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website content revamp^</td>\r\n<td width=\"95\">$725</td>\r\n<td width=\"95\">[button link=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=XR4FA4RQ4Y2Q2\"] Buy Now[/button]</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Products Footer Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h4>If what you are looking for is not listed above, it does not necessarily mean we do not offer the service, <a href=\"http://www.infinitymarketing.co.nz/contact/\">please contact us for a quote.</a></h4>\r\nWe can provide quotes tailored to your specific project requirements.\r\n\r\nPrinting can be arranged and will be quoted separately. Photography and video options can be arranged and quoted for separately\r\n\r\nExcludes cost of stock images (if required). Any detailed artwork such as illustration or other will be quoted separately.\r\n\r\nPrices above include marketing copy and design and includes 2 revisions, further revisions will be quoted. Prices are available for content only options, proofing only options and design only options.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Other-Services\"></a>Other Services<a name=\"Other-Services\"></a></h2>\r\n<h3>We offer a number of other services - <a href=\"http://www.infinitymarketing.co.nz/contact/\">please contact us for a quote</a></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-244\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Graphic-Design.jpg\" alt=\"Graphic Design\" width=\"93\" height=\"76\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-246\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Printing.jpg\" alt=\"Printing\" width=\"77\" height=\"78\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-245\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Photography.jpg\" alt=\"Photography\" width=\"73\" height=\"60\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-247\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Video.jpg\" alt=\"Video\" width=\"68\" height=\"68\" /></strong></td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Graphic Design</p>\r\n</td>\r\n<td style=\"text-align: center;\" width=\"154\">Printing</td>\r\n<td style=\"text-align: center;\" width=\"154\">Photography</td>\r\n<td style=\"text-align: center;\" width=\"154\">Videography</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-243\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Event-Management.jpg\" alt=\"Event Management\" width=\"68\" height=\"74\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-248\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Web-Development.jpg\" alt=\"Web Development\" width=\"73\" height=\"75\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-242\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Copywriting.jpg\" alt=\"Proof Reading\" width=\"63\" height=\"77\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-241\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Advertising-Booking.jpg\" alt=\"Advertising Booking\" width=\"66\" height=\"67\" /></strong></td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\">Event Management</td>\r\n<td style=\"text-align: center;\" width=\"154\">Website Development</td>\r\n<td style=\"text-align: center;\" width=\"154\">Proof Reading</td>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Advertising Bookings\r\n&amp; Management</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Terms &amp; Conditions Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nAll prices exclude GST and are shown in NZD. Travel for packages which include face to face meetings is included for a radius of up to 20km from Howick, any further kilometres will be charged at $0.74+GST.\r\n\r\nPayments can be accepted through our website by Credit Card, in person by Credit Card, Debit Card or Eftpos, or by internet banking. A Tax invoice will be provided for every payment.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"259\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"259\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"259\" admin_label=\"Call To Action - Contact\" title=\"Ready to take action?\" button_url=\"http://www.infinitymarketing.co.nz/contact/\" url_new_window=\"off\" button_text=\"Click here to contact us now\" use_background_color=\"off\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\nYour new future is waiting\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "WORK WITH US", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2016-03-30 12:00:29", "2016-03-29 23:00:29", "", "39", "http://www.infinitymarketing.co.nz/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("310", "1", "2016-03-30 12:01:00", "2016-03-29 23:01:00", "[et_pb_section admin_label=\"section\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Blog Title\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Blog</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_blog admin_label=\"Blog\" fullwidth=\"on\" show_thumbnail=\"on\" show_content=\"off\" show_more=\"on\" show_author=\"on\" show_date=\"on\" show_categories=\"on\" show_comments=\"on\" show_pagination=\"on\" offset_number=\"0\" use_overlay=\"off\" background_layout=\"light\" use_dropshadow=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blog][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"right\" area=\"sidebar-1\" background_layout=\"light\" remove_border=\"off\"] [/et_pb_sidebar][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" global_module=\"179\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"179\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"179\" admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-us/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\">Take the first step toward your new future</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "BLOG", "", "inherit", "closed", "closed", "", "98-revision-v1", "", "", "2016-03-30 12:01:00", "2016-03-29 23:01:00", "", "98", "http://www.infinitymarketing.co.nz/98-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("311", "1", "2016-03-30 12:01:52", "2016-03-29 23:01:52", "[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Contact Title\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Contact</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/cropped-Candice-About_round.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIf you have any questions, comments, feedback or even just to say hi, please contact us using any of the methods below and we will respond as soon as we can.\r\n\r\nInfinity Marketing is based in Howick, Auckland; New Zealand\r\n\r\n<span class=\"phone\"><strong>Phone:</strong> 021 159 1215\r\n</span><span class=\"email\"><strong>E-mail: </strong>candice@infinitymarketing.co.nz</span>\r\n\r\nOr complete the form below to email us:\r\n\r\n[/et_pb_text][et_pb_contact_form admin_label=\"Contact Form\" captcha=\"on\" email=\"contact@infinitymarketing.co.nz\" use_redirect=\"off\" success_message=\"Sent!\" input_border_radius=\"0\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_contact_field field_title=\"Name\" field_type=\"input\" field_id=\"Name\" required_mark=\"on\" fullwidth_field=\"off\"] [/et_pb_contact_field][et_pb_contact_field field_title=\"Email Address\" field_type=\"email\" field_id=\"Email\" required_mark=\"on\" fullwidth_field=\"off\"] [/et_pb_contact_field][et_pb_contact_field field_id=\"Phone Number\" field_title=\"Phone Number\" field_type=\"input\" required_mark=\"off\" fullwidth_field=\"off\" form_field_font_select=\"default\" form_field_font=\"||||\" use_border_color=\"off\" border_style=\"solid\"] [/et_pb_contact_field][et_pb_contact_field field_title=\"Message\" field_type=\"text\" field_id=\"Message\" required_mark=\"on\"] [/et_pb_contact_field] [/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]", "CONTACT", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2016-03-30 12:01:52", "2016-03-29 23:01:52", "", "43", "http://www.infinitymarketing.co.nz/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("312", "1", "2016-03-30 12:02:56", "2016-03-29 23:02:56", "[et_pb_section admin_label=\"Impact Background\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice-Infinity-Marketing-Banner-.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Impact Text\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/discover-v2.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_signup admin_label=\"Email Optin\" provider=\"mailchimp\" mailchimp_list=\"4419f44e8e\" aweber_list=\"none\" use_background_color=\"on\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"left\" use_focus_border_color=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" title=\"Get practical marketing tips delivered straight to your inbox\" button_text=\"Sign me up!\" header_font=\"Open Sans||||\" header_font_size=\"22\" body_font=\"Open Sans||||\"] [/et_pb_signup][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"0px|||\"]\r\n<h2 style=\"text-align: center;\">Building your dream business can be overwhelming</h2>\r\n<h2 style=\"text-align: center;\">and how do you know what marketing works?</h2>\r\n<p style=\"text-align: center;\">In your small business, you tend to try and juggle it all. Infinity Marketing is here to help you\r\nwith marketing that suits your unique business, no matter which stage it is at.</p>\r\n<p style=\"text-align: center;\">We work together with you, to gain a thorough understanding of who your customers are,\r\nand where they are, to deliver the best marketing for your small business.</p>\r\n<p style=\"text-align: center;\">You might know exactly what your business needs to get the extra punch it requires,\r\nand need help with implementation of your marketing plan. Otherwise, you might\r\nbe starting out and need a guiding hand to identify what needs to be done for your business marketing.</p>\r\n<p style=\"text-align: center;\">Whatever stage you are at, we can help you take your business to the next level,\r\nwhere the possibilities are infinite.</p>\r\n<p style=\"text-align: center;\"><strong><a href=\"http://www.infinitymarketing.co.nz/work-with-us/\">Let\'s discover how we can make that happen for your business</a></strong></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#b3babf\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Connect CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Connect.jpg\" alt=\"Connect on Facebook\" show_in_lightbox=\"off\" url=\"http://www.facebook.com/infinitymarketing.co.nz\" url_new_window=\"on\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Services CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Services.jpg\" alt=\"View Services\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/work-with-us/\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Contact CTA\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Contact.jpg\" alt=\"Contact us\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.infinitymarketing.co.nz/contact/\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice-About_round.png\" alt=\"Candice Venter\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"About Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>About Candice</h2>\r\nCandice has has a passion for marketing for small businesses, having worked in both start up and large corporations, she has seen and done a lot. She has an absolute passion for helping small businesses grow through the power of marketing.\r\n\r\nAn expert in understanding who your customers are, understanding where they are and delivering messages that inspire action, Candice thrives on creating marketing that works.\r\n\r\nAbove all, she is passionate to help your business succeed.\r\n\r\n[/et_pb_text][et_pb_button admin_label=\"Read More Button\" button_url=\"http://www.infinitymarketing.co.nz/about/\" url_new_window=\"off\" button_text=\"Read More\" button_alignment=\"left\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#f9f9f9\" button_bg_color=\"#009edb\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon=\"%%28%%\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-us/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\">Discover the services we provide</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "HOME", "", "inherit", "closed", "closed", "", "37-revision-v1", "", "", "2016-03-30 12:02:56", "2016-03-29 23:02:56", "", "37", "http://www.infinitymarketing.co.nz/37-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("313", "1", "2016-03-30 12:03:35", "2016-03-29 23:03:35", "[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action - Contact\" title=\"Ready to take action?\" button_url=\"http://www.infinitymarketing.co.nz/contact/\" url_new_window=\"off\" button_text=\"Click here to contact us now\" use_background_color=\"off\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\n\n<p>Your new future is waiting</p>\n\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Call to action - Contact", "", "inherit", "closed", "closed", "", "259-revision-v1", "", "", "2016-03-30 12:03:35", "2016-03-29 23:03:35", "", "259", "http://www.infinitymarketing.co.nz/259-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("314", "1", "2016-03-30 12:03:40", "2016-03-29 23:03:40", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Us Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Work With Us</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Us Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">We offer a range of marketing services for your small business. Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.</p>\r\n<p style=\"text-align: center;\">We offer great monthly packages, which are fully customisable to suit your business needs; and one-off services.</p>\r\n<p style=\"text-align: center;\">All prices exclude GST and are shown in NZD.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Coaching Image\" show_in_lightbox=\"off\" url=\"#Coaching-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Coaching_sml.jpg\" alt=\"Coaching\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Hands-on Packages Image\" show_in_lightbox=\"off\" url=\"#Hands-on-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Hands-on_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Individual Services Image\" show_in_lightbox=\"off\" url=\"#Individual-Projects\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Individual-Projects_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Other Services Image\" show_in_lightbox=\"off\" url=\"#Other-Services\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Other-Services_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Coaching Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Coaching-Packages\"></a>Coaching Packages<a name=\"Coaching-Packages\"></a></h2>\r\n<h3>We coach, and you implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTRO Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTRO Package - $189</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTRO Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis is about getting the basics right. We look at your current activity, recognise what is working, recommend any improvements and establish a plan going forward. This may suit those who have already started marketing their business and need help to get more customers or get themselves on track.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Establish a top line plan to get you where you want to be</li>\r\n</ul>\r\nThis involves a 1 hour face-to-face (where possible) or skype session and you will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nThis package can be upgraded to the INITIATE package if you feel you would like to go into more detail and create an initial marketing plan.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTRO Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Intro-Candice-v3.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=V46576J27YZG4\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INITIATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INITIATE Package - $589</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INITIATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThe INITIATE package is about giving your marketing the huge push it needs, either when you first start your business or a little later down the track. This is a holistic approach, taking you from strategy, goals, and tactics through to implementation. This will provide a plan of action for the next year.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Explore your positioning and they key messages and selling points for your customers</li>\r\n	<li>Understand who your competitors are and what your point of difference is</li>\r\n	<li>Talk tactics on where to be present, identifying why and how to achieve this</li>\r\n	<li>Establish a plan for making your customers take action</li>\r\n	<li>Work together to formulate a marketing plan for the year</li>\r\n</ul>\r\nThis involves a 2 x 1.5 hour face-to-face (where possible) or skype sessions.  You will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nWe recommend you follow on to the INTEGRATE package as this package measures the effectiveness of your plan as implemented, and refines this on an ongoing basis.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INITIATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Initiate-Candice-v2.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=W9P8XUK654W6G\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTEGRATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTEGRATE Monthly Package - $289 per month</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTEGRATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n(3 month minimum)\r\n\r\nThis is a one on one session twice per month where together, we ensure your marketing is on track. We can utilise measurement techniques to assess the effectiveness of your strategies and keeping you on track to achieve the desired goals.\r\n\r\nWe meet via skype* twice per month to discuss your progress, any ideas or opportunities, and bounce ideas around. (*This can also be done in one longer face to face session if possible)\r\n\r\nThese sessions will help to keep on track with your marketing plan, and guide you throughout the year to meet and exceed your marketing and business goals. By measuring the effectiveness of current strategies, refinements can be effected to ensure your marketing continues to maximise results.\r\n\r\nSupport is available by e-mail, Facebook or reasonable phone support throughout the month if required.\r\n\r\nWe recommend you begin with the INTRO Package before commencing this INTEGRATE Package .\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTEGRATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Integrate-Candice-v2.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=PN7JHBND8QBFJ\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hands-on Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Hands-on-Packages\"></a>Hands-on Packages<a name=\"Hands-on-Packages\"></a></h2>\r\n<h3>We implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Custom\" currency=\"$\" per=\"month\" sum=\"?\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]We can design a custom package that suits the unique needs of your business.[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Incredible Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Incredible\" currency=\"$\" per=\"month\" sum=\"300\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]1 x Facebook / Instagram post content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\nMonthly e-mail newsletter\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=GXECEYG2YK63W\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Intermediate Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Intermediate\" currency=\"$\" per=\"month\" sum=\"600\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]2 x Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised  content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nFortnightly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=NGKPUYHNBB62Y\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Advanced Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Advanced\" currency=\"$\" per=\"month\" sum=\"900\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nWeekly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=BLCK98JX9N83J\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Expert Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Expert\" currency=\"$\" per=\"month\" sum=\"1500\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Twice weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n2 x Facebook cover content &amp; artwork\r\n\r\n2 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n2 x blog posts with search engine optimised\r\n\r\nPoint of sale content &amp; artwork\r\n\r\nManage media bookings/ad campaigns (Social Media/Google)\r\n\r\nWeekly e-mail newsletter\r\n\r\nWebsite updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=9SKCDXVSUANKN\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Projects Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Individual-Projects\"></a>Individual Projects<a name=\"Individual-Projects\"></a></h2>\r\n<h3>We help you with a specific item of work</h3>\r\n<h4 style=\"text-align: justify;\"><span style=\"color: #009edb;\">INTRO SPECIAL PRICING VALID UNTIL 30TH APRIL 2016</span></h4>\r\n[/et_pb_text][et_pb_text admin_label=\"Individual Projects Table\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"234\">Brochures</td>\r\n<td width=\"95\"></td>\r\n<td width=\"95\"></td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          One sided flyer</td>\r\n<td width=\"95\">$100</td>\r\n<td width=\"95\">[button link=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=7MTEMEKPRRFAL\"] Buy Now[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Double sided flyer</td>\r\n<td width=\"95\">$150</td>\r\n<td width=\"95\">[button link=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=6D7UM34WXWEPJ\"] Buy Now[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Multi-page  DLE brochure</td>\r\n<td width=\"95\">$195</td>\r\n<td width=\"95\">[button link=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=Y5L9R8DF4KNFN\"] Buy Now[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Poster</td>\r\n<td width=\"95\">$100</td>\r\n<td width=\"95\">[button link=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=RXE6FW58ECAHS\"] Buy Now[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Point of sale</td>\r\n<td width=\"95\">$ P.O.A</td>\r\n<td width=\"95\">[button link=\"http://www.infinitymarketing.co.nz/contact/\"] Enquire[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website Content (200 words)</td>\r\n<td width=\"95\">$89</td>\r\n<td width=\"95\">[button link=\" https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=JVDVKH35P6GJ2\"] Buy Now[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Blog (400-600 words)</td>\r\n<td width=\"95\">$150</td>\r\n<td width=\"95\">[button link=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=3W7ZX86E7ABR6\"] Buy Now[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">E-mail Campaign</td>\r\n<td width=\"95\">$150</td>\r\n<td width=\"95\">[button link=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=9883VE784CLCN\"] Buy Now[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Cover Photo &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n<td width=\"95\">[button link=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=2WNJAJE85S2TY\"] Buy Now[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Post artwork &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n<td width=\"95\">[button link=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=PCKETDR2HCYWL\"] Buy Now[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website content revamp^</td>\r\n<td width=\"95\">$725</td>\r\n<td width=\"95\">[button link=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=XR4FA4RQ4Y2Q2\"] Buy Now[/button]</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Products Footer Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h4>If what you are looking for is not listed above, it does not necessarily mean we do not offer the service, <a href=\"http://www.infinitymarketing.co.nz/contact/\">please contact us for a quote.</a></h4>\r\nWe can provide quotes tailored to your specific project requirements.\r\n\r\nPrinting can be arranged and will be quoted separately. Photography and video options can be arranged and quoted for separately\r\n\r\nExcludes cost of stock images (if required). Any detailed artwork such as illustration or other will be quoted separately.\r\n\r\nPrices above include marketing copy and design and includes 2 revisions, further revisions will be quoted. Prices are available for content only options, proofing only options and design only options.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Other-Services\"></a>Other Services<a name=\"Other-Services\"></a></h2>\r\n<h3>We offer a number of other services - <a href=\"http://www.infinitymarketing.co.nz/contact/\">please contact us for a quote</a></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-244\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Graphic-Design.jpg\" alt=\"Graphic Design\" width=\"93\" height=\"76\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-246\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Printing.jpg\" alt=\"Printing\" width=\"77\" height=\"78\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-245\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Photography.jpg\" alt=\"Photography\" width=\"73\" height=\"60\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-247\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Video.jpg\" alt=\"Video\" width=\"68\" height=\"68\" /></strong></td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Graphic Design</p>\r\n</td>\r\n<td style=\"text-align: center;\" width=\"154\">Printing</td>\r\n<td style=\"text-align: center;\" width=\"154\">Photography</td>\r\n<td style=\"text-align: center;\" width=\"154\">Videography</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-243\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Event-Management.jpg\" alt=\"Event Management\" width=\"68\" height=\"74\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-248\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Web-Development.jpg\" alt=\"Web Development\" width=\"73\" height=\"75\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-242\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Copywriting.jpg\" alt=\"Proof Reading\" width=\"63\" height=\"77\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-241\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Advertising-Booking.jpg\" alt=\"Advertising Booking\" width=\"66\" height=\"67\" /></strong></td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\">Event Management</td>\r\n<td style=\"text-align: center;\" width=\"154\">Website Development</td>\r\n<td style=\"text-align: center;\" width=\"154\">Proof Reading</td>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Advertising Bookings\r\n&amp; Management</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Terms &amp; Conditions Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nAll prices exclude GST and are shown in NZD. Travel for packages which include face to face meetings is included for a radius of up to 20km from Howick, any further kilometres will be charged at $0.74+GST.\r\n\r\nPayments can be accepted through our website by Credit Card, in person by Credit Card, Debit Card or Eftpos, or by internet banking. A Tax invoice will be provided for every payment.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"259\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"259\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"259\" admin_label=\"Call To Action - Contact\" title=\"Ready to take action?\" button_url=\"http://www.infinitymarketing.co.nz/contact/\" url_new_window=\"off\" button_text=\"Click here to contact us now\" use_background_color=\"off\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\nYour new future is waiting\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "WORK WITH US", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2016-03-30 12:03:40", "2016-03-29 23:03:40", "", "39", "http://www.infinitymarketing.co.nz/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("315", "1", "2016-03-30 12:04:32", "2016-03-29 23:04:32", "[et_pb_section admin_label=\"CTA Background\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-us/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\n\n<p style=\"text-align: center;\">Take the first step toward your new future</p>\n\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Work With Me", "", "inherit", "closed", "closed", "", "179-revision-v1", "", "", "2016-03-30 12:04:32", "2016-03-29 23:04:32", "", "179", "http://www.infinitymarketing.co.nz/179-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("316", "1", "2016-03-30 12:04:35", "2016-03-29 23:04:35", "[et_pb_section admin_label=\"section\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"About Infinity Marketing Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">About Infinity Marketing</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hello I\'m Candice Venter Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\"><strong>Hi, I\'m Candice Venter</strong></h2>\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h2 style=\"text-align: center;\"><em>Your outsourced marketing expert, </em><em>here to help you\r\nwith marketing your small business</em>\r\n<em> with marketing that works!</em></h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nRight now, I\'m sure you\'re feeling like you are trying to juggle it all, to know every aspect of how to do everything for your business, and not sure how to get the results you need for your business to grow (or even survive!) and overall just frustrated and bombarded!\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><strong>I get it, balancing everything is HARD and you quite simply can\'t be the expert at everything. </strong></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI\'m here to show you that there is help and a light at the end of the tunnel where your business can succeed.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhy I love helping small businesses deliver outstanding marketing and see their businesses grow as a result, is because I am inspired by what amazing people and talents there are in our community. My passion is helping other people succeed, and I believe that everyone <strong>deserves</strong> to succeed.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI want this for you! I want to share my skills as a qualified and experienced marketing professional, to help your business grow and succeed.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/About-Candice-.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Get Personal Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#888e8f\" border_style=\"outset\" border_width=\"2px\"]\r\n<h2 style=\"text-align: justify;\">Let\'s get personal</h2>\r\n[/et_pb_text][et_pb_text admin_label=\"Get Personal Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOriginally from South Africa, I have now lived over half my life in Auckland, New Zealand. That means I have a good mix of being able to tell it straight, with a good dose of kiwi ingenuity. I studied a Bachelor of Business and Information Management, with a second major in Marketing at the University of Auckland and have gained my professional experience in both global corporations and a great kiwi start-up.\r\n\r\nFamily is my everything, this includes my 15 year old miniature sausage dog, Dante. It\'s for them, that I do what I do.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Network NZ Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Network-NZ-Transparent.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>Infinity Marketing is proud to be a Foundation Member of Network NZ</h2>\r\nTo find out more about Network NZ, <a href=\"http://www.networknz.nz\">click here to visit www.networknz.nz</a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" global_module=\"179\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"179\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"179\" admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-us/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\">Take the first step toward your new future</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "ABOUT", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2016-03-30 12:04:35", "2016-03-29 23:04:35", "", "2", "http://www.infinitymarketing.co.nz/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("317", "1", "2016-04-01 16:07:50", "2016-04-01 03:07:50", "", "InfinityMarketing_paypal", "", "inherit", "open", "closed", "", "infinitymarketing_paypal", "", "", "2016-04-01 16:07:50", "2016-04-01 03:07:50", "", "0", "http://www.infinitymarketing.co.nz/wp-content/uploads/2016/04/InfinityMarketing_paypal.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("439", "1", "2016-04-29 16:45:20", "2016-04-29 04:45:20", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Us Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Work With Us</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Outsourced Marketing Department Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\">Infinity Marketing is your outsourced marketing department, here to help you with marketing that works!</h2>\r\n[/et_pb_text][et_pb_text admin_label=\"Overview Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: left;\">We offer a <strong>range of marketing services</strong> for your small business. Whether<strong> you know what you want</strong> and just <strong>don\'t have time to implement</strong>, or if you <strong>need someone to take control</strong> to make it happen for you, <strong>we can help.</strong></p>\r\n<p style=\"text-align: left;\">We offer great <strong>ongoing monthly packages,</strong> which are <strong>fully customisable</strong> to suit your business needs; and <strong>one-off services.</strong></p>\r\nWe can help you with\r\n<ul>\r\n	<li>Setting your <strong>marketing goals and strategy</strong> in line with your business goals,</li>\r\n	<li>Developing a <strong>marketing plan,</strong></li>\r\n	<li>Being your marketing “<strong>accountability buddy</strong>”, making sure that your marketing stays on track, with you every step of the way,</li>\r\n	<li>Or <strong>implementing your marketing</strong> if you are sick of trying to juggle and be an expert at it all.</li>\r\n</ul>\r\nEverything we do is <strong>customisable to suit your businesses individuality</strong>, and <strong>quotes are free,</strong> so please<a href=\"http://www.infinitymarketing.co.nz/contact/\"><strong> get in touch with us today to discuss your requirements.</strong> </a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"We Provide Text\" global_parent=\"414\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>We provide the following services</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Coaching Blurb\" global_parent=\"414\" title=\"Coaching\" url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne on One coaching and consulting services, either as a one-off service or on an on-going basis. Helping you get your marketing on track, and stay on track.\r\n\r\n[/et_pb_blurb][et_pb_button admin_label=\"See More Button\" button_url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" button_text=\"See more\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Marketing Services Blurb\" global_parent=\"414\" title=\"Marketing Services\" url=\"www.infinitymarketing.co.nz/marketing-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">Ongoing Marketing Services ensures your marketing happens like clock-work. The wheels keep churning, and your marketing keeps working for you.</p>\r\n[/et_pb_blurb][et_pb_button admin_label=\"See More Button\" button_url=\"www.infinitymarketing.co.nz/marketing-services\" url_new_window=\"off\" button_text=\"See more\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Projects Blurb\" global_parent=\"397\" title=\"Projects\" url=\"www.infinitymarketing.co.nz/projects\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%174%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne off marketing projects, such as brochures, website development, one off campaign plans, and much more. We can support you for a one off marketing project.\r\n\r\n[/et_pb_blurb][et_pb_button admin_label=\"See More Button\" button_url=\"www.infinitymarketing.co.nz/projects\" url_new_window=\"off\" button_text=\"See more\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Other Services Blurb\" global_parent=\"414\" title=\"Other Services\" url=\"www.infinitymarketing.co.nz/other-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%171%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe aim to provide all your marketing needs in one place, and work with specialists in order to do this. No need to find alternative suppliers, we can help you.\r\n\r\n[/et_pb_blurb][et_pb_button admin_label=\"See More Button\" button_url=\"www.infinitymarketing.co.nz/other-services\" url_new_window=\"off\" button_text=\"See more\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"259\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"259\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"259\" admin_label=\"Call To Action - Contact\" title=\"Ready to take action?\" button_url=\"http://www.infinitymarketing.co.nz/contact/\" url_new_window=\"off\" button_text=\"Click here to contact us now\" use_background_color=\"off\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\nYour new future is waiting\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "WORK WITH US", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2016-04-29 16:45:20", "2016-04-29 04:45:20", "", "39", "http://www.infinitymarketing.co.nz/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("318", "1", "2016-04-04 18:29:41", "2016-04-04 06:29:41", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Us Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Work With Us</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Us Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">We offer a range of marketing services for your small business. Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.</p>\r\n<p style=\"text-align: center;\">We offer great monthly packages, which are fully customisable to suit your business needs; and one-off services.</p>\r\n<p style=\"text-align: center;\">All prices exclude GST and are shown in NZD.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Coaching Image\" show_in_lightbox=\"off\" url=\"#Coaching-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Coaching_sml.jpg\" alt=\"Coaching\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Hands-on Packages Image\" show_in_lightbox=\"off\" url=\"#Hands-on-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Hands-on_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Individual Services Image\" show_in_lightbox=\"off\" url=\"#Individual-Projects\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Individual-Projects_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Other Services Image\" show_in_lightbox=\"off\" url=\"#Other-Services\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Other-Services_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Coaching Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Coaching-Packages\"></a>Coaching Packages<a name=\"Coaching-Packages\"></a></h2>\r\n<h3>We coach, and you implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTRO Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTRO Package - $189</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTRO Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis is about getting the basics right. We look at your current activity, recognise what is working, recommend any improvements and establish a plan going forward. This may suit those who have already started marketing their business and need help to get more customers or get themselves on track.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Establish a top line plan to get you where you want to be</li>\r\n</ul>\r\nThis involves a 1 hour face-to-face (where possible) or skype session and you will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nThis package can be upgraded to the INITIATE package if you feel you would like to go into more detail and create an initial marketing plan.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTRO Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Intro-Candice-v3.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=V46576J27YZG4\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INITIATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INITIATE Package - $589</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INITIATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThe INITIATE package is about giving your marketing the huge push it needs, either when you first start your business or a little later down the track. This is a holistic approach, taking you from strategy, goals, and tactics through to implementation. This will provide a plan of action for the next year.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Explore your positioning and they key messages and selling points for your customers</li>\r\n	<li>Understand who your competitors are and what your point of difference is</li>\r\n	<li>Talk tactics on where to be present, identifying why and how to achieve this</li>\r\n	<li>Establish a plan for making your customers take action</li>\r\n	<li>Work together to formulate a marketing plan for the year</li>\r\n</ul>\r\nThis involves a 2 x 1.5 hour face-to-face (where possible) or skype sessions.  You will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nWe recommend you follow on to the INTEGRATE package as this package measures the effectiveness of your plan as implemented, and refines this on an ongoing basis.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INITIATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Initiate-Candice-v2.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=W9P8XUK654W6G\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTEGRATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTEGRATE Monthly Package - $289 per month</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTEGRATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n(3 month minimum)\r\n\r\nThis is a one on one session twice per month where together, we ensure your marketing is on track. We can utilise measurement techniques to assess the effectiveness of your strategies and keeping you on track to achieve the desired goals.\r\n\r\nWe meet via skype* twice per month to discuss your progress, any ideas or opportunities, and bounce ideas around. (*This can also be done in one longer face to face session if possible)\r\n\r\nThese sessions will help to keep on track with your marketing plan, and guide you throughout the year to meet and exceed your marketing and business goals. By measuring the effectiveness of current strategies, refinements can be effected to ensure your marketing continues to maximise results.\r\n\r\nSupport is available by e-mail, Facebook or reasonable phone support throughout the month if required.\r\n\r\nWe recommend you begin with the INTRO Package before commencing this INTEGRATE Package .\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTEGRATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Integrate-Candice-v2.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=PN7JHBND8QBFJ\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hands-on Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Hands-on-Packages\"></a>Hands-on Packages<a name=\"Hands-on-Packages\"></a></h2>\r\n<h3>We implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Custom\" currency=\"$\" per=\"month\" sum=\"?\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]We can design a custom package that suits the unique needs of your business.[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Incredible Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Incredible\" currency=\"$\" per=\"month\" sum=\"300\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]1 x Facebook / Instagram post content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\nMonthly e-mail newsletter\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=GXECEYG2YK63W\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Intermediate Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Intermediate\" currency=\"$\" per=\"month\" sum=\"600\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]2 x Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised  content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nFortnightly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=NGKPUYHNBB62Y\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Advanced Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Advanced\" currency=\"$\" per=\"month\" sum=\"900\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nWeekly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=BLCK98JX9N83J\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Expert Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Expert\" currency=\"$\" per=\"month\" sum=\"1500\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nTwice weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n&nbsp;\r\n\r\n2 x Facebook cover content &amp; artwork\r\n\r\n2 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n2 x blog posts with search engine optimised content\r\n\r\nPoint of sale content &amp; artwork\r\n\r\nManage media bookings/ad campaigns (Social Media/Google)\r\n\r\nWeekly e-mail newsletter\r\n\r\nWebsite updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=9SKCDXVSUANKN\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Projects Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Individual-Projects\"></a>Individual Projects<a name=\"Individual-Projects\"></a></h2>\r\n<h3>We help you with a specific item of work</h3>\r\n<h4 style=\"text-align: justify;\"><span style=\"color: #009edb;\">INTRO SPECIAL PRICING VALID UNTIL 30TH APRIL 2016</span></h4>\r\n[/et_pb_text][et_pb_text admin_label=\"Individual Projects Table\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"234\">Brochures</td>\r\n<td width=\"95\"></td>\r\n<td width=\"95\"></td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          One sided flyer</td>\r\n<td width=\"95\">$100</td>\r\n<td width=\"95\">[button link=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=7MTEMEKPRRFAL\"] Buy Now[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Double sided flyer</td>\r\n<td width=\"95\">$150</td>\r\n<td width=\"95\">[button link=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=6D7UM34WXWEPJ\"] Buy Now[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Multi-page  DLE brochure</td>\r\n<td width=\"95\">$195</td>\r\n<td width=\"95\">[button link=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=Y5L9R8DF4KNFN\"] Buy Now[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Poster</td>\r\n<td width=\"95\">$100</td>\r\n<td width=\"95\">[button link=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=RXE6FW58ECAHS\"] Buy Now[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Point of sale</td>\r\n<td width=\"95\">$ P.O.A</td>\r\n<td width=\"95\">[button link=\"http://www.infinitymarketing.co.nz/contact/\"] Enquire[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website Content (200 words)</td>\r\n<td width=\"95\">$89</td>\r\n<td width=\"95\">[button link=\" https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=JVDVKH35P6GJ2\"] Buy Now[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Blog (400-600 words)</td>\r\n<td width=\"95\">$150</td>\r\n<td width=\"95\">[button link=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=3W7ZX86E7ABR6\"] Buy Now[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">E-mail Campaign</td>\r\n<td width=\"95\">$150</td>\r\n<td width=\"95\">[button link=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=9883VE784CLCN\"] Buy Now[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Cover Photo &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n<td width=\"95\">[button link=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=2WNJAJE85S2TY\"] Buy Now[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Post artwork &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n<td width=\"95\">[button link=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=PCKETDR2HCYWL\"] Buy Now[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website content revamp^</td>\r\n<td width=\"95\">$725</td>\r\n<td width=\"95\">[button link=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=XR4FA4RQ4Y2Q2\"] Buy Now[/button]</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Products Footer Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h4>If what you are looking for is not listed above, it does not necessarily mean we do not offer the service, <a href=\"http://www.infinitymarketing.co.nz/contact/\">please contact us for a quote.</a></h4>\r\nWe can provide quotes tailored to your specific project requirements.\r\n\r\nPrinting can be arranged and will be quoted separately. Photography and video options can be arranged and quoted for separately\r\n\r\nExcludes cost of stock images (if required). Any detailed artwork such as illustration or other will be quoted separately.\r\n\r\nPrices above include marketing copy and design and includes 2 revisions, further revisions will be quoted. Prices are available for content only options, proofing only options and design only options.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Other-Services\"></a>Other Services<a name=\"Other-Services\"></a></h2>\r\n<h3>We offer a number of other services - <a href=\"http://www.infinitymarketing.co.nz/contact/\">please contact us for a quote</a></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-244\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Graphic-Design.jpg\" alt=\"Graphic Design\" width=\"93\" height=\"76\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-246\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Printing.jpg\" alt=\"Printing\" width=\"77\" height=\"78\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-245\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Photography.jpg\" alt=\"Photography\" width=\"73\" height=\"60\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-247\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Video.jpg\" alt=\"Video\" width=\"68\" height=\"68\" /></strong></td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Graphic Design</p>\r\n</td>\r\n<td style=\"text-align: center;\" width=\"154\">Printing</td>\r\n<td style=\"text-align: center;\" width=\"154\">Photography</td>\r\n<td style=\"text-align: center;\" width=\"154\">Videography</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-243\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Event-Management.jpg\" alt=\"Event Management\" width=\"68\" height=\"74\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-248\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Web-Development.jpg\" alt=\"Web Development\" width=\"73\" height=\"75\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-242\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Copywriting.jpg\" alt=\"Proof Reading\" width=\"63\" height=\"77\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-241\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Advertising-Booking.jpg\" alt=\"Advertising Booking\" width=\"66\" height=\"67\" /></strong></td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\">Event Management</td>\r\n<td style=\"text-align: center;\" width=\"154\">Website Development</td>\r\n<td style=\"text-align: center;\" width=\"154\">Proof Reading</td>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Advertising Bookings\r\n&amp; Management</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Terms &amp; Conditions Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nAll prices exclude GST and are shown in NZD. Travel for packages which include face to face meetings is included for a radius of up to 20km from Howick, any further kilometres will be charged at $0.74+GST.\r\n\r\nPayments can be accepted through our website by Credit Card, in person by Credit Card, Debit Card or Eftpos, or by internet banking. A Tax invoice will be provided for every payment.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"259\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"259\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"259\" admin_label=\"Call To Action - Contact\" title=\"Ready to take action?\" button_url=\"http://www.infinitymarketing.co.nz/contact/\" url_new_window=\"off\" button_text=\"Click here to contact us now\" use_background_color=\"off\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\nYour new future is waiting\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "WORK WITH US", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2016-04-04 18:29:41", "2016-04-04 06:29:41", "", "39", "http://www.infinitymarketing.co.nz/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("319", "1", "2016-04-06 11:34:57", "2016-04-05 23:34:57", "Venus Network", "Venus Logo", "", "inherit", "open", "closed", "", "venus-logo", "", "", "2016-04-06 11:35:35", "2016-04-05 23:35:35", "", "2", "http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Venus-Logo.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("320", "1", "2016-04-06 11:40:56", "2016-04-05 23:40:56", "[et_pb_section admin_label=\"section\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"About Infinity Marketing Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">About Infinity Marketing</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hello I\'m Candice Venter Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\"><strong>Hi, I\'m Candice Venter</strong></h2>\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h2 style=\"text-align: center;\"><em>Your outsourced marketing expert, </em><em>here to help you\r\nwith marketing your small business</em>\r\n<em> with marketing that works!</em></h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nRight now, I\'m sure you\'re feeling like you are trying to juggle it all, to know every aspect of how to do everything for your business, and not sure how to get the results you need for your business to grow (or even survive!) and overall just frustrated and bombarded!\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><strong>I get it, balancing everything is HARD and you quite simply can\'t be the expert at everything. </strong></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI\'m here to show you that there is help and a light at the end of the tunnel where your business can succeed.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhy I love helping small businesses deliver outstanding marketing and see their businesses grow as a result, is because I am inspired by what amazing people and talents there are in our community. My passion is helping other people succeed, and I believe that everyone <strong>deserves</strong> to succeed.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI want this for you! I want to share my skills as a qualified and experienced marketing professional, to help your business grow and succeed.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/About-Candice-.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Get Personal Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#888e8f\" border_style=\"outset\" border_width=\"2px\"]\r\n<h2 style=\"text-align: justify;\">Let\'s get personal</h2>\r\n[/et_pb_text][et_pb_text admin_label=\"Get Personal Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOriginally from South Africa, I have now lived over half my life in Auckland, New Zealand. That means I have a good mix of being able to tell it straight, with a good dose of kiwi ingenuity. I studied a Bachelor of Business and Information Management, with a second major in Marketing at the University of Auckland and have gained my professional experience in both global corporations and a great kiwi start-up.\r\n\r\nFamily is my everything, this includes my 15 year old miniature sausage dog, Dante. It\'s for them, that I do what I do.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Network NZ Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Network-NZ-Transparent.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Network NZ Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>Infinity Marketing is proud to be a Foundation Member of Network NZ</h2>\r\nTo find out more about Network NZ, <a href=\"http://www.networknz.nz\">click here to visit www.networknz.nz</a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Venus Network Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>Infinity Marketing is proud to be a member of Venus Network</h2>\r\nTo find out more about Venus Network, <a href=\"http://www.venusnetwork.co.nz\">click here to visit www.venusnetwork.co.nz</a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Venus Network Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Venus-Logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" global_module=\"179\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"179\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"179\" admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-us/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\">Take the first step toward your new future</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "ABOUT", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2016-04-06 11:40:56", "2016-04-05 23:40:56", "", "2", "http://www.infinitymarketing.co.nz/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("323", "1", "2016-04-15 17:39:11", "2016-04-15 05:39:11", "[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/04/Passion-and-Drive.jpg\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Main Blog Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<em>“Build your own dreams, or someone else will hire you to build theirs”</em> – Farrah Gray / Tony Gaskins\r\n\r\nI’m not sure about you, but that little quote scared the living daylights out of me! Enough to give my inner entrepreneur the last shove over the edge to follow my inner voice to do what I love, to follow my dreams, to do what I was BORN to do!\r\n\r\nIs full time employment safe? For the most part…\r\n\r\nIs it rewarding? It can be…\r\n\r\nDoes it pay the bills? Yes\r\n\r\nDoes it fulfil your dreams? Well… this is where I hit a stumbling block…\r\n\r\nThe key here is that you are not your job, a job may seem important for survival, but if you let it creep into all areas of your life, you will end up feeling woefully misled. Do you know what the number one regret of people on their death bed is? They wish they didn’t work so hard.\r\n\r\nHere comes another quote\r\n\r\n<em>“Working hard for something we don’t care about is called stress. Working hard for something we love is called passion.”</em> – Simon Sinek\r\n\r\nWhy should you be labelled by what you do for a job? “Hi I am Candice and I am a Marketing Manager.” That explains the job I had, it does not explain who I am, what my talents are or what I am passionate about!\r\n\r\nWhat matters most is your talent, your passion and outlook in life. Should I not be introducing myself to potential clients in the following way, “<a href=\"http://www.infinitymarketing.co.nz/about/\">Hi I am Candice, I love helping small businesses grow and succeed through powerful marketing strategies and tactics</a>”?\r\n\r\nAllowing your job to put a label on you, somehow tries to define who you are. That seems like a dream assassin to me!\r\n\r\nGoing out “on your own” comes with a constant state of self-questioning, “Am I good enough? What if what I suggest doesn\'t work?” Being uncomfortable becomes the new normal. Nervousness and anxiety are not real, they come alongside the feeling of fear. But we feel the fear and do it anyway, get out of your comfort zone. Don’t hold back on life because you feel a bit scared. Build your dreams, live your passion and when your time comes to depart this world, be proud that you lived a life of worth - for yourself, your family and your community.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"CTA\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n&nbsp;\r\n<h2><strong>What are your passions and dreams? Let me know in the comments below!</strong></h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Why Building Your Own Dreams Is So Important – How Infinity Marketing Came To Be…", "", "publish", "open", "open", "", "why-building-your-own-dreams-is-so-important", "", "", "2016-04-15 17:40:22", "2016-04-15 05:40:22", "", "0", "http://www.infinitymarketing.co.nz/?p=323", "0", "post", "", "0");
INSERT INTO `wp_posts` VALUES("324", "1", "2016-04-15 17:22:24", "2016-04-15 05:22:24", "[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" /][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1><strong>Why Building Your Own Dreams is So Important – How Infinity Marketing Came to be…</strong></h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Main Blog Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<em>“Build your own dreams, or someone else will hire you to build theirs”</em> – Farrah Gray / Tony Gaskins\r\n\r\nI’m not sure about you, but that little quote scared the living daylights out of me! Enough to give my inner entrepreneur the last shove over the edge to follow my inner voice to do what I love, to follow my dreams, to do what I was BORN to do!\r\n\r\nIs full time employment safe? For the most part…\r\n\r\nIs it rewarding? It can be…\r\n\r\nDoes it pay the bills? Yes\r\n\r\nDoes it fulfil your dreams? Well… this is where I hit a stumbling block…\r\n\r\nThe key here is that you are not your job, a job may seem important for survival, but if you let it creep into all areas of your life, you will end up feeling woefully misled. Do you know what the number one regret of people on their death bed is? They wish they didn’t work so hard.\r\n\r\nHere comes another quote\r\n\r\n<em>“Working hard for something we don’t care about is called stress. Working hard for something we love is called passion.”</em> – Simon Sinek\r\n\r\nWhy should you be labelled by what you do for a job? “Hi I am Candice and I am a Marketing Manager.” That explains the job I had, it does not explain who I am, what my talents are or what I am passionate about!\r\n\r\nWhat matters most is your talent, your passion and outlook in life. Should I not be introducing myself to potential clients in the following way, “Hi I am Candice, I love helping small businesses grow and succeed through powerful marketing strategies and tactics”?\r\n\r\nAllowing your job to put a label on you, somehow tries to define who you are. That seems like a dream assassin to me!\r\n\r\nGoing out “on your own” comes with a constant state of self-questioning, “Am I good enough? What if what I suggest doesn’t work?” Being uncomfortable becomes the new normal. Nervousness and anxiety are not real, they come alongside the feeling of fear. But we feel the fear and do it anyway, get out of your comfort zone. Don’t hold back on life because you feel a bit scared. Build your dreams, live your passion and when your time comes to depart this world, be proud that you lived a life of worth - for yourself, your family and your community.\r\n<h4><strong>What is your passion? Let me know in the comments below!</strong></h4>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "", "", "inherit", "closed", "closed", "", "323-revision-v1", "", "", "2016-04-15 17:22:24", "2016-04-15 05:22:24", "", "323", "http://www.infinitymarketing.co.nz/323-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("325", "1", "2016-04-15 17:22:40", "2016-04-15 05:22:40", "[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" /][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1><strong>Why Building Your Own Dreams is So Important – How Infinity Marketing Came to be…</strong></h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Main Blog Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<em>“Build your own dreams, or someone else will hire you to build theirs”</em> – Farrah Gray / Tony Gaskins\r\n\r\nI’m not sure about you, but that little quote scared the living daylights out of me! Enough to give my inner entrepreneur the last shove over the edge to follow my inner voice to do what I love, to follow my dreams, to do what I was BORN to do!\r\n\r\nIs full time employment safe? For the most part…\r\n\r\nIs it rewarding? It can be…\r\n\r\nDoes it pay the bills? Yes\r\n\r\nDoes it fulfil your dreams? Well… this is where I hit a stumbling block…\r\n\r\nThe key here is that you are not your job, a job may seem important for survival, but if you let it creep into all areas of your life, you will end up feeling woefully misled. Do you know what the number one regret of people on their death bed is? They wish they didn’t work so hard.\r\n\r\nHere comes another quote\r\n\r\n<em>“Working hard for something we don’t care about is called stress. Working hard for something we love is called passion.”</em> – Simon Sinek\r\n\r\nWhy should you be labelled by what you do for a job? “Hi I am Candice and I am a Marketing Manager.” That explains the job I had, it does not explain who I am, what my talents are or what I am passionate about!\r\n\r\nWhat matters most is your talent, your passion and outlook in life. Should I not be introducing myself to potential clients in the following way, “Hi I am Candice, I love helping small businesses grow and succeed through powerful marketing strategies and tactics”?\r\n\r\nAllowing your job to put a label on you, somehow tries to define who you are. That seems like a dream assassin to me!\r\n\r\nGoing out “on your own” comes with a constant state of self-questioning, “Am I good enough? What if what I suggest doesn’t work?” Being uncomfortable becomes the new normal. Nervousness and anxiety are not real, they come alongside the feeling of fear. But we feel the fear and do it anyway, get out of your comfort zone. Don’t hold back on life because you feel a bit scared. Build your dreams, live your passion and when your time comes to depart this world, be proud that you lived a life of worth - for yourself, your family and your community.\r\n<h4><strong>What is your passion? Let me know in the comments below!</strong></h4>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Why Building Your Own Dreams is So Important – How Infinity Marketing Came to be…", "", "inherit", "closed", "closed", "", "323-revision-v1", "", "", "2016-04-15 17:22:40", "2016-04-15 05:22:40", "", "323", "http://www.infinitymarketing.co.nz/323-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("326", "1", "2016-04-15 17:24:04", "2016-04-15 05:24:04", "[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Main Blog Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<em>“Build your own dreams, or someone else will hire you to build theirs”</em> – Farrah Gray / Tony Gaskins\r\n\r\nI’m not sure about you, but that little quote scared the living daylights out of me! Enough to give my inner entrepreneur the last shove over the edge to follow my inner voice to do what I love, to follow my dreams, to do what I was BORN to do!\r\n\r\nIs full time employment safe? For the most part…\r\n\r\nIs it rewarding? It can be…\r\n\r\nDoes it pay the bills? Yes\r\n\r\nDoes it fulfil your dreams? Well… this is where I hit a stumbling block…\r\n\r\nThe key here is that you are not your job, a job may seem important for survival, but if you let it creep into all areas of your life, you will end up feeling woefully misled. Do you know what the number one regret of people on their death bed is? They wish they didn’t work so hard.\r\n\r\nHere comes another quote\r\n\r\n<em>“Working hard for something we don’t care about is called stress. Working hard for something we love is called passion.”</em> – Simon Sinek\r\n\r\nWhy should you be labelled by what you do for a job? “Hi I am Candice and I am a Marketing Manager.” That explains the job I had, it does not explain who I am, what my talents are or what I am passionate about!\r\n\r\nWhat matters most is your talent, your passion and outlook in life. Should I not be introducing myself to potential clients in the following way, “Hi I am Candice, I love helping small businesses grow and succeed through powerful marketing strategies and tactics”?\r\n\r\nAllowing your job to put a label on you, somehow tries to define who you are. That seems like a dream assassin to me!\r\n\r\nGoing out “on your own” comes with a constant state of self-questioning, “Am I good enough? What if what I suggest doesn’t work?” Being uncomfortable becomes the new normal. Nervousness and anxiety are not real, they come alongside the feeling of fear. But we feel the fear and do it anyway, get out of your comfort zone. Don’t hold back on life because you feel a bit scared. Build your dreams, live your passion and when your time comes to depart this world, be proud that you lived a life of worth - for yourself, your family and your community.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Main Blog Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n&nbsp;\r\n<h3><strong>What is your passion? Let me know in the comments below!</strong></h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Why Building Your Own Dreams is So Important – How Infinity Marketing Came to be…", "", "inherit", "closed", "closed", "", "323-revision-v1", "", "", "2016-04-15 17:24:04", "2016-04-15 05:24:04", "", "323", "http://www.infinitymarketing.co.nz/323-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("327", "1", "2016-04-15 17:29:54", "2016-04-15 05:29:54", "Passion and Drive", "Passion and Drive", "", "inherit", "open", "closed", "", "passion-and-drive", "", "", "2016-04-15 17:30:03", "2016-04-15 05:30:03", "", "323", "http://www.infinitymarketing.co.nz/wp-content/uploads/2016/04/Passion-and-Drive.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("328", "1", "2016-04-15 17:30:12", "2016-04-15 05:30:12", "[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/04/Passion-and-Drive.jpg\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Main Blog Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<em>“Build your own dreams, or someone else will hire you to build theirs”</em> – Farrah Gray / Tony Gaskins\r\n\r\nI’m not sure about you, but that little quote scared the living daylights out of me! Enough to give my inner entrepreneur the last shove over the edge to follow my inner voice to do what I love, to follow my dreams, to do what I was BORN to do!\r\n\r\nIs full time employment safe? For the most part…\r\n\r\nIs it rewarding? It can be…\r\n\r\nDoes it pay the bills? Yes\r\n\r\nDoes it fulfil your dreams? Well… this is where I hit a stumbling block…\r\n\r\nThe key here is that you are not your job, a job may seem important for survival, but if you let it creep into all areas of your life, you will end up feeling woefully misled. Do you know what the number one regret of people on their death bed is? They wish they didn’t work so hard.\r\n\r\nHere comes another quote\r\n\r\n<em>“Working hard for something we don’t care about is called stress. Working hard for something we love is called passion.”</em> – Simon Sinek\r\n\r\nWhy should you be labelled by what you do for a job? “Hi I am Candice and I am a Marketing Manager.” That explains the job I had, it does not explain who I am, what my talents are or what I am passionate about!\r\n\r\nWhat matters most is your talent, your passion and outlook in life. Should I not be introducing myself to potential clients in the following way, “Hi I am Candice, I love helping small businesses grow and succeed through powerful marketing strategies and tactics”?\r\n\r\nAllowing your job to put a label on you, somehow tries to define who you are. That seems like a dream assassin to me!\r\n\r\nGoing out “on your own” comes with a constant state of self-questioning, “Am I good enough? What if what I suggest doesn’t work?” Being uncomfortable becomes the new normal. Nervousness and anxiety are not real, they come alongside the feeling of fear. But we feel the fear and do it anyway, get out of your comfort zone. Don’t hold back on life because you feel a bit scared. Build your dreams, live your passion and when your time comes to depart this world, be proud that you lived a life of worth - for yourself, your family and your community.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Main Blog Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n&nbsp;\r\n<h3><strong>What is your passion? Let me know in the comments below!</strong></h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Why Building Your Own Dreams is So Important – How Infinity Marketing Came to be…", "", "inherit", "closed", "closed", "", "323-revision-v1", "", "", "2016-04-15 17:30:12", "2016-04-15 05:30:12", "", "323", "http://www.infinitymarketing.co.nz/323-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("329", "1", "2016-04-15 17:31:08", "2016-04-15 05:31:08", "[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/04/Passion-and-Drive.jpg\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Main Blog Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<em>“Build your own dreams, or someone else will hire you to build theirs”</em> – Farrah Gray / Tony Gaskins\r\n\r\nI’m not sure about you, but that little quote scared the living daylights out of me! Enough to give my inner entrepreneur the last shove over the edge to follow my inner voice to do what I love, to follow my dreams, to do what I was BORN to do!\r\n\r\nIs full time employment safe? For the most part…\r\n\r\nIs it rewarding? It can be…\r\n\r\nDoes it pay the bills? Yes\r\n\r\nDoes it fulfil your dreams? Well… this is where I hit a stumbling block…\r\n\r\nThe key here is that you are not your job, a job may seem important for survival, but if you let it creep into all areas of your life, you will end up feeling woefully misled. Do you know what the number one regret of people on their death bed is? They wish they didn’t work so hard.\r\n\r\nHere comes another quote\r\n\r\n<em>“Working hard for something we don’t care about is called stress. Working hard for something we love is called passion.”</em> – Simon Sinek\r\n\r\nWhy should you be labelled by what you do for a job? “Hi I am Candice and I am a Marketing Manager.” That explains the job I had, it does not explain who I am, what my talents are or what I am passionate about!\r\n\r\nWhat matters most is your talent, your passion and outlook in life. Should I not be introducing myself to potential clients in the following way, “Hi I am Candice, I love helping small businesses grow and succeed through powerful marketing strategies and tactics”?\r\n\r\nAllowing your job to put a label on you, somehow tries to define who you are. That seems like a dream assassin to me!\r\n\r\nGoing out “on your own” comes with a constant state of self-questioning, “Am I good enough? What if what I suggest doesn’t work?” Being uncomfortable becomes the new normal. Nervousness and anxiety are not real, they come alongside the feeling of fear. But we feel the fear and do it anyway, get out of your comfort zone. Don’t hold back on life because you feel a bit scared. Build your dreams, live your passion and when your time comes to depart this world, be proud that you lived a life of worth - for yourself, your family and your community.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Main Blog Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n&nbsp;\r\n<h3><strong>What is your passion? Let me know in the comments below!</strong></h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Why Building Your Own Dreams Is So Important – How Infinity Marketing Came To Be…", "", "inherit", "closed", "closed", "", "323-revision-v1", "", "", "2016-04-15 17:31:08", "2016-04-15 05:31:08", "", "323", "http://www.infinitymarketing.co.nz/323-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("330", "1", "2016-04-15 17:36:03", "2016-04-15 05:36:03", "[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/04/Passion-and-Drive.jpg\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Main Blog Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<em>“Build your own dreams, or someone else will hire you to build theirs”</em> – Farrah Gray / Tony Gaskins\r\n\r\nI’m not sure about you, but that little quote scared the living daylights out of me! Enough to give my inner entrepreneur the last shove over the edge to follow my inner voice to do what I love, to follow my dreams, to do what I was BORN to do!\r\n\r\nIs full time employment safe? For the most part…\r\n\r\nIs it rewarding? It can be…\r\n\r\nDoes it pay the bills? Yes\r\n\r\nDoes it fulfil your dreams? Well… this is where I hit a stumbling block…\r\n\r\nThe key here is that you are not your job, a job may seem important for survival, but if you let it creep into all areas of your life, you will end up feeling woefully misled. Do you know what the number one regret of people on their death bed is? They wish they didn’t work so hard.\r\n\r\nHere comes another quote\r\n\r\n<em>“Working hard for something we don’t care about is called stress. Working hard for something we love is called passion.”</em> – Simon Sinek\r\n\r\nWhy should you be labelled by what you do for a job? “Hi I am Candice and I am a Marketing Manager.” That explains the job I had, it does not explain who I am, what my talents are or what I am passionate about!\r\n\r\nWhat matters most is your talent, your passion and outlook in life. Should I not be introducing myself to potential clients in the following way, “Hi I am Candice, I love helping small businesses grow and succeed through powerful marketing strategies and tactics”?\r\n\r\nAllowing your job to put a label on you, somehow tries to define who you are. That seems like a dream assassin to me!\r\n\r\nGoing out “on your own” comes with a constant state of self-questioning, “Am I good enough? What if what I suggest doesn’t work?” Being uncomfortable becomes the new normal. Nervousness and anxiety are not real, they come alongside the feeling of fear. But we feel the fear and do it anyway, get out of your comfort zone. Don’t hold back on life because you feel a bit scared. Build your dreams, live your passion and when your time comes to depart this world, be proud that you lived a life of worth - for yourself, your family and your community.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Main Blog Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n&nbsp;\r\n<h2><strong>What is your passion or dream? Let me know in the comments below!</strong></h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Why Building Your Own Dreams Is So Important – How Infinity Marketing Came To Be…", "", "inherit", "closed", "closed", "", "323-revision-v1", "", "", "2016-04-15 17:36:03", "2016-04-15 05:36:03", "", "323", "http://www.infinitymarketing.co.nz/323-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("331", "1", "2016-04-15 17:37:10", "2016-04-15 05:37:10", "[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/04/Passion-and-Drive.jpg\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Main Blog Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<em>“Build your own dreams, or someone else will hire you to build theirs”</em> – Farrah Gray / Tony Gaskins\r\n\r\nI’m not sure about you, but that little quote scared the living daylights out of me! Enough to give my inner entrepreneur the last shove over the edge to follow my inner voice to do what I love, to follow my dreams, to do what I was BORN to do!\r\n\r\nIs full time employment safe? For the most part…\r\n\r\nIs it rewarding? It can be…\r\n\r\nDoes it pay the bills? Yes\r\n\r\nDoes it fulfil your dreams? Well… this is where I hit a stumbling block…\r\n\r\nThe key here is that you are not your job, a job may seem important for survival, but if you let it creep into all areas of your life, you will end up feeling woefully misled. Do you know what the number one regret of people on their death bed is? They wish they didn’t work so hard.\r\n\r\nHere comes another quote\r\n\r\n<em>“Working hard for something we don’t care about is called stress. Working hard for something we love is called passion.”</em> – Simon Sinek\r\n\r\nWhy should you be labelled by what you do for a job? “Hi I am Candice and I am a Marketing Manager.” That explains the job I had, it does not explain who I am, what my talents are or what I am passionate about!\r\n\r\nWhat matters most is your talent, your passion and outlook in life. Should I not be introducing myself to potential clients in the following way, “Hi I am Candice, I love helping small businesses grow and succeed through powerful marketing strategies and tactics”?\r\n\r\nAllowing your job to put a label on you, somehow tries to define who you are. That seems like a dream assassin to me!\r\n\r\nGoing out “on your own” comes with a constant state of self-questioning, “Am I good enough? What if what I suggest doesn’t work?” Being uncomfortable becomes the new normal. Nervousness and anxiety are not real, they come alongside the feeling of fear. But we feel the fear and do it anyway, get out of your comfort zone. Don’t hold back on life because you feel a bit scared. Build your dreams, live your passion and when your time comes to depart this world, be proud that you lived a life of worth - for yourself, your family and your community.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"CTA\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n&nbsp;\r\n<h2><strong>What are your passions or dreams? Let me know in the comments below!</strong></h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Why Building Your Own Dreams Is So Important – How Infinity Marketing Came To Be…", "", "inherit", "closed", "closed", "", "323-revision-v1", "", "", "2016-04-15 17:37:10", "2016-04-15 05:37:10", "", "323", "http://www.infinitymarketing.co.nz/323-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("332", "1", "2016-04-15 17:38:56", "2016-04-15 05:38:56", "[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/04/Passion-and-Drive.jpg\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Main Blog Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<em>“Build your own dreams, or someone else will hire you to build theirs”</em> – Farrah Gray / Tony Gaskins\r\n\r\nI’m not sure about you, but that little quote scared the living daylights out of me! Enough to give my inner entrepreneur the last shove over the edge to follow my inner voice to do what I love, to follow my dreams, to do what I was BORN to do!\r\n\r\nIs full time employment safe? For the most part…\r\n\r\nIs it rewarding? It can be…\r\n\r\nDoes it pay the bills? Yes\r\n\r\nDoes it fulfil your dreams? Well… this is where I hit a stumbling block…\r\n\r\nThe key here is that you are not your job, a job may seem important for survival, but if you let it creep into all areas of your life, you will end up feeling woefully misled. Do you know what the number one regret of people on their death bed is? They wish they didn’t work so hard.\r\n\r\nHere comes another quote\r\n\r\n<em>“Working hard for something we don’t care about is called stress. Working hard for something we love is called passion.”</em> – Simon Sinek\r\n\r\nWhy should you be labelled by what you do for a job? “Hi I am Candice and I am a Marketing Manager.” That explains the job I had, it does not explain who I am, what my talents are or what I am passionate about!\r\n\r\nWhat matters most is your talent, your passion and outlook in life. Should I not be introducing myself to potential clients in the following way, “<a href=\"http://www.infinitymarketing.co.nz/about/\">Hi I am Candice, I love helping small businesses grow and succeed through powerful marketing strategies and tactics</a>”?\r\n\r\nAllowing your job to put a label on you, somehow tries to define who you are. That seems like a dream assassin to me!\r\n\r\nGoing out “on your own” comes with a constant state of self-questioning, “Am I good enough? What if what I suggest doesn\'t work?” Being uncomfortable becomes the new normal. Nervousness and anxiety are not real, they come alongside the feeling of fear. But we feel the fear and do it anyway, get out of your comfort zone. Don’t hold back on life because you feel a bit scared. Build your dreams, live your passion and when your time comes to depart this world, be proud that you lived a life of worth - for yourself, your family and your community.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"CTA\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n&nbsp;\r\n<h2><strong>What are your passions and dreams? Let me know in the comments below!</strong></h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Why Building Your Own Dreams Is So Important – How Infinity Marketing Came To Be…", "", "inherit", "closed", "closed", "", "323-revision-v1", "", "", "2016-04-15 17:38:56", "2016-04-15 05:38:56", "", "323", "http://www.infinitymarketing.co.nz/323-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("335", "1", "2016-04-29 13:19:25", "2016-04-29 01:19:25", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Us Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Work With Us</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Us Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">We offer a range of marketing services for your small business. Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.</p>\r\n<p style=\"text-align: center;\">We offer great monthly packages, which are fully customisable to suit your business needs; and one-off services.</p>\r\n<p style=\"text-align: center;\">All prices exclude GST and are shown in NZD.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Coaching Image\" show_in_lightbox=\"off\" url=\"#Coaching-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Coaching_sml.jpg\" alt=\"Coaching\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Hands-on Packages Image\" show_in_lightbox=\"off\" url=\"#Hands-on-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Hands-on_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Individual Services Image\" show_in_lightbox=\"off\" url=\"#Individual-Projects\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Individual-Projects_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Other Services Image\" show_in_lightbox=\"off\" url=\"#Other-Services\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Other-Services_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Coaching Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Coaching-Packages\"></a>Coaching Packages<a name=\"Coaching-Packages\"></a></h2>\r\n<h3>We coach, and you implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTRO Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTRO Package - $189</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTRO Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis is about getting the basics right. We look at your current activity, recognise what is working, recommend any improvements and establish a plan going forward. This may suit those who have already started marketing their business and need help to get more customers or get themselves on track.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Establish a top line plan to get you where you want to be</li>\r\n</ul>\r\nThis involves a 1 hour face-to-face (where possible) or skype session and you will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nThis package can be upgraded to the INITIATE package if you feel you would like to go into more detail and create an initial marketing plan.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTRO Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Intro-Candice-v3.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=V46576J27YZG4\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INITIATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INITIATE Package - $589</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INITIATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThe INITIATE package is about giving your marketing the huge push it needs, either when you first start your business or a little later down the track. This is a holistic approach, taking you from strategy, goals, and tactics through to implementation. This will provide a plan of action for the next year.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Explore your positioning and the key messages and selling points for your customers</li>\r\n	<li>Understand who your competitors are and what your point of difference is</li>\r\n	<li>Talk tactics on where to be present, identifying why and how to achieve this</li>\r\n	<li>Establish a plan for making your customers take action</li>\r\n	<li>Work together to formulate a marketing plan for the year</li>\r\n</ul>\r\nThis involves a 2 x 1.5 hour face-to-face (where possible) or skype sessions.  You will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nWe recommend you follow on to the INTEGRATE package as this package measures the effectiveness of your plan as implemented, and refines this on an ongoing basis.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INITIATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Initiate-Candice-v2.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=W9P8XUK654W6G\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTEGRATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTEGRATE Monthly Package - $289 per month</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTEGRATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n(3 month minimum)\r\n\r\nThis is a one on one session twice per month where together, we ensure your marketing is on track. We can utilise measurement techniques to assess the effectiveness of your strategies and keeping you on track to achieve the desired goals.\r\n\r\nWe meet via skype* twice per month to discuss your progress, any ideas or opportunities, and bounce ideas around. (*This can also be done in one longer face to face session if possible)\r\n\r\nThese sessions will help to keep on track with your marketing plan, and guide you throughout the year to meet and exceed your marketing and business goals. By measuring the effectiveness of current strategies, refinements can be effected to ensure your marketing continues to maximise results.\r\n\r\nSupport is available by e-mail, Facebook or reasonable phone support throughout the month if required.\r\n\r\nWe recommend you begin with the INTRO Package before commencing this INTEGRATE Package .\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTEGRATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Integrate-Candice-v2.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=PN7JHBND8QBFJ\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hands-on Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Hands-on-Packages\"></a>Hands-on Packages<a name=\"Hands-on-Packages\"></a></h2>\r\n<h3>We implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Custom\" currency=\"$\" per=\"month\" sum=\"?\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]We can design a custom package that suits the unique needs of your business.[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Incredible Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Incredible\" currency=\"$\" per=\"month\" sum=\"300\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]1 x Facebook / Instagram post content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\nMonthly e-mail newsletter\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=GXECEYG2YK63W\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Intermediate Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Intermediate\" currency=\"$\" per=\"month\" sum=\"600\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]2 x Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised  content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nFortnightly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=NGKPUYHNBB62Y\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Advanced Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Advanced\" currency=\"$\" per=\"month\" sum=\"900\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nWeekly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=BLCK98JX9N83J\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Expert Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Expert\" currency=\"$\" per=\"month\" sum=\"1500\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nTwice weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n&nbsp;\r\n\r\n2 x Facebook cover content &amp; artwork\r\n\r\n2 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n2 x blog posts with search engine optimised content\r\n\r\nPoint of sale content &amp; artwork\r\n\r\nManage media bookings/ad campaigns (Social Media/Google)\r\n\r\nWeekly e-mail newsletter\r\n\r\nWebsite updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=9SKCDXVSUANKN\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Projects Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Individual-Projects\"></a>Individual Projects<a name=\"Individual-Projects\"></a></h2>\r\n<h3>We help you with a specific item of work</h3>\r\n<h4 style=\"text-align: justify;\"><span style=\"color: #009edb;\">INTRO SPECIAL PRICING VALID UNTIL 30TH APRIL 2016</span></h4>\r\n[/et_pb_text][et_pb_text admin_label=\"Individual Projects Table\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"234\">Brochures</td>\r\n<td width=\"95\"></td>\r\n<td width=\"95\"></td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          One sided flyer</td>\r\n<td width=\"95\">$100</td>\r\n<td width=\"95\">[button link=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=7MTEMEKPRRFAL\"] Buy Now[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Double sided flyer</td>\r\n<td width=\"95\">$150</td>\r\n<td width=\"95\">[button link=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=6D7UM34WXWEPJ\"] Buy Now[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Multi-page  DLE brochure</td>\r\n<td width=\"95\">$195</td>\r\n<td width=\"95\">[button link=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=Y5L9R8DF4KNFN\"] Buy Now[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Poster</td>\r\n<td width=\"95\">$100</td>\r\n<td width=\"95\">[button link=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=RXE6FW58ECAHS\"] Buy Now[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Point of sale</td>\r\n<td width=\"95\">$ P.O.A</td>\r\n<td width=\"95\">[button link=\"http://www.infinitymarketing.co.nz/contact/\"] Enquire[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website Content (200 words)</td>\r\n<td width=\"95\">$89</td>\r\n<td width=\"95\">[button link=\" https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=JVDVKH35P6GJ2\"] Buy Now[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Blog (400-600 words)</td>\r\n<td width=\"95\">$150</td>\r\n<td width=\"95\">[button link=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=3W7ZX86E7ABR6\"] Buy Now[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">E-mail Campaign</td>\r\n<td width=\"95\">$150</td>\r\n<td width=\"95\">[button link=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=9883VE784CLCN\"] Buy Now[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Cover Photo &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n<td width=\"95\">[button link=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=2WNJAJE85S2TY\"] Buy Now[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Post artwork &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n<td width=\"95\">[button link=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=PCKETDR2HCYWL\"] Buy Now[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website content revamp^</td>\r\n<td width=\"95\">$725</td>\r\n<td width=\"95\">[button link=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=XR4FA4RQ4Y2Q2\"] Buy Now[/button]</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Products Footer Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h4>If what you are looking for is not listed above, it does not necessarily mean we do not offer the service, <a href=\"http://www.infinitymarketing.co.nz/contact/\">please contact us for a quote.</a></h4>\r\nWe can provide quotes tailored to your specific project requirements.\r\n\r\nPrinting can be arranged and will be quoted separately. Photography and video options can be arranged and quoted for separately\r\n\r\nExcludes cost of stock images (if required). Any detailed artwork such as illustration or other will be quoted separately.\r\n\r\nPrices above include marketing copy and design and includes 2 revisions, further revisions will be quoted. Prices are available for content only options, proofing only options and design only options.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Other-Services\"></a>Other Services<a name=\"Other-Services\"></a></h2>\r\n<h3>We offer a number of other services - <a href=\"http://www.infinitymarketing.co.nz/contact/\">please contact us for a quote</a></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-244\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Graphic-Design.jpg\" alt=\"Graphic Design\" width=\"93\" height=\"76\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-246\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Printing.jpg\" alt=\"Printing\" width=\"77\" height=\"78\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-245\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Photography.jpg\" alt=\"Photography\" width=\"73\" height=\"60\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-247\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Video.jpg\" alt=\"Video\" width=\"68\" height=\"68\" /></strong></td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Graphic Design</p>\r\n</td>\r\n<td style=\"text-align: center;\" width=\"154\">Printing</td>\r\n<td style=\"text-align: center;\" width=\"154\">Photography</td>\r\n<td style=\"text-align: center;\" width=\"154\">Videography</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-243\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Event-Management.jpg\" alt=\"Event Management\" width=\"68\" height=\"74\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-248\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Web-Development.jpg\" alt=\"Web Development\" width=\"73\" height=\"75\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-242\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Copywriting.jpg\" alt=\"Proof Reading\" width=\"63\" height=\"77\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-241\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Advertising-Booking.jpg\" alt=\"Advertising Booking\" width=\"66\" height=\"67\" /></strong></td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\">Event Management</td>\r\n<td style=\"text-align: center;\" width=\"154\">Website Development</td>\r\n<td style=\"text-align: center;\" width=\"154\">Proof Reading</td>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Advertising Bookings\r\n&amp; Management</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Terms &amp; Conditions Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nAll prices exclude GST and are shown in NZD. Travel for packages which include face to face meetings is included for a radius of up to 20km from Howick, any further kilometres will be charged at $0.74+GST.\r\n\r\nPayments can be accepted through our website by Credit Card, in person by Credit Card, Debit Card or Eftpos, or by internet banking. A Tax invoice will be provided for every payment.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"259\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"259\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"259\" admin_label=\"Call To Action - Contact\" title=\"Ready to take action?\" button_url=\"http://www.infinitymarketing.co.nz/contact/\" url_new_window=\"off\" button_text=\"Click here to contact us now\" use_background_color=\"off\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\nYour new future is waiting\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "WORK WITH US", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2016-04-29 13:19:25", "2016-04-29 01:19:25", "", "39", "http://www.infinitymarketing.co.nz/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("451", "1", "2016-05-17 12:54:33", "2016-05-17 00:54:33", "{\"email_to\":\"[admin_email]\",\"cc\":\"\",\"bcc\":\"\",\"from\":\"[sitename] <[admin_email]>\",\"reply_to\":\"\",\"email_subject\":\"\",\"email_message\":\"[default-message]\",\"inc_user_info\":\"0\",\"plain_text\":\"0\",\"event\":[\"create\"],\"conditions\":{\"send_stop\":\"\",\"any_all\":\"\"}}", "Email Notification", "email", "publish", "closed", "closed", "", "5_email_", "", "", "2016-05-17 12:54:33", "2016-05-17 00:54:33", "", "0", "http://www.infinitymarketing.co.nz/frm_form_actions/5_email_/", "5", "frm_form_actions", "", "0");
INSERT INTO `wp_posts` VALUES("337", "1", "2016-04-29 16:45:46", "2016-04-29 04:45:46", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Coaching Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Coaching</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Coaching Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Coaching-Packages\"></a>Coaching Packages<a name=\"Coaching-Packages\"></a></h2>\r\n<h3>We coach, and you implement your marketing</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Coaching Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: left;\">Our <strong>marketing coaching and consulting packages</strong> are here to help you when you\'re starting out, if you need a helping hand to get you on track later down the line, or if you need someone to help guide you on an on-going basis.</p>\r\n<p style=\"text-align: left;\"><strong>You have complete control over implementation, with the aid of an expert resource to guide you.</strong></p>\r\n<p style=\"text-align: left;\">We offer <strong>great monthly packages</strong>, which are<strong> fully customisable</strong> to suit your business needs; and <strong>one-off services.</strong></p>\r\n<p style=\"text-align: left;\">All prices exclude GST and are shown in NZD.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTRO Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTRO Package - $189</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTRO Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis is about getting the basics right. We look at your current activity, recognise what is working, recommend any improvements and establish a plan going forward. This may suit those who have already started marketing their business and need help to get more customers or get themselves on track.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Establish a top line plan to get you where you want to be</li>\r\n</ul>\r\nThis involves a 1 hour face-to-face (where possible) or skype session and you will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nThis package can be upgraded to the INITIATE package if you feel you would like to go into more detail and create an initial marketing plan.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTRO Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Intro-Candice-v3.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=V46576J27YZG4\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INITIATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INITIATE Package - $589</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INITIATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThe INITIATE package is about giving your marketing the huge push it needs, either when you first start your business or a little later down the track. This is a holistic approach, taking you from strategy, goals, and tactics through to implementation. This will provide a plan of action for the next year.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Explore your positioning and the key messages and selling points for your customers</li>\r\n	<li>Understand who your competitors are and what your point of difference is</li>\r\n	<li>Talk tactics on where to be present, identifying why and how to achieve this</li>\r\n	<li>Establish a plan for making your customers take action</li>\r\n	<li>Work together to formulate a marketing plan for the year</li>\r\n</ul>\r\nThis involves a 2 x 1.5 hour face-to-face (where possible) or skype sessions.  You will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nWe recommend you follow on to the INTEGRATE package as this package measures the effectiveness of your plan as implemented, and refines this on an ongoing basis.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INITIATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Initiate-Candice-v2.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=W9P8XUK654W6G\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTEGRATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTEGRATE Monthly Package - $289 per month</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTEGRATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n(3 month minimum)\r\n\r\nThis is a one on one session twice per month where together, we ensure your marketing is on track. We can utilise measurement techniques to assess the effectiveness of your strategies and keeping you on track to achieve the desired goals.\r\n\r\nWe meet via skype* twice per month to discuss your progress, any ideas or opportunities, and bounce ideas around. (*This can also be done in one longer face to face session if possible)\r\n\r\nThese sessions will help to keep on track with your marketing plan, and guide you throughout the year to meet and exceed your marketing and business goals. By measuring the effectiveness of current strategies, refinements can be effected to ensure your marketing continues to maximise results.\r\n\r\nSupport is available by e-mail, Facebook or reasonable phone support throughout the month if required.\r\n\r\nDon\'t need us as often as every month? Or need more support? <a href=\"http://www.infinitymarketing.co.nz/contact/\">Contact us</a> and we can tailor a suitable package for you.\r\n\r\nWe recommend you begin with the INTRO Package before commencing this INTEGRATE Package .\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTEGRATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Integrate-Candice-v2.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=PN7JHBND8QBFJ\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Terms &amp; Conditions Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nAll prices exclude GST and are shown in NZD. Travel for packages which include face to face meetings is included for a radius of up to 20km from Howick, any further kilometres will be charged at $0.74+GST.\r\n\r\nPayments can be accepted through our website by Credit Card, in person by Credit Card, Debit Card or Eftpos, or by internet banking. A Tax invoice will be provided for every payment.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"397\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"397\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text global_parent=\"397\" admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>We also provide the following services</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row global_parent=\"397\" admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb global_parent=\"397\" admin_label=\"Marketing Services Blurb\" title=\"Marketing Services\" url=\"www.infinitymarketing.co.nz/marketing-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">Ongoing Marketing Services ensures your marketing happens like clock-work. The wheels keep churning, and your marketing keeps working for you.</p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb global_parent=\"397\" admin_label=\"Projects Blurb\" title=\"Projects\" url=\"www.infinitymarketing.co.nz/projects\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%174%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne off marketing projects, such as brochures, website development, one off campaign plans, and much more. We can support you for a one off marketing project.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb global_parent=\"397\" admin_label=\"Other Services Blurb\" title=\"Other Services\" url=\"www.infinitymarketing.co.nz/other-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%171%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe aim to provide all your marketing needs in one place, and work with specialists in order to do this. No need to find alternative suppliers, we can help you.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"259\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"259\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"259\" admin_label=\"Call To Action - Contact\" title=\"Ready to take action?\" button_url=\"http://www.infinitymarketing.co.nz/contact/\" url_new_window=\"off\" button_text=\"Click here to contact us now\" use_background_color=\"off\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\nYour new future is waiting\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "COACHING", "", "publish", "closed", "closed", "", "coaching", "", "", "2016-04-29 16:45:46", "2016-04-29 04:45:46", "", "0", "http://www.infinitymarketing.co.nz/?page_id=337", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("338", "1", "2016-04-29 13:32:18", "2016-04-29 01:32:18", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Coaching Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Coaching</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Us Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">We offer a range of marketing services for your small business. Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.</p>\r\n<p style=\"text-align: center;\">We offer great monthly packages, which are fully customisable to suit your business needs; and one-off services.</p>\r\n<p style=\"text-align: center;\">All prices exclude GST and are shown in NZD.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Coaching Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Coaching-Packages\"></a>Coaching Packages<a name=\"Coaching-Packages\"></a></h2>\r\n<h3>We coach, and you implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTRO Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTRO Package - $189</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTRO Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis is about getting the basics right. We look at your current activity, recognise what is working, recommend any improvements and establish a plan going forward. This may suit those who have already started marketing their business and need help to get more customers or get themselves on track.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Establish a top line plan to get you where you want to be</li>\r\n</ul>\r\nThis involves a 1 hour face-to-face (where possible) or skype session and you will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nThis package can be upgraded to the INITIATE package if you feel you would like to go into more detail and create an initial marketing plan.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTRO Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Intro-Candice-v3.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=V46576J27YZG4\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INITIATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INITIATE Package - $589</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INITIATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThe INITIATE package is about giving your marketing the huge push it needs, either when you first start your business or a little later down the track. This is a holistic approach, taking you from strategy, goals, and tactics through to implementation. This will provide a plan of action for the next year.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Explore your positioning and the key messages and selling points for your customers</li>\r\n	<li>Understand who your competitors are and what your point of difference is</li>\r\n	<li>Talk tactics on where to be present, identifying why and how to achieve this</li>\r\n	<li>Establish a plan for making your customers take action</li>\r\n	<li>Work together to formulate a marketing plan for the year</li>\r\n</ul>\r\nThis involves a 2 x 1.5 hour face-to-face (where possible) or skype sessions.  You will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nWe recommend you follow on to the INTEGRATE package as this package measures the effectiveness of your plan as implemented, and refines this on an ongoing basis.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INITIATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Initiate-Candice-v2.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=W9P8XUK654W6G\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTEGRATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTEGRATE Monthly Package - $289 per month</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTEGRATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n(3 month minimum)\r\n\r\nThis is a one on one session twice per month where together, we ensure your marketing is on track. We can utilise measurement techniques to assess the effectiveness of your strategies and keeping you on track to achieve the desired goals.\r\n\r\nWe meet via skype* twice per month to discuss your progress, any ideas or opportunities, and bounce ideas around. (*This can also be done in one longer face to face session if possible)\r\n\r\nThese sessions will help to keep on track with your marketing plan, and guide you throughout the year to meet and exceed your marketing and business goals. By measuring the effectiveness of current strategies, refinements can be effected to ensure your marketing continues to maximise results.\r\n\r\nSupport is available by e-mail, Facebook or reasonable phone support throughout the month if required.\r\n\r\nWe recommend you begin with the INTRO Package before commencing this INTEGRATE Package .\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTEGRATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Integrate-Candice-v2.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=PN7JHBND8QBFJ\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Terms &amp; Conditions Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nAll prices exclude GST and are shown in NZD. Travel for packages which include face to face meetings is included for a radius of up to 20km from Howick, any further kilometres will be charged at $0.74+GST.\r\n\r\nPayments can be accepted through our website by Credit Card, in person by Credit Card, Debit Card or Eftpos, or by internet banking. A Tax invoice will be provided for every payment.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"259\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"259\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"259\" admin_label=\"Call To Action - Contact\" title=\"Ready to take action?\" button_url=\"http://www.infinitymarketing.co.nz/contact/\" url_new_window=\"off\" button_text=\"Click here to contact us now\" use_background_color=\"off\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\nYour new future is waiting\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "COACHING", "", "inherit", "closed", "closed", "", "337-revision-v1", "", "", "2016-04-29 13:32:18", "2016-04-29 01:32:18", "", "337", "http://www.infinitymarketing.co.nz/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("339", "1", "2016-04-29 16:46:26", "2016-04-29 04:46:26", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Marketing Services Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Marketing Services</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hands-on Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Hands-on-Packages\"></a>Hands-on Packages<a name=\"Hands-on-Packages\"></a></h2>\r\n<h3>We implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Marketing Services Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nKnow you need to do marketing but can\'t find the time? Starting to drop some balls, and need someone to help you make things happen? Or simply, sick of trying to be an expert at it all. We offer a range of <strong>on-going marketing services</strong> for your small business. We <strong>seamlessly integrate with you to deliver, top class marketing activity, that works.</strong> Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.\r\n<p style=\"text-align: left;\">We offer great<strong> monthly packages</strong>, which are <strong>fully customisable</strong> to suit your business needs. All for <strong>affordable monthly rates</strong> to suit your budget.</p>\r\n<p style=\"text-align: left;\">Packages can include graphic design, or we can work with your current designer to deliver these (if you need that, of course).</p>\r\n<p style=\"text-align: left;\"><strong>What makes us different?</strong> We are qualified and experienced marketers, delivering you products that work, that encourage your customers to take action and deliver you results.</p>\r\n<p style=\"text-align: left;\"><strong>Pick and choose the services you require</strong>, and <strong>how often</strong> you require them, and <strong>we can provide you a quote</strong>. <strong><a href=\"http://www.infinitymarketing.co.nz/contact/\">Get in touch with us now.</a></strong></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Custom\" currency=\"$\" per=\"month\" sum=\"?\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nWe can design a custom package that suits the unique needs of your business.\r\n\r\nYou can include services such as (but not limited to):\r\n\r\n+Facebook / Instagram content &amp; artwork\r\n\r\n+Facebook cover content &amp; artwork\r\n\r\n+Facebook page/group management\r\n\r\n+Website content and graphics updates\r\n\r\n+Website shop product uploads\r\n\r\n+Blog posts\r\n\r\n+Point of sale\r\n\r\n+Brochure design\r\n\r\n+Media bookings\r\n\r\n+Ad campaigns (Social Media/Google)\r\n\r\n+E-mail newsletter templates, creation, sending, automation &amp; database management\r\n\r\n+Landing pages\r\n\r\n+Monthly progress report with campaign results (provided access is given)\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Contact us for a Quote Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h4>If what you are looking for is not listed above, it does not necessarily mean we do not offer the service, <a href=\"http://www.infinitymarketing.co.nz/contact/\">please contact us for a quote.</a></h4>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"362\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"362\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text global_parent=\"362\" admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>We also provide the following services</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row global_parent=\"362\" admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb global_parent=\"362\" admin_label=\"Coaching Blurb\" title=\"Coaching\" url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne on One coaching and consulting services, either as a one-off service or on an on-going basis. Helping you get your marketing on track, and stay on track.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb global_parent=\"362\" admin_label=\"Projects Blurb\" title=\"Projects\" url=\"www.infinitymarketing.co.nz/projects\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%174%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne off marketing projects, such as brochures, website development, one off campaign plans, and much more. We can support you for a one off marketing project.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb global_parent=\"362\" admin_label=\"Other Services Blurb\" title=\"Other Services\" url=\"www.infinitymarketing.co.nz/other-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%171%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe aim to provide all your marketing needs in one place, and work with specialists in order to do this. No need to find alternative suppliers, we can help you.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"259\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"259\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"259\" admin_label=\"Call To Action - Contact\" title=\"Ready to take action?\" button_url=\"http://www.infinitymarketing.co.nz/contact/\" url_new_window=\"off\" button_text=\"Click here to contact us now\" use_background_color=\"off\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\nYour new future is waiting\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "MARKETING SERVICES", "", "publish", "closed", "closed", "", "marketing-services", "", "", "2016-04-29 16:46:46", "2016-04-29 04:46:46", "", "0", "http://www.infinitymarketing.co.nz/?page_id=339", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("357", "1", "2016-04-29 15:09:15", "2016-04-29 03:09:15", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Marketing Services Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Marketing Services</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hands-on Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Hands-on-Packages\"></a>Hands-on Packages<a name=\"Hands-on-Packages\"></a></h2>\r\n<h3>We implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Marketing Services Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">Know you need to do marketing but can\'t find the time? Starting to drop some balls, and need someone to help you make things happen? Or simply, sick of trying to be an expert at it all. We offer a range of on-going marketing services for your small business. We seamlessly integrate with you to deliver, top class marketing activity, that works. Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.</p>\r\n<p style=\"text-align: center;\">We offer great monthly packages, which are fully customisable to suit your business needs. All for affordable monthly rates to suit your budget.</p>\r\n<p style=\"text-align: center;\">Pick and choose the services you require, and how often you require them, and we can provide you a quote.</p>\r\n<p style=\"text-align: center;\">Packages can include graphic design, or we can work with your current designer to deliver these (if you need that, of course).</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Custom\" currency=\"$\" per=\"month\" sum=\"?\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nWe can design a custom package that suits the unique needs of your business.\r\n\r\nYou can include services such as (but not limited to):\r\n\r\n+Facebook / Instagram content &amp; artwork\r\n\r\n+Facebook cover content &amp; artwork\r\n\r\n+Website content and graphics updates\r\n\r\n+Blog posts\r\n\r\n+Point of sale\r\n\r\n+Brochure design\r\n\r\n+Media bookings\r\n\r\n+Ad campaigns (Social Media/Google)\r\n\r\n+E-mail newsletter\r\n\r\n+Monthly progress report with campaign results (provided access is given)\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"355\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"355\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text global_parent=\"355\" admin_label=\"Other Services Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Other-Services\"></a>Other Services<a name=\"Other-Services\"></a></h2>\r\n<h3>We offer a number of other services - <a href=\"http://www.infinitymarketing.co.nz/contact/\">please contact us for a quote</a></h3>\r\n[/et_pb_text][et_pb_text global_parent=\"355\" admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table width=\"922\">\r\n<tbody>\r\n<tr>\r\n<td width=\"184\"><img class=\"size-full wp-image-348 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/04/Email.jpg\" alt=\"Email\" width=\"75\" height=\"54\" /></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-244 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Graphic-Design.jpg\" alt=\"Graphic Design\" width=\"93\" height=\"76\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-246 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Printing.jpg\" alt=\"Printing\" width=\"77\" height=\"78\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-245 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Photography.jpg\" alt=\"Photography\" width=\"73\" height=\"60\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-247 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Video.jpg\" alt=\"Video\" width=\"68\" height=\"68\" /></b></td>\r\n</tr>\r\n<tr>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Email Marketing</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Graphic Design</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Printing</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Photography</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Videography</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"184\"><img class=\"size-full wp-image-347 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/04/Social-Media.jpg\" alt=\"Social Media\" width=\"72\" height=\"76\" /></td>\r\n<td width=\"184\"><b><img class=\" wp-image-243 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Event-Management.jpg\" alt=\"Event Management\" width=\"68\" height=\"74\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-248 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Web-Development.jpg\" alt=\"Web Development\" width=\"73\" height=\"75\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-242 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Copywriting.jpg\" alt=\"Proof Reading\" width=\"63\" height=\"77\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-241 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Advertising-Booking.jpg\" alt=\"Advertising Booking\" width=\"66\" height=\"67\" /></b></td>\r\n</tr>\r\n<tr>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Social Media</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Event Management</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Website Development, Content\r\n&amp; SEO</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Proof Reading</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Advertising Bookings\r\n&amp; Management\r\n(including Facebook &amp; AdWords)</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row global_parent=\"355\" admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button global_parent=\"355\" admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>We also provide the following services</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Coaching Blurb\" title=\"Coaching\" url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne on One coaching and consulting services, either as a one-off service or on an on-going basis. Helping you get your marketing on track, and stay on track.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Projects Blurb\" title=\"Projects\" url=\"www.infinitymarketing.co.nz/projects\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%174%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne off marketing projects, such as brochures, website development, one off campaign plans, and much more.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Other Services Blurb\" title=\"Other Services\" url=\"www.infinitymarketing.co.nz/other-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%171%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe aim to provide all your marketing needs in one place, and work with specialists in order to do this. No need to find alternative suppliers, we can help you.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"259\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"259\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"259\" admin_label=\"Call To Action - Contact\" title=\"Ready to take action?\" button_url=\"http://www.infinitymarketing.co.nz/contact/\" url_new_window=\"off\" button_text=\"Click here to contact us now\" use_background_color=\"off\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\nYour new future is waiting\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "MARKETING SERVICES", "", "inherit", "closed", "closed", "", "339-revision-v1", "", "", "2016-04-29 15:09:15", "2016-04-29 03:09:15", "", "339", "http://www.infinitymarketing.co.nz/339-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("356", "1", "2016-04-29 14:26:53", "2016-04-29 02:26:53", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Marketing Services Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Marketing Services</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Marketing Services Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">Know you need to do marketing but can\'t find the time? Starting to drop some balls, and need someone to help you make things happen? Or simply, sick of trying to be an expert at it all. We offer a range of on-going marketing services for your small business. We seamlessly integrate with you to deliver, top class marketing activity, that works. Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.</p>\r\n<p style=\"text-align: center;\">We offer great monthly packages, which are fully customisable to suit your business needs. All for affordable monthly rates to suit your budget.</p>\r\n<p style=\"text-align: center;\">Pick and choose the services you require, and how often you require them, and we can provide you a quote.</p>\r\n<p style=\"text-align: center;\">Packages can include graphic design, or we can work with your current designer to deliver these (if you need that, of course).</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hands-on Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Hands-on-Packages\"></a>Hands-on Packages<a name=\"Hands-on-Packages\"></a></h2>\r\n<h3>We implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Custom\" currency=\"$\" per=\"month\" sum=\"?\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nWe can design a custom package that suits the unique needs of your business.\r\n\r\nYou can include services such as (but not limited to):\r\n\r\n+Facebook / Instagram content &amp; artwork\r\n\r\n+Facebook cover content &amp; artwork\r\n\r\n+Website content and graphics updates\r\n\r\n+Blog posts\r\n\r\n+Point of sale\r\n\r\n+Brochure design\r\n\r\n+Media bookings\r\n\r\n+Ad campaigns (Social Media/Google)\r\n\r\n+E-mail newsletter\r\n\r\n+Monthly progress report with campaign results (provided access is given)\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" global_module=\"355\"][et_pb_row global_parent=\"355\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text global_parent=\"355\" admin_label=\"Other Services Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Other-Services\"></a>Other Services<a name=\"Other-Services\"></a></h2>\r\n<h3>We offer a number of other services - <a href=\"http://www.infinitymarketing.co.nz/contact/\">please contact us for a quote</a></h3>\r\n[/et_pb_text][et_pb_text global_parent=\"355\" admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table width=\"922\">\r\n<tbody>\r\n<tr>\r\n<td width=\"184\"><img class=\"size-full wp-image-348 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/04/Email.jpg\" alt=\"Email\" width=\"75\" height=\"54\" /></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-244 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Graphic-Design.jpg\" alt=\"Graphic Design\" width=\"93\" height=\"76\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-246 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Printing.jpg\" alt=\"Printing\" width=\"77\" height=\"78\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-245 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Photography.jpg\" alt=\"Photography\" width=\"73\" height=\"60\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-247 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Video.jpg\" alt=\"Video\" width=\"68\" height=\"68\" /></b></td>\r\n</tr>\r\n<tr>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Email Marketing</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Graphic Design</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Printing</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Photography</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Videography</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"184\"><img class=\"size-full wp-image-347 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/04/Social-Media.jpg\" alt=\"Social Media\" width=\"72\" height=\"76\" /></td>\r\n<td width=\"184\"><b><img class=\" wp-image-243 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Event-Management.jpg\" alt=\"Event Management\" width=\"68\" height=\"74\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-248 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Web-Development.jpg\" alt=\"Web Development\" width=\"73\" height=\"75\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-242 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Copywriting.jpg\" alt=\"Proof Reading\" width=\"63\" height=\"77\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-241 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Advertising-Booking.jpg\" alt=\"Advertising Booking\" width=\"66\" height=\"67\" /></b></td>\r\n</tr>\r\n<tr>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Social Media</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Event Management</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Website Development, Content\r\n&amp; SEO</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Proof Reading</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Advertising Bookings\r\n&amp; Management\r\n(including Facebook &amp; AdWords)</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row global_parent=\"355\" admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button global_parent=\"355\" admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Terms &amp; Conditions Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nAll prices exclude GST and are shown in NZD. Travel for packages which include face to face meetings is included for a radius of up to 20km from Howick, any further kilometres will be charged at $0.74+GST.\r\n\r\nPayments can be accepted through our website by Credit Card, in person by Credit Card, Debit Card or Eftpos, or by internet banking. A Tax invoice will be provided for every payment.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>We also provide the following services</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Coaching Blurb\" title=\"Coaching\" url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne on One coaching and consulting services, either as a one-off service or on an on-going basis. Helping you get your marketing on track, and stay on track.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Projects Blurb\" title=\"Projects\" url=\"www.infinitymarketing.co.nz/projects\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%174%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne off marketing projects, such as brochures, website development, one off campaign plans, and much more.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Other Services Blurb\" title=\"Other Services\" url=\"www.infinitymarketing.co.nz/other-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%171%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe aim to provide all your marketing needs in one place, and work with specialists in order to do this. No need to find alternative suppliers, we can help you.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"259\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"259\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"259\" admin_label=\"Call To Action - Contact\" title=\"Ready to take action?\" button_url=\"http://www.infinitymarketing.co.nz/contact/\" url_new_window=\"off\" button_text=\"Click here to contact us now\" use_background_color=\"off\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\nYour new future is waiting\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "MARKETING SERVICES", "", "inherit", "closed", "closed", "", "339-revision-v1", "", "", "2016-04-29 14:26:53", "2016-04-29 02:26:53", "", "339", "http://www.infinitymarketing.co.nz/339-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("342", "1", "2016-04-29 13:37:37", "2016-04-29 01:37:37", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Marketing Services Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Marketing Services</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Us Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">We offer a range of marketing services for your small business. Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.</p>\r\n<p style=\"text-align: center;\">We offer great monthly packages, which are fully customisable to suit your business needs; and one-off services.</p>\r\n<p style=\"text-align: center;\">All prices exclude GST and are shown in NZD.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hands-on Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Hands-on-Packages\"></a>Hands-on Packages<a name=\"Hands-on-Packages\"></a></h2>\r\n<h3>We implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Custom\" currency=\"$\" per=\"month\" sum=\"?\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]We can design a custom package that suits the unique needs of your business.[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Incredible Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Incredible\" currency=\"$\" per=\"month\" sum=\"300\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]1 x Facebook / Instagram post content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\nMonthly e-mail newsletter\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=GXECEYG2YK63W\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Intermediate Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Intermediate\" currency=\"$\" per=\"month\" sum=\"600\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]2 x Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised  content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nFortnightly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=NGKPUYHNBB62Y\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Advanced Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Advanced\" currency=\"$\" per=\"month\" sum=\"900\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nWeekly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=BLCK98JX9N83J\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Expert Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Expert\" currency=\"$\" per=\"month\" sum=\"1500\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nTwice weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n&nbsp;\r\n\r\n2 x Facebook cover content &amp; artwork\r\n\r\n2 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n2 x blog posts with search engine optimised content\r\n\r\nPoint of sale content &amp; artwork\r\n\r\nManage media bookings/ad campaigns (Social Media/Google)\r\n\r\nWeekly e-mail newsletter\r\n\r\nWebsite updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=9SKCDXVSUANKN\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Other-Services\"></a>Other Services<a name=\"Other-Services\"></a></h2>\r\n<h3>We offer a number of other services - <a href=\"http://www.infinitymarketing.co.nz/contact/\">please contact us for a quote</a></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-244\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Graphic-Design.jpg\" alt=\"Graphic Design\" width=\"93\" height=\"76\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-246\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Printing.jpg\" alt=\"Printing\" width=\"77\" height=\"78\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-245\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Photography.jpg\" alt=\"Photography\" width=\"73\" height=\"60\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-247\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Video.jpg\" alt=\"Video\" width=\"68\" height=\"68\" /></strong></td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Graphic Design</p>\r\n</td>\r\n<td style=\"text-align: center;\" width=\"154\">Printing</td>\r\n<td style=\"text-align: center;\" width=\"154\">Photography</td>\r\n<td style=\"text-align: center;\" width=\"154\">Videography</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-243\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Event-Management.jpg\" alt=\"Event Management\" width=\"68\" height=\"74\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-248\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Web-Development.jpg\" alt=\"Web Development\" width=\"73\" height=\"75\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-242\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Copywriting.jpg\" alt=\"Proof Reading\" width=\"63\" height=\"77\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-241\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Advertising-Booking.jpg\" alt=\"Advertising Booking\" width=\"66\" height=\"67\" /></strong></td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\">Event Management</td>\r\n<td style=\"text-align: center;\" width=\"154\">Website Development</td>\r\n<td style=\"text-align: center;\" width=\"154\">Proof Reading</td>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Advertising Bookings\r\n&amp; Management</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Terms &amp; Conditions Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nAll prices exclude GST and are shown in NZD. Travel for packages which include face to face meetings is included for a radius of up to 20km from Howick, any further kilometres will be charged at $0.74+GST.\r\n\r\nPayments can be accepted through our website by Credit Card, in person by Credit Card, Debit Card or Eftpos, or by internet banking. A Tax invoice will be provided for every payment.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" global_parent=\"259\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Coaching Image\" global_parent=\"259\" show_in_lightbox=\"off\" url=\"#Coaching-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Coaching_sml.jpg\" alt=\"Coaching\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Hands-on Packages Image\" global_parent=\"259\" show_in_lightbox=\"off\" url=\"#Hands-on-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Hands-on_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Individual Services Image\" global_parent=\"259\" show_in_lightbox=\"off\" url=\"#Individual-Projects\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Individual-Projects_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Other Services Image\" global_parent=\"259\" show_in_lightbox=\"off\" url=\"#Other-Services\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Other-Services_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"259\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"259\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"259\" admin_label=\"Call To Action - Contact\" title=\"Ready to take action?\" button_url=\"http://www.infinitymarketing.co.nz/contact/\" url_new_window=\"off\" button_text=\"Click here to contact us now\" use_background_color=\"off\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\nYour new future is waiting\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "MARKETING SERVICES", "", "inherit", "closed", "closed", "", "339-revision-v1", "", "", "2016-04-29 13:37:37", "2016-04-29 01:37:37", "", "339", "http://www.infinitymarketing.co.nz/339-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("341", "1", "2016-04-29 13:36:36", "2016-04-29 01:36:36", "[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action - Contact\" title=\"Ready to take action?\" button_url=\"http://www.infinitymarketing.co.nz/contact/\" url_new_window=\"off\" button_text=\"Click here to contact us now\" use_background_color=\"off\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\n\n<p>Your new future is waiting</p>\n\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Call to action - Contact", "", "inherit", "closed", "closed", "", "259-revision-v1", "", "", "2016-04-29 13:36:36", "2016-04-29 01:36:36", "", "259", "http://www.infinitymarketing.co.nz/259-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("340", "1", "2016-04-29 13:36:32", "2016-04-29 01:36:32", "[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Coaching Image\" show_in_lightbox=\"off\" url=\"#Coaching-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Coaching_sml.jpg\" alt=\"Coaching\"]\n\n<br />\n\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Hands-on Packages Image\" show_in_lightbox=\"off\" url=\"#Hands-on-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Hands-on_sml.jpg\"]\n\n<br />\n\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Individual Services Image\" show_in_lightbox=\"off\" url=\"#Individual-Projects\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Individual-Projects_sml.jpg\"]\n\n<br />\n\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Other Services Image\" show_in_lightbox=\"off\" url=\"#Other-Services\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Other-Services_sml.jpg\"]\n\n<br />\n\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action - Contact\" title=\"Ready to take action?\" button_url=\"http://www.infinitymarketing.co.nz/contact/\" url_new_window=\"off\" button_text=\"Click here to contact us now\" use_background_color=\"off\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\n\n<p>Your new future is waiting</p>\n\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "Call to action - Contact", "", "inherit", "closed", "closed", "", "259-revision-v1", "", "", "2016-04-29 13:36:32", "2016-04-29 01:36:32", "", "259", "http://www.infinitymarketing.co.nz/259-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("343", "1", "2016-04-29 16:48:21", "2016-04-29 04:48:21", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"PROJECTS Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">PROJECTS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Projects Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Individual-Projects\"></a>Individual Projects<a name=\"Individual-Projects\"></a></h2>\r\n<h3>We can help you with a specific item of work</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Projects Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: left;\">We are happy to help you with your <strong>one-off project needs</strong>.</p>\r\n<p style=\"text-align: left;\">There are a range of ways we can help you: <strong>Marketing and Design</strong> services, <strong>Marketing only</strong> services, <strong>Design only</strong> services, or we can <strong>work to whatever you need.</strong> Ideal if you need something different each time,<strong> without the on-going commitment.</strong></p>\r\n<p style=\"text-align: left;\">We work to your brief, or can even help you come up with the brief. Everything is <strong>fully customisable to suit your business needs</strong>; and on a <strong>one-off basis</strong>. <a href=\"http://www.infinitymarketing.co.nz/contact/\"><strong>Contact us to discuss your requirements and get a quote.</strong> </a></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Projects Table - no pricing\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"234\">Brochures</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          One sided flyer</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Double sided flyer</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Multi-page  DLE brochure</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Poster</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Point of sale</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website Content (200 words)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Blog (400-600 words)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">E-mail Campaign</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">E-mail Template</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Cover Photo &amp; content</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Post Artwork &amp; content</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website Content Revamp</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website Development</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Corporate Identity &amp; Branding</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Products Footer Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h4>If what you are looking for is not listed above, it does not necessarily mean we do not offer the service, <a href=\"http://www.infinitymarketing.co.nz/contact/\">please contact us for a quote.</a></h4>\r\nWe can provide quotes tailored to your specific project requirements.\r\n\r\nPrinting can be arranged and will be quoted separately. Photography and video options can be arranged and quoted for separately.\r\n\r\nWhen quoting - we will usually provide prices that include marketing copy and design and includes 2 revisions, further revisions will be quoted. Prices are available for content only options, proofing only options and design only options. Please let us know what you would like.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"414\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"414\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text global_parent=\"414\" admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>We also provide the following services</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row global_parent=\"414\" admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb global_parent=\"414\" admin_label=\"Coaching Blurb\" title=\"Coaching\" url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne on One coaching and consulting services, either as a one-off service or on an on-going basis. Helping you get your marketing on track, and stay on track.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb global_parent=\"414\" admin_label=\"Marketing Services Blurb\" title=\"Marketing Services\" url=\"www.infinitymarketing.co.nz/marketing-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">Ongoing Marketing Services ensures your marketing happens like clock-work. The wheels keep churning, and your marketing keeps working for you.</p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb global_parent=\"414\" admin_label=\"Other Services Blurb\" title=\"Other Services\" url=\"www.infinitymarketing.co.nz/other-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%171%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe aim to provide all your marketing needs in one place, and work with specialists in order to do this. No need to find alternative suppliers, we can help you.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"259\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"259\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"259\" admin_label=\"Call To Action - Contact\" title=\"Ready to take action?\" button_url=\"http://www.infinitymarketing.co.nz/contact/\" url_new_window=\"off\" button_text=\"Click here to contact us now\" use_background_color=\"off\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\nYour new future is waiting\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "PROJECTS", "", "publish", "closed", "closed", "", "projects", "", "", "2016-04-29 16:48:21", "2016-04-29 04:48:21", "", "0", "http://www.infinitymarketing.co.nz/?page_id=343", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("407", "1", "2016-04-29 16:04:08", "2016-04-29 04:04:08", "[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<h2>We also provide the following services</h2>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Coaching Blurb\" title=\"Coaching\" url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One on One coaching and consulting services, either as a one-off service or on an on-going basis. Helping you get your marketing on track, and stay on track.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Marketing Services Blurb\" title=\"Marketing Services\" url=\"www.infinitymarketing.co.nz/marketing-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p style=\"text-align: center;\">Ongoing Marketing Services ensures your marketing happens like clock-work. The wheels keep churning, and your marketing keeps working for you.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Projects Blurb\" title=\"Projects\" url=\"www.infinitymarketing.co.nz/projects\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%174%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One off marketing projects, such as brochures, website development, one off campaign plans, and much more. We can support you for a one off marketing project.</p>\n\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "We Also Provide - Coaching, Marketing Services & Projects", "", "inherit", "closed", "closed", "", "370-revision-v1", "", "", "2016-04-29 16:04:08", "2016-04-29 04:04:08", "", "370", "http://www.infinitymarketing.co.nz/370-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("406", "1", "2016-04-29 16:04:05", "2016-04-29 04:04:05", "[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<h2>We also provide the following services</h2>\n\n[/et_pb_text][et_pb_text admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<h2>We also provide the following services</h2>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Coaching Blurb\" title=\"Coaching\" url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One on One coaching and consulting services, either as a one-off service or on an on-going basis. Helping you get your marketing on track, and stay on track.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Marketing Services Blurb\" title=\"Marketing Services\" url=\"www.infinitymarketing.co.nz/marketing-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p style=\"text-align: center;\">Ongoing Marketing Services ensures your marketing happens like clock-work. The wheels keep churning, and your marketing keeps working for you.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Projects Blurb\" title=\"Projects\" url=\"www.infinitymarketing.co.nz/projects\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%174%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One off marketing projects, such as brochures, website development, one off campaign plans, and much more. We can support you for a one off marketing project.</p>\n\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "We Also Provide - Coaching, Marketing Services & Projects", "", "inherit", "closed", "closed", "", "370-revision-v1", "", "", "2016-04-29 16:04:05", "2016-04-29 04:04:05", "", "370", "http://www.infinitymarketing.co.nz/370-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("400", "1", "2016-04-29 15:59:18", "2016-04-29 03:59:18", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"PROJECTS Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">PROJECTS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Us Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">We offer a range of marketing services for your small business. Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.</p>\r\n<p style=\"text-align: center;\">We offer great monthly packages, which are fully customisable to suit your business needs; and one-off services.</p>\r\n<p style=\"text-align: center;\">All prices exclude GST and are shown in NZD.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Projects Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Individual-Projects\"></a>Individual Projects<a name=\"Individual-Projects\"></a></h2>\r\n<h3>We help you with a specific item of work</h3>\r\n<h4 style=\"text-align: justify;\"><span style=\"color: #009edb;\">INTRO SPECIAL PRICING VALID UNTIL 30TH APRIL 2016</span></h4>\r\n[/et_pb_text][et_pb_text admin_label=\"Individual Projects Table - no pricing\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"234\">Brochures</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          One sided flyer</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Double sided flyer</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Multi-page  DLE brochure</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Poster</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Point of sale</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website Content (200 words)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Blog (400-600 words)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">E-mail Campaign</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">E-mail Template</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Cover Photo &amp; content</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Post Artwork &amp; content</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website Content Revamp</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website Development</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Corporate Identity &amp; Branding</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Products Footer Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h4>If what you are looking for is not listed above, it does not necessarily mean we do not offer the service, <a href=\"http://www.infinitymarketing.co.nz/contact/\">please contact us for a quote.</a></h4>\r\nWe can provide quotes tailored to your specific project requirements.\r\n\r\nPrinting can be arranged and will be quoted separately. Photography and video options can be arranged and quoted for separately.\r\n\r\nWhen quoting - we will usually provide prices that include marketing copy and design and includes 2 revisions, further revisions will be quoted. Prices are available for content only options, proofing only options and design only options. Please let us know what you would like.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Other-Services\"></a>Other Services<a name=\"Other-Services\"></a></h2>\r\n<h3>We offer a number of other services - <a href=\"http://www.infinitymarketing.co.nz/contact/\">please contact us for a quote</a></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-244\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Graphic-Design.jpg\" alt=\"Graphic Design\" width=\"93\" height=\"76\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-246\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Printing.jpg\" alt=\"Printing\" width=\"77\" height=\"78\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-245\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Photography.jpg\" alt=\"Photography\" width=\"73\" height=\"60\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-247\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Video.jpg\" alt=\"Video\" width=\"68\" height=\"68\" /></strong></td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Graphic Design</p>\r\n</td>\r\n<td style=\"text-align: center;\" width=\"154\">Printing</td>\r\n<td style=\"text-align: center;\" width=\"154\">Photography</td>\r\n<td style=\"text-align: center;\" width=\"154\">Videography</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-243\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Event-Management.jpg\" alt=\"Event Management\" width=\"68\" height=\"74\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-248\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Web-Development.jpg\" alt=\"Web Development\" width=\"73\" height=\"75\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-242\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Copywriting.jpg\" alt=\"Proof Reading\" width=\"63\" height=\"77\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-241\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Advertising-Booking.jpg\" alt=\"Advertising Booking\" width=\"66\" height=\"67\" /></strong></td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\">Event Management</td>\r\n<td style=\"text-align: center;\" width=\"154\">Website Development</td>\r\n<td style=\"text-align: center;\" width=\"154\">Proof Reading</td>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Advertising Bookings\r\n&amp; Management</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Terms &amp; Conditions Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nAll prices exclude GST and are shown in NZD. Travel for packages which include face to face meetings is included for a radius of up to 20km from Howick, any further kilometres will be charged at $0.74+GST.\r\n\r\nPayments can be accepted through our website by Credit Card, in person by Credit Card, Debit Card or Eftpos, or by internet banking. A Tax invoice will be provided for every payment.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Coaching Image\" show_in_lightbox=\"off\" url=\"#Coaching-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Coaching_sml.jpg\" alt=\"Coaching\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Hands-on Packages Image\" show_in_lightbox=\"off\" url=\"#Hands-on-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Hands-on_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Individual Services Image\" show_in_lightbox=\"off\" url=\"#Individual-Projects\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Individual-Projects_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Other Services Image\" show_in_lightbox=\"off\" url=\"#Other-Services\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Other-Services_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"259\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"259\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"259\" admin_label=\"Call To Action - Contact\" title=\"Ready to take action?\" button_url=\"http://www.infinitymarketing.co.nz/contact/\" url_new_window=\"off\" button_text=\"Click here to contact us now\" use_background_color=\"off\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\nYour new future is waiting\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "PROJECTS", "", "inherit", "closed", "closed", "", "343-revision-v1", "", "", "2016-04-29 15:59:18", "2016-04-29 03:59:18", "", "343", "http://www.infinitymarketing.co.nz/343-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("344", "1", "2016-04-29 13:39:17", "2016-04-29 01:39:17", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"PROJECTS Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">PROJECTS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Us Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">We offer a range of marketing services for your small business. Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.</p>\r\n<p style=\"text-align: center;\">We offer great monthly packages, which are fully customisable to suit your business needs; and one-off services.</p>\r\n<p style=\"text-align: center;\">All prices exclude GST and are shown in NZD.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Projects Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Individual-Projects\"></a>Individual Projects<a name=\"Individual-Projects\"></a></h2>\r\n<h3>We help you with a specific item of work</h3>\r\n<h4 style=\"text-align: justify;\"><span style=\"color: #009edb;\">INTRO SPECIAL PRICING VALID UNTIL 30TH APRIL 2016</span></h4>\r\n[/et_pb_text][et_pb_text admin_label=\"Individual Projects Table\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"234\">Brochures</td>\r\n<td width=\"95\"></td>\r\n<td width=\"95\"></td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          One sided flyer</td>\r\n<td width=\"95\">$100</td>\r\n<td width=\"95\">[button link=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=7MTEMEKPRRFAL\"] Buy Now[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Double sided flyer</td>\r\n<td width=\"95\">$150</td>\r\n<td width=\"95\">[button link=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=6D7UM34WXWEPJ\"] Buy Now[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Multi-page  DLE brochure</td>\r\n<td width=\"95\">$195</td>\r\n<td width=\"95\">[button link=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=Y5L9R8DF4KNFN\"] Buy Now[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Poster</td>\r\n<td width=\"95\">$100</td>\r\n<td width=\"95\">[button link=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=RXE6FW58ECAHS\"] Buy Now[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Point of sale</td>\r\n<td width=\"95\">$ P.O.A</td>\r\n<td width=\"95\">[button link=\"http://www.infinitymarketing.co.nz/contact/\"] Enquire[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website Content (200 words)</td>\r\n<td width=\"95\">$89</td>\r\n<td width=\"95\">[button link=\" https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=JVDVKH35P6GJ2\"] Buy Now[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Blog (400-600 words)</td>\r\n<td width=\"95\">$150</td>\r\n<td width=\"95\">[button link=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=3W7ZX86E7ABR6\"] Buy Now[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">E-mail Campaign</td>\r\n<td width=\"95\">$150</td>\r\n<td width=\"95\">[button link=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=9883VE784CLCN\"] Buy Now[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Cover Photo &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n<td width=\"95\">[button link=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=2WNJAJE85S2TY\"] Buy Now[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Post artwork &amp; content</td>\r\n<td width=\"95\">$59</td>\r\n<td width=\"95\">[button link=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=PCKETDR2HCYWL\"] Buy Now[/button]</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website content revamp^</td>\r\n<td width=\"95\">$725</td>\r\n<td width=\"95\">[button link=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=XR4FA4RQ4Y2Q2\"] Buy Now[/button]</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Products Footer Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h4>If what you are looking for is not listed above, it does not necessarily mean we do not offer the service, <a href=\"http://www.infinitymarketing.co.nz/contact/\">please contact us for a quote.</a></h4>\r\nWe can provide quotes tailored to your specific project requirements.\r\n\r\nPrinting can be arranged and will be quoted separately. Photography and video options can be arranged and quoted for separately\r\n\r\nExcludes cost of stock images (if required). Any detailed artwork such as illustration or other will be quoted separately.\r\n\r\nPrices above include marketing copy and design and includes 2 revisions, further revisions will be quoted. Prices are available for content only options, proofing only options and design only options.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Other-Services\"></a>Other Services<a name=\"Other-Services\"></a></h2>\r\n<h3>We offer a number of other services - <a href=\"http://www.infinitymarketing.co.nz/contact/\">please contact us for a quote</a></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-244\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Graphic-Design.jpg\" alt=\"Graphic Design\" width=\"93\" height=\"76\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-246\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Printing.jpg\" alt=\"Printing\" width=\"77\" height=\"78\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-245\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Photography.jpg\" alt=\"Photography\" width=\"73\" height=\"60\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-247\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Video.jpg\" alt=\"Video\" width=\"68\" height=\"68\" /></strong></td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Graphic Design</p>\r\n</td>\r\n<td style=\"text-align: center;\" width=\"154\">Printing</td>\r\n<td style=\"text-align: center;\" width=\"154\">Photography</td>\r\n<td style=\"text-align: center;\" width=\"154\">Videography</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-243\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Event-Management.jpg\" alt=\"Event Management\" width=\"68\" height=\"74\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-248\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Web-Development.jpg\" alt=\"Web Development\" width=\"73\" height=\"75\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-242\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Copywriting.jpg\" alt=\"Proof Reading\" width=\"63\" height=\"77\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-241\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Advertising-Booking.jpg\" alt=\"Advertising Booking\" width=\"66\" height=\"67\" /></strong></td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\">Event Management</td>\r\n<td style=\"text-align: center;\" width=\"154\">Website Development</td>\r\n<td style=\"text-align: center;\" width=\"154\">Proof Reading</td>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Advertising Bookings\r\n&amp; Management</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Terms &amp; Conditions Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nAll prices exclude GST and are shown in NZD. Travel for packages which include face to face meetings is included for a radius of up to 20km from Howick, any further kilometres will be charged at $0.74+GST.\r\n\r\nPayments can be accepted through our website by Credit Card, in person by Credit Card, Debit Card or Eftpos, or by internet banking. A Tax invoice will be provided for every payment.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Coaching Image\" show_in_lightbox=\"off\" url=\"#Coaching-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Coaching_sml.jpg\" alt=\"Coaching\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Hands-on Packages Image\" show_in_lightbox=\"off\" url=\"#Hands-on-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Hands-on_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Individual Services Image\" show_in_lightbox=\"off\" url=\"#Individual-Projects\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Individual-Projects_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Other Services Image\" show_in_lightbox=\"off\" url=\"#Other-Services\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Other-Services_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"259\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"259\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"259\" admin_label=\"Call To Action - Contact\" title=\"Ready to take action?\" button_url=\"http://www.infinitymarketing.co.nz/contact/\" url_new_window=\"off\" button_text=\"Click here to contact us now\" use_background_color=\"off\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\nYour new future is waiting\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "PROJECTS", "", "inherit", "closed", "closed", "", "343-revision-v1", "", "", "2016-04-29 13:39:17", "2016-04-29 01:39:17", "", "343", "http://www.infinitymarketing.co.nz/343-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("345", "1", "2016-04-29 16:47:16", "2016-04-29 04:47:16", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Other Services</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Header\" global_parent=\"355\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>We offer a number of other services - <a href=\"http://www.infinitymarketing.co.nz/contact/\">please contact us for a quote</a></h2>\r\n[/et_pb_text][et_pb_text admin_label=\"Other Services Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: left;\">We <strong>offer a range of marketing services</strong> for your small business, and together with a<strong> team of experts,</strong> <strong>all of your marketing services needs can be met in one place</strong> with Infinity Marketing. You no longer need to find a good printer, of photographer, or any type of other supplier -<strong> we work with great people in order to bring you a comprehensive service</strong>.</p>\r\n<p style=\"text-align: left;\"><a href=\"http://www.infinitymarketing.co.nz/contact/\"><strong>Simply get in touch</strong></a> with your requirements, or if you are not even sure what those are yet, let\'s have a chat and we can find a solution that will have you sorted in no time.</p>\r\n<p style=\"text-align: left;\">If you don\'t see what you a looking for in the list below, it does not mean we do not provide that service,<strong> <a href=\"http://www.infinitymarketing.co.nz/contact/\">please get in touch.</a></strong></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"355\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"355\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text global_parent=\"355\" admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table width=\"922\">\r\n<tbody>\r\n<tr>\r\n<td width=\"184\"><img class=\"size-full wp-image-348 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/04/Email.jpg\" alt=\"Email\" width=\"75\" height=\"54\" /></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-244 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Graphic-Design.jpg\" alt=\"Graphic Design\" width=\"93\" height=\"76\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-246 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Printing.jpg\" alt=\"Printing\" width=\"77\" height=\"78\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-245 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Photography.jpg\" alt=\"Photography\" width=\"73\" height=\"60\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-247 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Video.jpg\" alt=\"Video\" width=\"68\" height=\"68\" /></b></td>\r\n</tr>\r\n<tr>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Email Marketing</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Graphic Design</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Printing</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Photography</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Videography</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"184\"><img class=\"size-full wp-image-347 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/04/Social-Media.jpg\" alt=\"Social Media\" width=\"72\" height=\"76\" /></td>\r\n<td width=\"184\"><b><img class=\" wp-image-243 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Event-Management.jpg\" alt=\"Event Management\" width=\"68\" height=\"74\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-248 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Web-Development.jpg\" alt=\"Web Development\" width=\"73\" height=\"75\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-242 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Copywriting.jpg\" alt=\"Proof Reading\" width=\"63\" height=\"77\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-241 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Advertising-Booking.jpg\" alt=\"Advertising Booking\" width=\"66\" height=\"67\" /></b></td>\r\n</tr>\r\n<tr>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Social Media</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Event Management</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Website Development, Content\r\n&amp; SEO</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Proof Reading</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Advertising Bookings\r\n&amp; Management\r\n(including Facebook &amp; AdWords)</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row global_parent=\"355\" admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button global_parent=\"355\" admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][et_pb_row global_parent=\"355\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text global_parent=\"355\" admin_label=\"Contact us for a Quote Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h4>If what you are looking for is not listed above, it does not necessarily mean we do not offer the service, <a href=\"http://www.infinitymarketing.co.nz/contact/\">please contact us for a quote.</a></h4>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"370\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"370\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text global_parent=\"370\" admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>We also provide the following services</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row global_parent=\"370\" admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb global_parent=\"370\" admin_label=\"Coaching Blurb\" title=\"Coaching\" url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne on One coaching and consulting services, either as a one-off service or on an on-going basis. Helping you get your marketing on track, and stay on track.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb global_parent=\"370\" admin_label=\"Marketing Services Blurb\" title=\"Marketing Services\" url=\"www.infinitymarketing.co.nz/marketing-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">Ongoing Marketing Services ensures your marketing happens like clock-work. The wheels keep churning, and your marketing keeps working for you.</p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb global_parent=\"370\" admin_label=\"Projects Blurb\" title=\"Projects\" url=\"www.infinitymarketing.co.nz/projects\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%174%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne off marketing projects, such as brochures, website development, one off campaign plans, and much more. We can support you for a one off marketing project.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"259\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"259\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"259\" admin_label=\"Call To Action - Contact\" title=\"Ready to take action?\" button_url=\"http://www.infinitymarketing.co.nz/contact/\" url_new_window=\"off\" button_text=\"Click here to contact us now\" use_background_color=\"off\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\nYour new future is waiting\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "OTHER SERVICES", "", "publish", "closed", "closed", "", "other-services", "", "", "2016-04-29 16:47:16", "2016-04-29 04:47:16", "", "0", "http://www.infinitymarketing.co.nz/?page_id=345", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("346", "1", "2016-04-29 13:40:56", "2016-04-29 01:40:56", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Other Services</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Us Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">We offer a range of marketing services for your small business. Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.</p>\r\n<p style=\"text-align: center;\">We offer great monthly packages, which are fully customisable to suit your business needs; and one-off services.</p>\r\n<p style=\"text-align: center;\">All prices exclude GST and are shown in NZD.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Other-Services\"></a>Other Services<a name=\"Other-Services\"></a></h2>\r\n<h3>We offer a number of other services - <a href=\"http://www.infinitymarketing.co.nz/contact/\">please contact us for a quote</a></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-244\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Graphic-Design.jpg\" alt=\"Graphic Design\" width=\"93\" height=\"76\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-246\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Printing.jpg\" alt=\"Printing\" width=\"77\" height=\"78\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-245\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Photography.jpg\" alt=\"Photography\" width=\"73\" height=\"60\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-247\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Video.jpg\" alt=\"Video\" width=\"68\" height=\"68\" /></strong></td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Graphic Design</p>\r\n</td>\r\n<td style=\"text-align: center;\" width=\"154\">Printing</td>\r\n<td style=\"text-align: center;\" width=\"154\">Photography</td>\r\n<td style=\"text-align: center;\" width=\"154\">Videography</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-243\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Event-Management.jpg\" alt=\"Event Management\" width=\"68\" height=\"74\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-248\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Web-Development.jpg\" alt=\"Web Development\" width=\"73\" height=\"75\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-242\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Copywriting.jpg\" alt=\"Proof Reading\" width=\"63\" height=\"77\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-241\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Advertising-Booking.jpg\" alt=\"Advertising Booking\" width=\"66\" height=\"67\" /></strong></td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\">Event Management</td>\r\n<td style=\"text-align: center;\" width=\"154\">Website Development</td>\r\n<td style=\"text-align: center;\" width=\"154\">Proof Reading</td>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Advertising Bookings\r\n&amp; Management</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Terms &amp; Conditions Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nAll prices exclude GST and are shown in NZD. Travel for packages which include face to face meetings is included for a radius of up to 20km from Howick, any further kilometres will be charged at $0.74+GST.\r\n\r\nPayments can be accepted through our website by Credit Card, in person by Credit Card, Debit Card or Eftpos, or by internet banking. A Tax invoice will be provided for every payment.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Coaching Image\" show_in_lightbox=\"off\" url=\"#Coaching-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Coaching_sml.jpg\" alt=\"Coaching\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Hands-on Packages Image\" show_in_lightbox=\"off\" url=\"#Hands-on-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Hands-on_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Individual Services Image\" show_in_lightbox=\"off\" url=\"#Individual-Projects\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Individual-Projects_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Other Services Image\" show_in_lightbox=\"off\" url=\"#Other-Services\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Other-Services_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"259\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"259\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"259\" admin_label=\"Call To Action - Contact\" title=\"Ready to take action?\" button_url=\"http://www.infinitymarketing.co.nz/contact/\" url_new_window=\"off\" button_text=\"Click here to contact us now\" use_background_color=\"off\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\nYour new future is waiting\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "OTHER SERVICES", "", "inherit", "closed", "closed", "", "345-revision-v1", "", "", "2016-04-29 13:40:56", "2016-04-29 01:40:56", "", "345", "http://www.infinitymarketing.co.nz/345-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("351", "1", "2016-04-29 14:10:43", "2016-04-29 02:10:43", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Marketing Services Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Marketing Services</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Us Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">We offer a range of marketing services for your small business. Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.</p>\r\n<p style=\"text-align: center;\">We offer great monthly packages, which are fully customisable to suit your business needs; and one-off services.</p>\r\n<p style=\"text-align: center;\">All prices exclude GST and are shown in NZD.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hands-on Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Hands-on-Packages\"></a>Hands-on Packages<a name=\"Hands-on-Packages\"></a></h2>\r\n<h3>We implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Custom\" currency=\"$\" per=\"month\" sum=\"?\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]We can design a custom package that suits the unique needs of your business.[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Incredible Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Incredible\" currency=\"$\" per=\"month\" sum=\"300\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]1 x Facebook / Instagram post content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\nMonthly e-mail newsletter\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=GXECEYG2YK63W\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Intermediate Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Intermediate\" currency=\"$\" per=\"month\" sum=\"600\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]2 x Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised  content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nFortnightly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=NGKPUYHNBB62Y\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Advanced Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Advanced\" currency=\"$\" per=\"month\" sum=\"900\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nWeekly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=BLCK98JX9N83J\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Expert Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Expert\" currency=\"$\" per=\"month\" sum=\"1500\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nTwice weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n&nbsp;\r\n\r\n2 x Facebook cover content &amp; artwork\r\n\r\n2 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n2 x blog posts with search engine optimised content\r\n\r\nPoint of sale content &amp; artwork\r\n\r\nManage media bookings/ad campaigns (Social Media/Google)\r\n\r\nWeekly e-mail newsletter\r\n\r\nWebsite updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=9SKCDXVSUANKN\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Other-Services\"></a>Other Services<a name=\"Other-Services\"></a></h2>\r\n<h3>We offer a number of other services - <a href=\"http://www.infinitymarketing.co.nz/contact/\">please contact us for a quote</a></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table width=\"922\">\r\n<tbody>\r\n<tr>\r\n<td width=\"184\"><img class=\"size-full wp-image-348 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/04/Email.jpg\" alt=\"Email\" width=\"75\" height=\"54\" /></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-244 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Graphic-Design.jpg\" alt=\"Graphic Design\" width=\"93\" height=\"76\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-246 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Printing.jpg\" alt=\"Printing\" width=\"77\" height=\"78\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-245 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Photography.jpg\" alt=\"Photography\" width=\"73\" height=\"60\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-247 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Video.jpg\" alt=\"Video\" width=\"68\" height=\"68\" /></b></td>\r\n</tr>\r\n<tr>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Email Marketing</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Graphic Design</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Printing</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Photography</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Videography</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"184\"><img class=\"size-full wp-image-347 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/04/Social-Media.jpg\" alt=\"Social Media\" width=\"72\" height=\"76\" /></td>\r\n<td width=\"184\"><b><img class=\" wp-image-243 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Event-Management.jpg\" alt=\"Event Management\" width=\"68\" height=\"74\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-248 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Web-Development.jpg\" alt=\"Web Development\" width=\"73\" height=\"75\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-242 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Copywriting.jpg\" alt=\"Proof Reading\" width=\"63\" height=\"77\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-241 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Advertising-Booking.jpg\" alt=\"Advertising Booking\" width=\"66\" height=\"67\" /></b></td>\r\n</tr>\r\n<tr>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Social Media</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Event Management</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Website Development, Content\r\n&amp; SEO</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Proof Reading</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Advertising Bookings\r\n&amp; Management\r\n(including Facebook &amp; AdWords)</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" admin_label=\"Section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Terms &amp; Conditions Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nAll prices exclude GST and are shown in NZD. Travel for packages which include face to face meetings is included for a radius of up to 20km from Howick, any further kilometres will be charged at $0.74+GST.\r\n\r\nPayments can be accepted through our website by Credit Card, in person by Credit Card, Debit Card or Eftpos, or by internet banking. A Tax invoice will be provided for every payment.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>We also provide the following services</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Coaching Blurb\" title=\"Coaching\" url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne on One coaching and consulting services, either as a one-off service or on an on-going basis. Helping you get your marketing on track, and stay on track.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Projects Blurb\" title=\"Projects\" url=\"www.infinitymarketing.co.nz/projects\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%174%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne off marketing projects, such as brochures, website development, one off campaign plans, and much more.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Other Services Blurb\" title=\"Other Services\" url=\"www.infinitymarketing.co.nz/other-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%171%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe aim to provide all your marketing needs in one place, and work with specialists in order to do this. No need to find alternative suppliers, we can help you.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"259\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"259\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"259\" admin_label=\"Call To Action - Contact\" title=\"Ready to take action?\" button_url=\"http://www.infinitymarketing.co.nz/contact/\" url_new_window=\"off\" button_text=\"Click here to contact us now\" use_background_color=\"off\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\nYour new future is waiting\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "MARKETING SERVICES", "", "inherit", "closed", "closed", "", "339-revision-v1", "", "", "2016-04-29 14:10:43", "2016-04-29 02:10:43", "", "339", "http://www.infinitymarketing.co.nz/339-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("350", "1", "2016-04-29 14:07:17", "2016-04-29 02:07:17", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Marketing Services Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Marketing Services</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Us Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">We offer a range of marketing services for your small business. Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.</p>\r\n<p style=\"text-align: center;\">We offer great monthly packages, which are fully customisable to suit your business needs; and one-off services.</p>\r\n<p style=\"text-align: center;\">All prices exclude GST and are shown in NZD.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hands-on Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Hands-on-Packages\"></a>Hands-on Packages<a name=\"Hands-on-Packages\"></a></h2>\r\n<h3>We implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Custom\" currency=\"$\" per=\"month\" sum=\"?\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]We can design a custom package that suits the unique needs of your business.[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Incredible Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Incredible\" currency=\"$\" per=\"month\" sum=\"300\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]1 x Facebook / Instagram post content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\nMonthly e-mail newsletter\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=GXECEYG2YK63W\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Intermediate Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Intermediate\" currency=\"$\" per=\"month\" sum=\"600\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]2 x Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised  content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nFortnightly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=NGKPUYHNBB62Y\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Advanced Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Advanced\" currency=\"$\" per=\"month\" sum=\"900\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nWeekly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=BLCK98JX9N83J\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Expert Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Expert\" currency=\"$\" per=\"month\" sum=\"1500\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nTwice weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n&nbsp;\r\n\r\n2 x Facebook cover content &amp; artwork\r\n\r\n2 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n2 x blog posts with search engine optimised content\r\n\r\nPoint of sale content &amp; artwork\r\n\r\nManage media bookings/ad campaigns (Social Media/Google)\r\n\r\nWeekly e-mail newsletter\r\n\r\nWebsite updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=9SKCDXVSUANKN\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Other-Services\"></a>Other Services<a name=\"Other-Services\"></a></h2>\r\n<h3>We offer a number of other services - <a href=\"http://www.infinitymarketing.co.nz/contact/\">please contact us for a quote</a></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table width=\"922\">\r\n<tbody>\r\n<tr>\r\n<td width=\"184\"><img class=\"size-full wp-image-348 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/04/Email.jpg\" alt=\"Email\" width=\"75\" height=\"54\" /></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-244 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Graphic-Design.jpg\" alt=\"Graphic Design\" width=\"93\" height=\"76\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-246 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Printing.jpg\" alt=\"Printing\" width=\"77\" height=\"78\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-245 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Photography.jpg\" alt=\"Photography\" width=\"73\" height=\"60\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-247 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Video.jpg\" alt=\"Video\" width=\"68\" height=\"68\" /></b></td>\r\n</tr>\r\n<tr>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Email Marketing</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Graphic Design</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Printing</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Photography</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Videography</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"184\"><img class=\"size-full wp-image-347 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/04/Social-Media.jpg\" alt=\"Social Media\" width=\"72\" height=\"76\" /></td>\r\n<td width=\"184\"><b><img class=\" wp-image-243 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Event-Management.jpg\" alt=\"Event Management\" width=\"68\" height=\"74\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-248 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Web-Development.jpg\" alt=\"Web Development\" width=\"73\" height=\"75\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-242 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Copywriting.jpg\" alt=\"Proof Reading\" width=\"63\" height=\"77\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-241 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Advertising-Booking.jpg\" alt=\"Advertising Booking\" width=\"66\" height=\"67\" /></b></td>\r\n</tr>\r\n<tr>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Social Media</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Event Management</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Website Development, Content\r\n&amp; SEO</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Proof Reading</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Advertising Bookings\r\n&amp; Management\r\n(including Facebook &amp; AdWords)</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Terms &amp; Conditions Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nAll prices exclude GST and are shown in NZD. Travel for packages which include face to face meetings is included for a radius of up to 20km from Howick, any further kilometres will be charged at $0.74+GST.\r\n\r\nPayments can be accepted through our website by Credit Card, in person by Credit Card, Debit Card or Eftpos, or by internet banking. A Tax invoice will be provided for every payment.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" global_parent=\"259\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Coaching Image\" global_parent=\"259\" show_in_lightbox=\"off\" url=\"#Coaching-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Coaching_sml.jpg\" alt=\"Coaching\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Hands-on Packages Image\" global_parent=\"259\" show_in_lightbox=\"off\" url=\"#Hands-on-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Hands-on_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Individual Services Image\" global_parent=\"259\" show_in_lightbox=\"off\" url=\"#Individual-Projects\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Individual-Projects_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Other Services Image\" global_parent=\"259\" show_in_lightbox=\"off\" url=\"#Other-Services\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Other-Services_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Coaching Blurb\" title=\"Coaching\" url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne on One coaching and consulting services, either as a one-off service or on an on-going basis. Helping you get your marketing on track, and stay on track.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Projects Blurb\" title=\"Projects\" url=\"www.infinitymarketing.co.nz/projects\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%174%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne off marketing projects, such as brochures, website development, one off campaign plans, and much more.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Other Services Blurb\" title=\"Other Services\" url=\"www.infinitymarketing.co.nz/other-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%171%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe aim to provide all your marketing needs in one place, and work with specialists in order to do this. No need to find alternative suppliers, we can help you.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"259\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"259\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"259\" admin_label=\"Call To Action - Contact\" title=\"Ready to take action?\" button_url=\"http://www.infinitymarketing.co.nz/contact/\" url_new_window=\"off\" button_text=\"Click here to contact us now\" use_background_color=\"off\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\nYour new future is waiting\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "MARKETING SERVICES", "", "inherit", "closed", "closed", "", "339-revision-v1", "", "", "2016-04-29 14:07:17", "2016-04-29 02:07:17", "", "339", "http://www.infinitymarketing.co.nz/339-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("347", "1", "2016-04-29 13:56:01", "2016-04-29 01:56:01", "Social Media", "Social Media", "", "inherit", "open", "closed", "", "social-media", "", "", "2016-04-29 13:56:13", "2016-04-29 01:56:13", "", "339", "http://www.infinitymarketing.co.nz/wp-content/uploads/2016/04/Social-Media.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("348", "1", "2016-04-29 13:56:08", "2016-04-29 01:56:08", "Email", "Email", "", "inherit", "open", "closed", "", "email", "", "", "2016-04-29 13:56:17", "2016-04-29 01:56:17", "", "339", "http://www.infinitymarketing.co.nz/wp-content/uploads/2016/04/Email.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("349", "1", "2016-04-29 13:59:15", "2016-04-29 01:59:15", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Marketing Services Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Marketing Services</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Us Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">We offer a range of marketing services for your small business. Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.</p>\r\n<p style=\"text-align: center;\">We offer great monthly packages, which are fully customisable to suit your business needs; and one-off services.</p>\r\n<p style=\"text-align: center;\">All prices exclude GST and are shown in NZD.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hands-on Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Hands-on-Packages\"></a>Hands-on Packages<a name=\"Hands-on-Packages\"></a></h2>\r\n<h3>We implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Custom\" currency=\"$\" per=\"month\" sum=\"?\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]We can design a custom package that suits the unique needs of your business.[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Incredible Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Incredible\" currency=\"$\" per=\"month\" sum=\"300\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]1 x Facebook / Instagram post content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\nMonthly e-mail newsletter\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=GXECEYG2YK63W\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Intermediate Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Intermediate\" currency=\"$\" per=\"month\" sum=\"600\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]2 x Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised  content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nFortnightly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=NGKPUYHNBB62Y\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Advanced Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Advanced\" currency=\"$\" per=\"month\" sum=\"900\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nWeekly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=BLCK98JX9N83J\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Expert Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Expert\" currency=\"$\" per=\"month\" sum=\"1500\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nTwice weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n&nbsp;\r\n\r\n2 x Facebook cover content &amp; artwork\r\n\r\n2 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n2 x blog posts with search engine optimised content\r\n\r\nPoint of sale content &amp; artwork\r\n\r\nManage media bookings/ad campaigns (Social Media/Google)\r\n\r\nWeekly e-mail newsletter\r\n\r\nWebsite updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=9SKCDXVSUANKN\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Other-Services\"></a>Other Services<a name=\"Other-Services\"></a></h2>\r\n<h3>We offer a number of other services - <a href=\"http://www.infinitymarketing.co.nz/contact/\">please contact us for a quote</a></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-244\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Graphic-Design.jpg\" alt=\"Graphic Design\" width=\"93\" height=\"76\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-246\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Printing.jpg\" alt=\"Printing\" width=\"77\" height=\"78\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-245\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Photography.jpg\" alt=\"Photography\" width=\"73\" height=\"60\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-247\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Video.jpg\" alt=\"Video\" width=\"68\" height=\"68\" /></strong></td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Graphic Design</p>\r\n</td>\r\n<td style=\"text-align: center;\" width=\"154\">Printing</td>\r\n<td style=\"text-align: center;\" width=\"154\">Photography</td>\r\n<td style=\"text-align: center;\" width=\"154\">Videography</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-243\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Event-Management.jpg\" alt=\"Event Management\" width=\"68\" height=\"74\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-248\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Web-Development.jpg\" alt=\"Web Development\" width=\"73\" height=\"75\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-242\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Copywriting.jpg\" alt=\"Proof Reading\" width=\"63\" height=\"77\" /></strong></td>\r\n<td style=\"text-align: center;\" width=\"154\"><strong> <img class=\"alignnone size-full wp-image-241\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Advertising-Booking.jpg\" alt=\"Advertising Booking\" width=\"66\" height=\"67\" /></strong></td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;\" width=\"154\">Event Management</td>\r\n<td style=\"text-align: center;\" width=\"154\">Website Development</td>\r\n<td style=\"text-align: center;\" width=\"154\">Proof Reading</td>\r\n<td width=\"154\">\r\n<p style=\"text-align: center;\">Advertising Bookings\r\n&amp; Management</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][et_pb_text admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table width=\"922\">\r\n<tbody>\r\n<tr>\r\n<td width=\"184\"><img class=\"size-full wp-image-348 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/04/Email.jpg\" alt=\"Email\" width=\"75\" height=\"54\" /></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-244 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Graphic-Design.jpg\" alt=\"Graphic Design\" width=\"93\" height=\"76\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-246 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Printing.jpg\" alt=\"Printing\" width=\"77\" height=\"78\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-245 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Photography.jpg\" alt=\"Photography\" width=\"73\" height=\"60\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-247 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Video.jpg\" alt=\"Video\" width=\"68\" height=\"68\" /></b></td>\r\n</tr>\r\n<tr>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Email Marketing</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Graphic Design</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Printing</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Photography</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Videography</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"184\"><img class=\"size-full wp-image-347 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/04/Social-Media.jpg\" alt=\"Social Media\" width=\"72\" height=\"76\" /></td>\r\n<td width=\"184\"><b><img class=\" wp-image-243 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Event-Management.jpg\" alt=\"Event Management\" width=\"68\" height=\"74\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-248 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Web-Development.jpg\" alt=\"Web Development\" width=\"73\" height=\"75\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-242 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Copywriting.jpg\" alt=\"Proof Reading\" width=\"63\" height=\"77\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-241 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Advertising-Booking.jpg\" alt=\"Advertising Booking\" width=\"66\" height=\"67\" /></b></td>\r\n</tr>\r\n<tr>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Social Media</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Event Management</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Website Development, Content\r\n&amp; SEO</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Proof Reading</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Advertising Bookings\r\n&amp; Management\r\n(including Facebook &amp; AdWords)</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Terms &amp; Conditions Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nAll prices exclude GST and are shown in NZD. Travel for packages which include face to face meetings is included for a radius of up to 20km from Howick, any further kilometres will be charged at $0.74+GST.\r\n\r\nPayments can be accepted through our website by Credit Card, in person by Credit Card, Debit Card or Eftpos, or by internet banking. A Tax invoice will be provided for every payment.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" global_parent=\"259\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Coaching Image\" global_parent=\"259\" show_in_lightbox=\"off\" url=\"#Coaching-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Coaching_sml.jpg\" alt=\"Coaching\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Hands-on Packages Image\" global_parent=\"259\" show_in_lightbox=\"off\" url=\"#Hands-on-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Hands-on_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Individual Services Image\" global_parent=\"259\" show_in_lightbox=\"off\" url=\"#Individual-Projects\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Individual-Projects_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Other Services Image\" global_parent=\"259\" show_in_lightbox=\"off\" url=\"#Other-Services\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Other-Services_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"259\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"259\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"259\" admin_label=\"Call To Action - Contact\" title=\"Ready to take action?\" button_url=\"http://www.infinitymarketing.co.nz/contact/\" url_new_window=\"off\" button_text=\"Click here to contact us now\" use_background_color=\"off\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\nYour new future is waiting\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "MARKETING SERVICES", "", "inherit", "closed", "closed", "", "339-revision-v1", "", "", "2016-04-29 13:59:15", "2016-04-29 01:59:15", "", "339", "http://www.infinitymarketing.co.nz/339-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("352", "1", "2016-04-29 14:18:32", "2016-04-29 02:18:32", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Marketing Services Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Marketing Services</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Marketing Services Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">Know you need to do marketing but can\'t find the time? Starting to drop some balls, and need someone to help you make things happen? Or simply, sick of trying to be an expert at it all. We offer a range of on-going marketing services for your small business. We seamlessly integrate with you to deliver, top class marketing activity, that works. Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.</p>\r\n<p style=\"text-align: center;\">We offer great monthly packages, which are fully customisable to suit your business needs. All for affordable monthly rates to suit your budget.</p>\r\n<p style=\"text-align: center;\">Pick and choose the services you require, and how often you require them, and we can provide you a quote.</p>\r\n<p style=\"text-align: center;\">Packages can include graphic design, or we can work with your current designer to deliver these (if you need that, of course).</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hands-on Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Hands-on-Packages\"></a>Hands-on Packages<a name=\"Hands-on-Packages\"></a></h2>\r\n<h3>We implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Custom\" currency=\"$\" per=\"month\" sum=\"?\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]We can design a custom package that suits the unique needs of your business.[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Incredible Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Incredible\" currency=\"$\" per=\"month\" sum=\"300\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]1 x Facebook / Instagram post content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\nMonthly e-mail newsletter\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=GXECEYG2YK63W\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Intermediate Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Intermediate\" currency=\"$\" per=\"month\" sum=\"600\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]2 x Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised  content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nFortnightly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=NGKPUYHNBB62Y\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Advanced Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Advanced\" currency=\"$\" per=\"month\" sum=\"900\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nWeekly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=BLCK98JX9N83J\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Expert Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Expert\" currency=\"$\" per=\"month\" sum=\"1500\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nTwice weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n&nbsp;\r\n\r\n2 x Facebook cover content &amp; artwork\r\n\r\n2 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n2 x blog posts with search engine optimised content\r\n\r\nPoint of sale content &amp; artwork\r\n\r\nManage media bookings/ad campaigns (Social Media/Google)\r\n\r\nWeekly e-mail newsletter\r\n\r\nWebsite updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=9SKCDXVSUANKN\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Other-Services\"></a>Other Services<a name=\"Other-Services\"></a></h2>\r\n<h3>We offer a number of other services - <a href=\"http://www.infinitymarketing.co.nz/contact/\">please contact us for a quote</a></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table width=\"922\">\r\n<tbody>\r\n<tr>\r\n<td width=\"184\"><img class=\"size-full wp-image-348 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/04/Email.jpg\" alt=\"Email\" width=\"75\" height=\"54\" /></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-244 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Graphic-Design.jpg\" alt=\"Graphic Design\" width=\"93\" height=\"76\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-246 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Printing.jpg\" alt=\"Printing\" width=\"77\" height=\"78\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-245 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Photography.jpg\" alt=\"Photography\" width=\"73\" height=\"60\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-247 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Video.jpg\" alt=\"Video\" width=\"68\" height=\"68\" /></b></td>\r\n</tr>\r\n<tr>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Email Marketing</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Graphic Design</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Printing</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Photography</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Videography</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"184\"><img class=\"size-full wp-image-347 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/04/Social-Media.jpg\" alt=\"Social Media\" width=\"72\" height=\"76\" /></td>\r\n<td width=\"184\"><b><img class=\" wp-image-243 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Event-Management.jpg\" alt=\"Event Management\" width=\"68\" height=\"74\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-248 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Web-Development.jpg\" alt=\"Web Development\" width=\"73\" height=\"75\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-242 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Copywriting.jpg\" alt=\"Proof Reading\" width=\"63\" height=\"77\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-241 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Advertising-Booking.jpg\" alt=\"Advertising Booking\" width=\"66\" height=\"67\" /></b></td>\r\n</tr>\r\n<tr>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Social Media</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Event Management</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Website Development, Content\r\n&amp; SEO</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Proof Reading</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Advertising Bookings\r\n&amp; Management\r\n(including Facebook &amp; AdWords)</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" admin_label=\"Section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Terms &amp; Conditions Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nAll prices exclude GST and are shown in NZD. Travel for packages which include face to face meetings is included for a radius of up to 20km from Howick, any further kilometres will be charged at $0.74+GST.\r\n\r\nPayments can be accepted through our website by Credit Card, in person by Credit Card, Debit Card or Eftpos, or by internet banking. A Tax invoice will be provided for every payment.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>We also provide the following services</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Coaching Blurb\" title=\"Coaching\" url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne on One coaching and consulting services, either as a one-off service or on an on-going basis. Helping you get your marketing on track, and stay on track.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Projects Blurb\" title=\"Projects\" url=\"www.infinitymarketing.co.nz/projects\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%174%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne off marketing projects, such as brochures, website development, one off campaign plans, and much more.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Other Services Blurb\" title=\"Other Services\" url=\"www.infinitymarketing.co.nz/other-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%171%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe aim to provide all your marketing needs in one place, and work with specialists in order to do this. No need to find alternative suppliers, we can help you.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"259\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"259\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"259\" admin_label=\"Call To Action - Contact\" title=\"Ready to take action?\" button_url=\"http://www.infinitymarketing.co.nz/contact/\" url_new_window=\"off\" button_text=\"Click here to contact us now\" use_background_color=\"off\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\nYour new future is waiting\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "MARKETING SERVICES", "", "inherit", "closed", "closed", "", "339-revision-v1", "", "", "2016-04-29 14:18:32", "2016-04-29 02:18:32", "", "339", "http://www.infinitymarketing.co.nz/339-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("353", "1", "2016-04-29 14:24:30", "2016-04-29 02:24:30", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Marketing Services Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Marketing Services</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Marketing Services Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">Know you need to do marketing but can\'t find the time? Starting to drop some balls, and need someone to help you make things happen? Or simply, sick of trying to be an expert at it all. We offer a range of on-going marketing services for your small business. We seamlessly integrate with you to deliver, top class marketing activity, that works. Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.</p>\r\n<p style=\"text-align: center;\">We offer great monthly packages, which are fully customisable to suit your business needs. All for affordable monthly rates to suit your budget.</p>\r\n<p style=\"text-align: center;\">Pick and choose the services you require, and how often you require them, and we can provide you a quote.</p>\r\n<p style=\"text-align: center;\">Packages can include graphic design, or we can work with your current designer to deliver these (if you need that, of course).</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hands-on Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Hands-on-Packages\"></a>Hands-on Packages<a name=\"Hands-on-Packages\"></a></h2>\r\n<h3>We implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Custom\" currency=\"$\" per=\"month\" sum=\"?\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nWe can design a custom package that suits the unique needs of your business.\r\n\r\nYou can include services such as (but not limited to):\r\n\r\n+ Facebook / Instagram content &amp; artwork\r\n\r\n+ Facebook cover content &amp; artwork\r\n\r\n+ Website content and graphics updates\r\n\r\n+ Blog posts\r\n\r\n+ Point of sale\r\n\r\n+ Brochure design\r\n\r\n+ Media bookings\r\n\r\n+ Ad campaigns (Social Media/Google)\r\n\r\n+ E-mail newsletter\r\n\r\n+ Monthly progress report with campaign results (provided access is given)\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Incredible Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Incredible\" currency=\"$\" per=\"month\" sum=\"300\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]1 x Facebook / Instagram post content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\nMonthly e-mail newsletter\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=GXECEYG2YK63W\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Intermediate Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Intermediate\" currency=\"$\" per=\"month\" sum=\"600\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]2 x Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised  content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nFortnightly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=NGKPUYHNBB62Y\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Advanced Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Advanced\" currency=\"$\" per=\"month\" sum=\"900\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nWeekly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=BLCK98JX9N83J\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Expert Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Expert\" currency=\"$\" per=\"month\" sum=\"1500\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nTwice weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n&nbsp;\r\n\r\n2 x Facebook cover content &amp; artwork\r\n\r\n2 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n2 x blog posts with search engine optimised content\r\n\r\nPoint of sale content &amp; artwork\r\n\r\nManage media bookings/ad campaigns (Social Media/Google)\r\n\r\nWeekly e-mail newsletter\r\n\r\nWebsite updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=9SKCDXVSUANKN\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Other-Services\"></a>Other Services<a name=\"Other-Services\"></a></h2>\r\n<h3>We offer a number of other services - <a href=\"http://www.infinitymarketing.co.nz/contact/\">please contact us for a quote</a></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table width=\"922\">\r\n<tbody>\r\n<tr>\r\n<td width=\"184\"><img class=\"size-full wp-image-348 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/04/Email.jpg\" alt=\"Email\" width=\"75\" height=\"54\" /></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-244 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Graphic-Design.jpg\" alt=\"Graphic Design\" width=\"93\" height=\"76\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-246 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Printing.jpg\" alt=\"Printing\" width=\"77\" height=\"78\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-245 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Photography.jpg\" alt=\"Photography\" width=\"73\" height=\"60\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-247 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Video.jpg\" alt=\"Video\" width=\"68\" height=\"68\" /></b></td>\r\n</tr>\r\n<tr>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Email Marketing</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Graphic Design</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Printing</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Photography</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Videography</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"184\"><img class=\"size-full wp-image-347 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/04/Social-Media.jpg\" alt=\"Social Media\" width=\"72\" height=\"76\" /></td>\r\n<td width=\"184\"><b><img class=\" wp-image-243 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Event-Management.jpg\" alt=\"Event Management\" width=\"68\" height=\"74\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-248 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Web-Development.jpg\" alt=\"Web Development\" width=\"73\" height=\"75\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-242 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Copywriting.jpg\" alt=\"Proof Reading\" width=\"63\" height=\"77\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-241 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Advertising-Booking.jpg\" alt=\"Advertising Booking\" width=\"66\" height=\"67\" /></b></td>\r\n</tr>\r\n<tr>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Social Media</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Event Management</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Website Development, Content\r\n&amp; SEO</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Proof Reading</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Advertising Bookings\r\n&amp; Management\r\n(including Facebook &amp; AdWords)</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Terms &amp; Conditions Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nAll prices exclude GST and are shown in NZD. Travel for packages which include face to face meetings is included for a radius of up to 20km from Howick, any further kilometres will be charged at $0.74+GST.\r\n\r\nPayments can be accepted through our website by Credit Card, in person by Credit Card, Debit Card or Eftpos, or by internet banking. A Tax invoice will be provided for every payment.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>We also provide the following services</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Coaching Blurb\" title=\"Coaching\" url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne on One coaching and consulting services, either as a one-off service or on an on-going basis. Helping you get your marketing on track, and stay on track.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Projects Blurb\" title=\"Projects\" url=\"www.infinitymarketing.co.nz/projects\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%174%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne off marketing projects, such as brochures, website development, one off campaign plans, and much more.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Other Services Blurb\" title=\"Other Services\" url=\"www.infinitymarketing.co.nz/other-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%171%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe aim to provide all your marketing needs in one place, and work with specialists in order to do this. No need to find alternative suppliers, we can help you.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"259\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"259\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"259\" admin_label=\"Call To Action - Contact\" title=\"Ready to take action?\" button_url=\"http://www.infinitymarketing.co.nz/contact/\" url_new_window=\"off\" button_text=\"Click here to contact us now\" use_background_color=\"off\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\nYour new future is waiting\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "MARKETING SERVICES", "", "inherit", "closed", "closed", "", "339-revision-v1", "", "", "2016-04-29 14:24:30", "2016-04-29 02:24:30", "", "339", "http://www.infinitymarketing.co.nz/339-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("354", "1", "2016-04-29 14:25:22", "2016-04-29 02:25:22", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Marketing Services Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Marketing Services</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Marketing Services Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">Know you need to do marketing but can\'t find the time? Starting to drop some balls, and need someone to help you make things happen? Or simply, sick of trying to be an expert at it all. We offer a range of on-going marketing services for your small business. We seamlessly integrate with you to deliver, top class marketing activity, that works. Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.</p>\r\n<p style=\"text-align: center;\">We offer great monthly packages, which are fully customisable to suit your business needs. All for affordable monthly rates to suit your budget.</p>\r\n<p style=\"text-align: center;\">Pick and choose the services you require, and how often you require them, and we can provide you a quote.</p>\r\n<p style=\"text-align: center;\">Packages can include graphic design, or we can work with your current designer to deliver these (if you need that, of course).</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hands-on Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Hands-on-Packages\"></a>Hands-on Packages<a name=\"Hands-on-Packages\"></a></h2>\r\n<h3>We implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Custom\" currency=\"$\" per=\"month\" sum=\"?\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nWe can design a custom package that suits the unique needs of your business.\r\n\r\nYou can include services such as (but not limited to):\r\n\r\n+Facebook / Instagram content &amp; artwork\r\n\r\n+Facebook cover content &amp; artwork\r\n\r\n+Website content and graphics updates\r\n\r\n+Blog posts\r\n\r\n+Point of sale\r\n\r\n+Brochure design\r\n\r\n+Media bookings\r\n\r\n+Ad campaigns (Social Media/Google)\r\n\r\n+E-mail newsletter\r\n\r\n+Monthly progress report with campaign results (provided access is given)\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Incredible Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Incredible\" currency=\"$\" per=\"month\" sum=\"300\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]1 x Facebook / Instagram post content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\nMonthly e-mail newsletter\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=GXECEYG2YK63W\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Intermediate Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Intermediate\" currency=\"$\" per=\"month\" sum=\"600\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]2 x Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised  content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nFortnightly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=NGKPUYHNBB62Y\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Advanced Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Advanced\" currency=\"$\" per=\"month\" sum=\"900\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]Weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n1 x Facebook cover content &amp; artwork\r\n\r\n1 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n1 x blog post with search engine optimised content\r\n\r\nWeekly e-mail newsletter\r\n\r\nMinor website updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=BLCK98JX9N83J\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_pricing_tables admin_label=\"Expert Pricing\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Expert\" currency=\"$\" per=\"month\" sum=\"1500\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nTwice weekly Facebook / Instagram posts content &amp; artwork\r\n\r\n&nbsp;\r\n\r\n2 x Facebook cover content &amp; artwork\r\n\r\n2 x Website graphic &amp; search engine optimised content to match the above\r\n\r\n2 x blog posts with search engine optimised content\r\n\r\nPoint of sale content &amp; artwork\r\n\r\nManage media bookings/ad campaigns (Social Media/Google)\r\n\r\nWeekly e-mail newsletter\r\n\r\nWebsite updates\r\n\r\nMonthly progress report with campaign results (provided access is given)\r\n\r\nPreferential rates for any additional work required\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=9SKCDXVSUANKN\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Other-Services\"></a>Other Services<a name=\"Other-Services\"></a></h2>\r\n<h3>We offer a number of other services - <a href=\"http://www.infinitymarketing.co.nz/contact/\">please contact us for a quote</a></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table width=\"922\">\r\n<tbody>\r\n<tr>\r\n<td width=\"184\"><img class=\"size-full wp-image-348 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/04/Email.jpg\" alt=\"Email\" width=\"75\" height=\"54\" /></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-244 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Graphic-Design.jpg\" alt=\"Graphic Design\" width=\"93\" height=\"76\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-246 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Printing.jpg\" alt=\"Printing\" width=\"77\" height=\"78\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-245 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Photography.jpg\" alt=\"Photography\" width=\"73\" height=\"60\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-247 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Video.jpg\" alt=\"Video\" width=\"68\" height=\"68\" /></b></td>\r\n</tr>\r\n<tr>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Email Marketing</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Graphic Design</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Printing</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Photography</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Videography</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"184\"><img class=\"size-full wp-image-347 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/04/Social-Media.jpg\" alt=\"Social Media\" width=\"72\" height=\"76\" /></td>\r\n<td width=\"184\"><b><img class=\" wp-image-243 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Event-Management.jpg\" alt=\"Event Management\" width=\"68\" height=\"74\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-248 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Web-Development.jpg\" alt=\"Web Development\" width=\"73\" height=\"75\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-242 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Copywriting.jpg\" alt=\"Proof Reading\" width=\"63\" height=\"77\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-241 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Advertising-Booking.jpg\" alt=\"Advertising Booking\" width=\"66\" height=\"67\" /></b></td>\r\n</tr>\r\n<tr>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Social Media</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Event Management</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Website Development, Content\r\n&amp; SEO</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Proof Reading</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Advertising Bookings\r\n&amp; Management\r\n(including Facebook &amp; AdWords)</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Terms &amp; Conditions Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nAll prices exclude GST and are shown in NZD. Travel for packages which include face to face meetings is included for a radius of up to 20km from Howick, any further kilometres will be charged at $0.74+GST.\r\n\r\nPayments can be accepted through our website by Credit Card, in person by Credit Card, Debit Card or Eftpos, or by internet banking. A Tax invoice will be provided for every payment.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>We also provide the following services</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Coaching Blurb\" title=\"Coaching\" url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne on One coaching and consulting services, either as a one-off service or on an on-going basis. Helping you get your marketing on track, and stay on track.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Projects Blurb\" title=\"Projects\" url=\"www.infinitymarketing.co.nz/projects\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%174%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne off marketing projects, such as brochures, website development, one off campaign plans, and much more.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Other Services Blurb\" title=\"Other Services\" url=\"www.infinitymarketing.co.nz/other-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%171%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe aim to provide all your marketing needs in one place, and work with specialists in order to do this. No need to find alternative suppliers, we can help you.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"259\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"259\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"259\" admin_label=\"Call To Action - Contact\" title=\"Ready to take action?\" button_url=\"http://www.infinitymarketing.co.nz/contact/\" url_new_window=\"off\" button_text=\"Click here to contact us now\" use_background_color=\"off\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\nYour new future is waiting\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "MARKETING SERVICES", "", "inherit", "closed", "closed", "", "339-revision-v1", "", "", "2016-04-29 14:25:22", "2016-04-29 02:25:22", "", "339", "http://www.infinitymarketing.co.nz/339-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("355", "1", "2016-04-29 14:26:34", "2016-04-29 02:26:34", "[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<table width=\"922\"><tbody><tr><td width=\"184\"><img class=\"size-full wp-image-348 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/04/Email.jpg\" alt=\"Email\" width=\"75\" height=\"54\" /></td><td width=\"184\"><b><img class=\"size-full wp-image-244 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Graphic-Design.jpg\" alt=\"Graphic Design\" width=\"93\" height=\"76\" /></b></td><td width=\"184\"><b><img class=\"size-full wp-image-246 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Printing.jpg\" alt=\"Printing\" width=\"77\" height=\"78\" /></b></td><td width=\"184\"><b><img class=\"size-full wp-image-245 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Photography.jpg\" alt=\"Photography\" width=\"73\" height=\"60\" /></b></td><td width=\"184\"><b><img class=\"size-full wp-image-247 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Video.jpg\" alt=\"Video\" width=\"68\" height=\"68\" /></b></td></tr><tr><td width=\"184\"><p style=\"text-align: center;\">Email Marketing</p></td><td width=\"184\"><p style=\"text-align: center;\">Graphic Design</p></td><td width=\"184\"><p style=\"text-align: center;\">Printing</p></td><td width=\"184\"><p style=\"text-align: center;\">Photography</p></td><td width=\"184\"><p style=\"text-align: center;\">Videography</p></td></tr><tr><td width=\"184\"><img class=\"size-full wp-image-347 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/04/Social-Media.jpg\" alt=\"Social Media\" width=\"72\" height=\"76\" /></td><td width=\"184\"><b><img class=\" wp-image-243 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Event-Management.jpg\" alt=\"Event Management\" width=\"68\" height=\"74\" /></b></td><td width=\"184\"><b><img class=\"size-full wp-image-248 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Web-Development.jpg\" alt=\"Web Development\" width=\"73\" height=\"75\" /></b></td><td width=\"184\"><b><img class=\"size-full wp-image-242 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Copywriting.jpg\" alt=\"Proof Reading\" width=\"63\" height=\"77\" /></b></td><td width=\"184\"><b><img class=\"size-full wp-image-241 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Advertising-Booking.jpg\" alt=\"Advertising Booking\" width=\"66\" height=\"67\" /></b></td></tr><tr><td width=\"184\"><p style=\"text-align: center;\">Social Media</p></td><td width=\"184\"><p style=\"text-align: center;\">Event Management</p></td><td width=\"184\"><p style=\"text-align: center;\">Website Development, Content<br /> &amp; SEO</p></td><td width=\"184\"><p style=\"text-align: center;\">Proof Reading</p></td><td width=\"184\"><p style=\"text-align: center;\">Advertising Bookings<br /> &amp; Management<br /> (including Facebook &amp; AdWords)</p></td></tr></tbody></table>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\n\n<br />\n\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Contact us for a Quote Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<h4>If what you are looking for is not listed above, it does not necessarily mean we do not offer the service, <a href=\"http://www.infinitymarketing.co.nz/contact/\">please contact us for a quote.</a></h4>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Other Services Table", "", "publish", "closed", "closed", "", "other-services-table", "", "", "2016-04-29 16:01:29", "2016-04-29 04:01:29", "", "0", "http://www.infinitymarketing.co.nz/et_pb_layout/other-services-table/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("364", "1", "2016-04-29 15:27:53", "2016-04-29 03:27:53", "[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<table width=\"922\"><tbody><tr><td width=\"184\"><img class=\"size-full wp-image-348 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/04/Email.jpg\" alt=\"Email\" width=\"75\" height=\"54\" /></td><td width=\"184\"><b><img class=\"size-full wp-image-244 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Graphic-Design.jpg\" alt=\"Graphic Design\" width=\"93\" height=\"76\" /></b></td><td width=\"184\"><b><img class=\"size-full wp-image-246 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Printing.jpg\" alt=\"Printing\" width=\"77\" height=\"78\" /></b></td><td width=\"184\"><b><img class=\"size-full wp-image-245 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Photography.jpg\" alt=\"Photography\" width=\"73\" height=\"60\" /></b></td><td width=\"184\"><b><img class=\"size-full wp-image-247 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Video.jpg\" alt=\"Video\" width=\"68\" height=\"68\" /></b></td></tr><tr><td width=\"184\"><p style=\"text-align: center;\">Email Marketing</p></td><td width=\"184\"><p style=\"text-align: center;\">Graphic Design</p></td><td width=\"184\"><p style=\"text-align: center;\">Printing</p></td><td width=\"184\"><p style=\"text-align: center;\">Photography</p></td><td width=\"184\"><p style=\"text-align: center;\">Videography</p></td></tr><tr><td width=\"184\"><img class=\"size-full wp-image-347 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/04/Social-Media.jpg\" alt=\"Social Media\" width=\"72\" height=\"76\" /></td><td width=\"184\"><b><img class=\" wp-image-243 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Event-Management.jpg\" alt=\"Event Management\" width=\"68\" height=\"74\" /></b></td><td width=\"184\"><b><img class=\"size-full wp-image-248 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Web-Development.jpg\" alt=\"Web Development\" width=\"73\" height=\"75\" /></b></td><td width=\"184\"><b><img class=\"size-full wp-image-242 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Copywriting.jpg\" alt=\"Proof Reading\" width=\"63\" height=\"77\" /></b></td><td width=\"184\"><b><img class=\"size-full wp-image-241 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Advertising-Booking.jpg\" alt=\"Advertising Booking\" width=\"66\" height=\"67\" /></b></td></tr><tr><td width=\"184\"><p style=\"text-align: center;\">Social Media</p></td><td width=\"184\"><p style=\"text-align: center;\">Event Management</p></td><td width=\"184\"><p style=\"text-align: center;\">Website Development, Content<br /> &amp; SEO</p></td><td width=\"184\"><p style=\"text-align: center;\">Proof Reading</p></td><td width=\"184\"><p style=\"text-align: center;\">Advertising Bookings<br /> &amp; Management<br /> (including Facebook &amp; AdWords)</p></td></tr></tbody></table>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\n\n<br />\n\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section]", "Other Services Table", "", "inherit", "closed", "closed", "", "355-revision-v1", "", "", "2016-04-29 15:27:53", "2016-04-29 03:27:53", "", "355", "http://www.infinitymarketing.co.nz/355-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("358", "1", "2016-04-29 15:15:07", "2016-04-29 03:15:07", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Marketing Services Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Marketing Services</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hands-on Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Hands-on-Packages\"></a>Hands-on Packages<a name=\"Hands-on-Packages\"></a></h2>\r\n<h3>We implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Marketing Services Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">Know you need to do marketing but can\'t find the time? Starting to drop some balls, and need someone to help you make things happen? Or simply, sick of trying to be an expert at it all. We offer a range of on-going marketing services for your small business. We seamlessly integrate with you to deliver, top class marketing activity, that works. Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.</p>\r\n<p style=\"text-align: center;\">We offer great monthly packages, which are fully customisable to suit your business needs. All for affordable monthly rates to suit your budget.</p>\r\n<p style=\"text-align: center;\">Pick and choose the services you require, and how often you require them, and we can provide you a quote.</p>\r\n<p style=\"text-align: center;\">Packages can include graphic design, or we can work with your current designer to deliver these (if you need that, of course).</p>\r\n<p style=\"text-align: center;\">What makes us different? We are qualified and experienced marketers, delivering you products that work, that encourage your customers to take action and deliver you results.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Custom\" currency=\"$\" per=\"month\" sum=\"?\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nWe can design a custom package that suits the unique needs of your business.\r\n\r\nYou can include services such as (but not limited to):\r\n\r\n+Facebook / Instagram content &amp; artwork\r\n\r\n+Facebook cover content &amp; artwork\r\n\r\n+Facebook page/group management\r\n\r\n+Website content and graphics updates\r\n\r\n+Website shop product uploads\r\n\r\n+Blog posts\r\n\r\n+Point of sale\r\n\r\n+Brochure design\r\n\r\n+Media bookings\r\n\r\n+Ad campaigns (Social Media/Google)\r\n\r\n+E-mail newsletter templates, creation, sending, automation &amp; database management\r\n\r\n+Landing pages\r\n\r\n+Monthly progress report with campaign results (provided access is given)\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"355\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"355\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text global_parent=\"355\" admin_label=\"Other Services Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Other-Services\"></a>Other Services<a name=\"Other-Services\"></a></h2>\r\n<h3>We offer a number of other services - <a href=\"http://www.infinitymarketing.co.nz/contact/\">please contact us for a quote</a></h3>\r\n[/et_pb_text][et_pb_text global_parent=\"355\" admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table width=\"922\">\r\n<tbody>\r\n<tr>\r\n<td width=\"184\"><img class=\"size-full wp-image-348 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/04/Email.jpg\" alt=\"Email\" width=\"75\" height=\"54\" /></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-244 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Graphic-Design.jpg\" alt=\"Graphic Design\" width=\"93\" height=\"76\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-246 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Printing.jpg\" alt=\"Printing\" width=\"77\" height=\"78\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-245 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Photography.jpg\" alt=\"Photography\" width=\"73\" height=\"60\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-247 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Video.jpg\" alt=\"Video\" width=\"68\" height=\"68\" /></b></td>\r\n</tr>\r\n<tr>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Email Marketing</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Graphic Design</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Printing</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Photography</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Videography</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"184\"><img class=\"size-full wp-image-347 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/04/Social-Media.jpg\" alt=\"Social Media\" width=\"72\" height=\"76\" /></td>\r\n<td width=\"184\"><b><img class=\" wp-image-243 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Event-Management.jpg\" alt=\"Event Management\" width=\"68\" height=\"74\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-248 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Web-Development.jpg\" alt=\"Web Development\" width=\"73\" height=\"75\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-242 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Copywriting.jpg\" alt=\"Proof Reading\" width=\"63\" height=\"77\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-241 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Advertising-Booking.jpg\" alt=\"Advertising Booking\" width=\"66\" height=\"67\" /></b></td>\r\n</tr>\r\n<tr>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Social Media</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Event Management</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Website Development, Content\r\n&amp; SEO</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Proof Reading</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Advertising Bookings\r\n&amp; Management\r\n(including Facebook &amp; AdWords)</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row global_parent=\"355\" admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button global_parent=\"355\" admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>We also provide the following services</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Coaching Blurb\" title=\"Coaching\" url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne on One coaching and consulting services, either as a one-off service or on an on-going basis. Helping you get your marketing on track, and stay on track.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Projects Blurb\" title=\"Projects\" url=\"www.infinitymarketing.co.nz/projects\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%174%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne off marketing projects, such as brochures, website development, one off campaign plans, and much more.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Other Services Blurb\" title=\"Other Services\" url=\"www.infinitymarketing.co.nz/other-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%171%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe aim to provide all your marketing needs in one place, and work with specialists in order to do this. No need to find alternative suppliers, we can help you.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"259\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"259\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"259\" admin_label=\"Call To Action - Contact\" title=\"Ready to take action?\" button_url=\"http://www.infinitymarketing.co.nz/contact/\" url_new_window=\"off\" button_text=\"Click here to contact us now\" use_background_color=\"off\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\nYour new future is waiting\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "MARKETING SERVICES", "", "inherit", "closed", "closed", "", "339-revision-v1", "", "", "2016-04-29 15:15:07", "2016-04-29 03:15:07", "", "339", "http://www.infinitymarketing.co.nz/339-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("359", "1", "2016-04-29 15:18:47", "2016-04-29 03:18:47", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Marketing Services Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Marketing Services</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hands-on Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Hands-on-Packages\"></a>Hands-on Packages<a name=\"Hands-on-Packages\"></a></h2>\r\n<h3>We implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Marketing Services Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nKnow you need to do marketing but can\'t find the time? Starting to drop some balls, and need someone to help you make things happen? Or simply, sick of trying to be an expert at it all. We offer a range of <strong>on-going marketing services</strong> for your small business. We <strong>seamlessly integrate with you to deliver, top class marketing activity, that works.</strong> Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.\r\n<p style=\"text-align: left;\">We offer great<strong> monthly packages</strong>, which are <strong>fully customisable</strong> to suit your business needs. All for <strong>affordable monthly rates</strong> to suit your budget.</p>\r\n<p style=\"text-align: left;\">Packages can include graphic design, or we can work with your current designer to deliver these (if you need that, of course).</p>\r\n<p style=\"text-align: left;\"><strong>What makes us different?</strong> We are qualified and experienced marketers, delivering you products that work, that encourage your customers to take action and deliver you results.</p>\r\n<p style=\"text-align: left;\">Pick and choose the services you require, and how often you require them, and we can provide you a quote. <strong><a href=\"http://www.infinitymarketing.co.nz/contact/\">Get in touch with us now.</a></strong></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Custom\" currency=\"$\" per=\"month\" sum=\"?\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nWe can design a custom package that suits the unique needs of your business.\r\n\r\nYou can include services such as (but not limited to):\r\n\r\n+Facebook / Instagram content &amp; artwork\r\n\r\n+Facebook cover content &amp; artwork\r\n\r\n+Facebook page/group management\r\n\r\n+Website content and graphics updates\r\n\r\n+Website shop product uploads\r\n\r\n+Blog posts\r\n\r\n+Point of sale\r\n\r\n+Brochure design\r\n\r\n+Media bookings\r\n\r\n+Ad campaigns (Social Media/Google)\r\n\r\n+E-mail newsletter templates, creation, sending, automation &amp; database management\r\n\r\n+Landing pages\r\n\r\n+Monthly progress report with campaign results (provided access is given)\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"355\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"355\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text global_parent=\"355\" admin_label=\"Other Services Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Other-Services\"></a>Other Services<a name=\"Other-Services\"></a></h2>\r\n<h3>We offer a number of other services - <a href=\"http://www.infinitymarketing.co.nz/contact/\">please contact us for a quote</a></h3>\r\n[/et_pb_text][et_pb_text global_parent=\"355\" admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table width=\"922\">\r\n<tbody>\r\n<tr>\r\n<td width=\"184\"><img class=\"size-full wp-image-348 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/04/Email.jpg\" alt=\"Email\" width=\"75\" height=\"54\" /></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-244 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Graphic-Design.jpg\" alt=\"Graphic Design\" width=\"93\" height=\"76\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-246 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Printing.jpg\" alt=\"Printing\" width=\"77\" height=\"78\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-245 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Photography.jpg\" alt=\"Photography\" width=\"73\" height=\"60\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-247 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Video.jpg\" alt=\"Video\" width=\"68\" height=\"68\" /></b></td>\r\n</tr>\r\n<tr>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Email Marketing</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Graphic Design</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Printing</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Photography</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Videography</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"184\"><img class=\"size-full wp-image-347 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/04/Social-Media.jpg\" alt=\"Social Media\" width=\"72\" height=\"76\" /></td>\r\n<td width=\"184\"><b><img class=\" wp-image-243 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Event-Management.jpg\" alt=\"Event Management\" width=\"68\" height=\"74\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-248 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Web-Development.jpg\" alt=\"Web Development\" width=\"73\" height=\"75\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-242 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Copywriting.jpg\" alt=\"Proof Reading\" width=\"63\" height=\"77\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-241 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Advertising-Booking.jpg\" alt=\"Advertising Booking\" width=\"66\" height=\"67\" /></b></td>\r\n</tr>\r\n<tr>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Social Media</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Event Management</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Website Development, Content\r\n&amp; SEO</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Proof Reading</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Advertising Bookings\r\n&amp; Management\r\n(including Facebook &amp; AdWords)</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row global_parent=\"355\" admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button global_parent=\"355\" admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>We also provide the following services</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Coaching Blurb\" title=\"Coaching\" url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne on One coaching and consulting services, either as a one-off service or on an on-going basis. Helping you get your marketing on track, and stay on track.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Projects Blurb\" title=\"Projects\" url=\"www.infinitymarketing.co.nz/projects\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%174%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne off marketing projects, such as brochures, website development, one off campaign plans, and much more.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Other Services Blurb\" title=\"Other Services\" url=\"www.infinitymarketing.co.nz/other-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%171%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe aim to provide all your marketing needs in one place, and work with specialists in order to do this. No need to find alternative suppliers, we can help you.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"259\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"259\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"259\" admin_label=\"Call To Action - Contact\" title=\"Ready to take action?\" button_url=\"http://www.infinitymarketing.co.nz/contact/\" url_new_window=\"off\" button_text=\"Click here to contact us now\" use_background_color=\"off\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\nYour new future is waiting\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "MARKETING SERVICES", "", "inherit", "closed", "closed", "", "339-revision-v1", "", "", "2016-04-29 15:18:47", "2016-04-29 03:18:47", "", "339", "http://www.infinitymarketing.co.nz/339-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("360", "1", "2016-04-29 15:19:58", "2016-04-29 03:19:58", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Marketing Services Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Marketing Services</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hands-on Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Hands-on-Packages\"></a>Hands-on Packages<a name=\"Hands-on-Packages\"></a></h2>\r\n<h3>We implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Marketing Services Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nKnow you need to do marketing but can\'t find the time? Starting to drop some balls, and need someone to help you make things happen? Or simply, sick of trying to be an expert at it all. We offer a range of <strong>on-going marketing services</strong> for your small business. We <strong>seamlessly integrate with you to deliver, top class marketing activity, that works.</strong> Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.\r\n<p style=\"text-align: left;\">We offer great<strong> monthly packages</strong>, which are <strong>fully customisable</strong> to suit your business needs. All for <strong>affordable monthly rates</strong> to suit your budget.</p>\r\n<p style=\"text-align: left;\">Packages can include graphic design, or we can work with your current designer to deliver these (if you need that, of course).</p>\r\n<p style=\"text-align: left;\"><strong>What makes us different?</strong> We are qualified and experienced marketers, delivering you products that work, that encourage your customers to take action and deliver you results.</p>\r\n<p style=\"text-align: left;\"><strong>Pick and choose the services you require</strong>, and <strong>how often</strong> you require them, and <strong>we can provide you a quote</strong>. <strong><a href=\"http://www.infinitymarketing.co.nz/contact/\">Get in touch with us now.</a></strong></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Custom\" currency=\"$\" per=\"month\" sum=\"?\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nWe can design a custom package that suits the unique needs of your business.\r\n\r\nYou can include services such as (but not limited to):\r\n\r\n+Facebook / Instagram content &amp; artwork\r\n\r\n+Facebook cover content &amp; artwork\r\n\r\n+Facebook page/group management\r\n\r\n+Website content and graphics updates\r\n\r\n+Website shop product uploads\r\n\r\n+Blog posts\r\n\r\n+Point of sale\r\n\r\n+Brochure design\r\n\r\n+Media bookings\r\n\r\n+Ad campaigns (Social Media/Google)\r\n\r\n+E-mail newsletter templates, creation, sending, automation &amp; database management\r\n\r\n+Landing pages\r\n\r\n+Monthly progress report with campaign results (provided access is given)\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"355\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"355\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text global_parent=\"355\" admin_label=\"Other Services Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Other-Services\"></a>Other Services<a name=\"Other-Services\"></a></h2>\r\n<h3>We offer a number of other services - <a href=\"http://www.infinitymarketing.co.nz/contact/\">please contact us for a quote</a></h3>\r\n[/et_pb_text][et_pb_text global_parent=\"355\" admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table width=\"922\">\r\n<tbody>\r\n<tr>\r\n<td width=\"184\"><img class=\"size-full wp-image-348 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/04/Email.jpg\" alt=\"Email\" width=\"75\" height=\"54\" /></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-244 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Graphic-Design.jpg\" alt=\"Graphic Design\" width=\"93\" height=\"76\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-246 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Printing.jpg\" alt=\"Printing\" width=\"77\" height=\"78\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-245 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Photography.jpg\" alt=\"Photography\" width=\"73\" height=\"60\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-247 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Video.jpg\" alt=\"Video\" width=\"68\" height=\"68\" /></b></td>\r\n</tr>\r\n<tr>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Email Marketing</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Graphic Design</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Printing</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Photography</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Videography</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"184\"><img class=\"size-full wp-image-347 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/04/Social-Media.jpg\" alt=\"Social Media\" width=\"72\" height=\"76\" /></td>\r\n<td width=\"184\"><b><img class=\" wp-image-243 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Event-Management.jpg\" alt=\"Event Management\" width=\"68\" height=\"74\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-248 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Web-Development.jpg\" alt=\"Web Development\" width=\"73\" height=\"75\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-242 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Copywriting.jpg\" alt=\"Proof Reading\" width=\"63\" height=\"77\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-241 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Advertising-Booking.jpg\" alt=\"Advertising Booking\" width=\"66\" height=\"67\" /></b></td>\r\n</tr>\r\n<tr>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Social Media</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Event Management</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Website Development, Content\r\n&amp; SEO</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Proof Reading</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Advertising Bookings\r\n&amp; Management\r\n(including Facebook &amp; AdWords)</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row global_parent=\"355\" admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button global_parent=\"355\" admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>We also provide the following services</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Coaching Blurb\" title=\"Coaching\" url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne on One coaching and consulting services, either as a one-off service or on an on-going basis. Helping you get your marketing on track, and stay on track.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Projects Blurb\" title=\"Projects\" url=\"www.infinitymarketing.co.nz/projects\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%174%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne off marketing projects, such as brochures, website development, one off campaign plans, and much more.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Other Services Blurb\" title=\"Other Services\" url=\"www.infinitymarketing.co.nz/other-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%171%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe aim to provide all your marketing needs in one place, and work with specialists in order to do this. No need to find alternative suppliers, we can help you.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"259\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"259\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"259\" admin_label=\"Call To Action - Contact\" title=\"Ready to take action?\" button_url=\"http://www.infinitymarketing.co.nz/contact/\" url_new_window=\"off\" button_text=\"Click here to contact us now\" use_background_color=\"off\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\nYour new future is waiting\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "MARKETING SERVICES", "", "inherit", "closed", "closed", "", "339-revision-v1", "", "", "2016-04-29 15:19:58", "2016-04-29 03:19:58", "", "339", "http://www.infinitymarketing.co.nz/339-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("361", "1", "2016-04-29 15:20:59", "2016-04-29 03:20:59", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Other Services</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Us Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">We offer a range of marketing services for your small business. Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.</p>\r\n<p style=\"text-align: center;\">We offer great monthly packages, which are fully customisable to suit your business needs; and one-off services.</p>\r\n<p style=\"text-align: center;\">All prices exclude GST and are shown in NZD.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"355\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"355\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text global_parent=\"355\" admin_label=\"Other Services Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Other-Services\"></a>Other Services<a name=\"Other-Services\"></a></h2>\r\n<h3>We offer a number of other services - <a href=\"http://www.infinitymarketing.co.nz/contact/\">please contact us for a quote</a></h3>\r\n[/et_pb_text][et_pb_text global_parent=\"355\" admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table width=\"922\">\r\n<tbody>\r\n<tr>\r\n<td width=\"184\"><img class=\"size-full wp-image-348 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/04/Email.jpg\" alt=\"Email\" width=\"75\" height=\"54\" /></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-244 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Graphic-Design.jpg\" alt=\"Graphic Design\" width=\"93\" height=\"76\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-246 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Printing.jpg\" alt=\"Printing\" width=\"77\" height=\"78\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-245 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Photography.jpg\" alt=\"Photography\" width=\"73\" height=\"60\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-247 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Video.jpg\" alt=\"Video\" width=\"68\" height=\"68\" /></b></td>\r\n</tr>\r\n<tr>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Email Marketing</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Graphic Design</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Printing</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Photography</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Videography</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"184\"><img class=\"size-full wp-image-347 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/04/Social-Media.jpg\" alt=\"Social Media\" width=\"72\" height=\"76\" /></td>\r\n<td width=\"184\"><b><img class=\" wp-image-243 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Event-Management.jpg\" alt=\"Event Management\" width=\"68\" height=\"74\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-248 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Web-Development.jpg\" alt=\"Web Development\" width=\"73\" height=\"75\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-242 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Copywriting.jpg\" alt=\"Proof Reading\" width=\"63\" height=\"77\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-241 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Advertising-Booking.jpg\" alt=\"Advertising Booking\" width=\"66\" height=\"67\" /></b></td>\r\n</tr>\r\n<tr>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Social Media</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Event Management</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Website Development, Content\r\n&amp; SEO</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Proof Reading</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Advertising Bookings\r\n&amp; Management\r\n(including Facebook &amp; AdWords)</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row global_parent=\"355\" admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button global_parent=\"355\" admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Terms &amp; Conditions Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nAll prices exclude GST and are shown in NZD. Travel for packages which include face to face meetings is included for a radius of up to 20km from Howick, any further kilometres will be charged at $0.74+GST.\r\n\r\nPayments can be accepted through our website by Credit Card, in person by Credit Card, Debit Card or Eftpos, or by internet banking. A Tax invoice will be provided for every payment.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Coaching Image\" show_in_lightbox=\"off\" url=\"#Coaching-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Coaching_sml.jpg\" alt=\"Coaching\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Hands-on Packages Image\" show_in_lightbox=\"off\" url=\"#Hands-on-Packages\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Hands-on_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Individual Services Image\" show_in_lightbox=\"off\" url=\"#Individual-Projects\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Individual-Projects_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Other Services Image\" show_in_lightbox=\"off\" url=\"#Other-Services\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Other-Services_sml.jpg\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"259\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"259\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"259\" admin_label=\"Call To Action - Contact\" title=\"Ready to take action?\" button_url=\"http://www.infinitymarketing.co.nz/contact/\" url_new_window=\"off\" button_text=\"Click here to contact us now\" use_background_color=\"off\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\nYour new future is waiting\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "OTHER SERVICES", "", "inherit", "closed", "closed", "", "345-revision-v1", "", "", "2016-04-29 15:20:59", "2016-04-29 03:20:59", "", "345", "http://www.infinitymarketing.co.nz/345-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("362", "1", "2016-04-29 15:22:18", "2016-04-29 03:22:18", "[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<h2>We also provide the following services</h2>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Coaching Blurb\" title=\"Coaching\" url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One on One coaching and consulting services, either as a one-off service or on an on-going basis. Helping you get your marketing on track, and stay on track.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Projects Blurb\" title=\"Projects\" url=\"www.infinitymarketing.co.nz/projects\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%174%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One off marketing projects, such as brochures, website development, one off campaign plans, and much more. We can support you for a one off marketing project.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Other Services Blurb\" title=\"Other Services\" url=\"www.infinitymarketing.co.nz/other-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%171%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>We aim to provide all your marketing needs in one place, and work with specialists in order to do this. No need to find alternative suppliers, we can help you.</p>\n\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "We Also Provide", "", "publish", "closed", "closed", "", "we-also-provide", "", "", "2016-04-29 15:41:12", "2016-04-29 03:41:12", "", "0", "http://www.infinitymarketing.co.nz/et_pb_layout/we-also-provide/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("369", "1", "2016-04-29 15:30:41", "2016-04-29 03:30:41", "[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Other Services Blurb\" title=\"Other Services\" url=\"www.infinitymarketing.co.nz/other-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%171%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>We aim to provide all your marketing needs in one place, and work with specialists in order to do this. No need to find alternative suppliers, we can help you.</p>\n\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "We Also Provide", "", "inherit", "closed", "closed", "", "362-revision-v1", "", "", "2016-04-29 15:30:41", "2016-04-29 03:30:41", "", "362", "http://www.infinitymarketing.co.nz/362-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("367", "1", "2016-04-29 15:30:11", "2016-04-29 03:30:11", "[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<h2>We also provide the following services</h2>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Other Services Blurb\" title=\"Other Services\" url=\"www.infinitymarketing.co.nz/other-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%171%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>We aim to provide all your marketing needs in one place, and work with specialists in order to do this. No need to find alternative suppliers, we can help you.</p>\n\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "We Also Provide", "", "inherit", "closed", "closed", "", "362-revision-v1", "", "", "2016-04-29 15:30:11", "2016-04-29 03:30:11", "", "362", "http://www.infinitymarketing.co.nz/362-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("366", "1", "2016-04-29 15:30:06", "2016-04-29 03:30:06", "[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<h2>We also provide the following services</h2>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Projects Blurb\" title=\"Projects\" url=\"www.infinitymarketing.co.nz/projects\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%174%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One off marketing projects, such as brochures, website development, one off campaign plans, and much more.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Other Services Blurb\" title=\"Other Services\" url=\"www.infinitymarketing.co.nz/other-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%171%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>We aim to provide all your marketing needs in one place, and work with specialists in order to do this. No need to find alternative suppliers, we can help you.</p>\n\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "We Also Provide", "", "inherit", "closed", "closed", "", "362-revision-v1", "", "", "2016-04-29 15:30:06", "2016-04-29 03:30:06", "", "362", "http://www.infinitymarketing.co.nz/362-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("388", "1", "2016-04-29 15:38:56", "2016-04-29 03:38:56", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Marketing Services Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Marketing Services</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hands-on Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Hands-on-Packages\"></a>Hands-on Packages<a name=\"Hands-on-Packages\"></a></h2>\r\n<h3>We implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Marketing Services Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nKnow you need to do marketing but can\'t find the time? Starting to drop some balls, and need someone to help you make things happen? Or simply, sick of trying to be an expert at it all. We offer a range of <strong>on-going marketing services</strong> for your small business. We <strong>seamlessly integrate with you to deliver, top class marketing activity, that works.</strong> Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.\r\n<p style=\"text-align: left;\">We offer great<strong> monthly packages</strong>, which are <strong>fully customisable</strong> to suit your business needs. All for <strong>affordable monthly rates</strong> to suit your budget.</p>\r\n<p style=\"text-align: left;\">Packages can include graphic design, or we can work with your current designer to deliver these (if you need that, of course).</p>\r\n<p style=\"text-align: left;\"><strong>What makes us different?</strong> We are qualified and experienced marketers, delivering you products that work, that encourage your customers to take action and deliver you results.</p>\r\n<p style=\"text-align: left;\"><strong>Pick and choose the services you require</strong>, and <strong>how often</strong> you require them, and <strong>we can provide you a quote</strong>. <strong><a href=\"http://www.infinitymarketing.co.nz/contact/\">Get in touch with us now.</a></strong></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Custom\" currency=\"$\" per=\"month\" sum=\"?\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nWe can design a custom package that suits the unique needs of your business.\r\n\r\nYou can include services such as (but not limited to):\r\n\r\n+Facebook / Instagram content &amp; artwork\r\n\r\n+Facebook cover content &amp; artwork\r\n\r\n+Facebook page/group management\r\n\r\n+Website content and graphics updates\r\n\r\n+Website shop product uploads\r\n\r\n+Blog posts\r\n\r\n+Point of sale\r\n\r\n+Brochure design\r\n\r\n+Media bookings\r\n\r\n+Ad campaigns (Social Media/Google)\r\n\r\n+E-mail newsletter templates, creation, sending, automation &amp; database management\r\n\r\n+Landing pages\r\n\r\n+Monthly progress report with campaign results (provided access is given)\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"362\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"362\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text global_parent=\"362\" admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>We also provide the following services</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row global_parent=\"362\" admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb global_parent=\"362\" admin_label=\"Coaching Blurb\" title=\"Coaching\" url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne on One coaching and consulting services, either as a one-off service or on an on-going basis. Helping you get your marketing on track, and stay on track.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb global_parent=\"362\" admin_label=\"Projects Blurb\" title=\"Projects\" url=\"www.infinitymarketing.co.nz/projects\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%174%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne off marketing projects, such as brochures, website development, one off campaign plans, and much more. We can support you for a one off marketing project.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb global_parent=\"362\" admin_label=\"Other Services Blurb\" title=\"Other Services\" url=\"www.infinitymarketing.co.nz/other-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%171%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe aim to provide all your marketing needs in one place, and work with specialists in order to do this. No need to find alternative suppliers, we can help you.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"259\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"259\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"259\" admin_label=\"Call To Action - Contact\" title=\"Ready to take action?\" button_url=\"http://www.infinitymarketing.co.nz/contact/\" url_new_window=\"off\" button_text=\"Click here to contact us now\" use_background_color=\"off\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\nYour new future is waiting\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "MARKETING SERVICES", "", "inherit", "closed", "closed", "", "339-revision-v1", "", "", "2016-04-29 15:38:56", "2016-04-29 03:38:56", "", "339", "http://www.infinitymarketing.co.nz/339-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("363", "1", "2016-04-29 15:22:25", "2016-04-29 03:22:25", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Marketing Services Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Marketing Services</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hands-on Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Hands-on-Packages\"></a>Hands-on Packages<a name=\"Hands-on-Packages\"></a></h2>\r\n<h3>We implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Marketing Services Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nKnow you need to do marketing but can\'t find the time? Starting to drop some balls, and need someone to help you make things happen? Or simply, sick of trying to be an expert at it all. We offer a range of <strong>on-going marketing services</strong> for your small business. We <strong>seamlessly integrate with you to deliver, top class marketing activity, that works.</strong> Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.\r\n<p style=\"text-align: left;\">We offer great<strong> monthly packages</strong>, which are <strong>fully customisable</strong> to suit your business needs. All for <strong>affordable monthly rates</strong> to suit your budget.</p>\r\n<p style=\"text-align: left;\">Packages can include graphic design, or we can work with your current designer to deliver these (if you need that, of course).</p>\r\n<p style=\"text-align: left;\"><strong>What makes us different?</strong> We are qualified and experienced marketers, delivering you products that work, that encourage your customers to take action and deliver you results.</p>\r\n<p style=\"text-align: left;\"><strong>Pick and choose the services you require</strong>, and <strong>how often</strong> you require them, and <strong>we can provide you a quote</strong>. <strong><a href=\"http://www.infinitymarketing.co.nz/contact/\">Get in touch with us now.</a></strong></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Custom\" currency=\"$\" per=\"month\" sum=\"?\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nWe can design a custom package that suits the unique needs of your business.\r\n\r\nYou can include services such as (but not limited to):\r\n\r\n+Facebook / Instagram content &amp; artwork\r\n\r\n+Facebook cover content &amp; artwork\r\n\r\n+Facebook page/group management\r\n\r\n+Website content and graphics updates\r\n\r\n+Website shop product uploads\r\n\r\n+Blog posts\r\n\r\n+Point of sale\r\n\r\n+Brochure design\r\n\r\n+Media bookings\r\n\r\n+Ad campaigns (Social Media/Google)\r\n\r\n+E-mail newsletter templates, creation, sending, automation &amp; database management\r\n\r\n+Landing pages\r\n\r\n+Monthly progress report with campaign results (provided access is given)\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"355\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"355\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text global_parent=\"355\" admin_label=\"Other Services Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Other-Services\"></a>Other Services<a name=\"Other-Services\"></a></h2>\r\n<h3>We offer a number of other services - <a href=\"http://www.infinitymarketing.co.nz/contact/\">please contact us for a quote</a></h3>\r\n[/et_pb_text][et_pb_text global_parent=\"355\" admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table width=\"922\">\r\n<tbody>\r\n<tr>\r\n<td width=\"184\"><img class=\"size-full wp-image-348 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/04/Email.jpg\" alt=\"Email\" width=\"75\" height=\"54\" /></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-244 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Graphic-Design.jpg\" alt=\"Graphic Design\" width=\"93\" height=\"76\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-246 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Printing.jpg\" alt=\"Printing\" width=\"77\" height=\"78\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-245 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Photography.jpg\" alt=\"Photography\" width=\"73\" height=\"60\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-247 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Video.jpg\" alt=\"Video\" width=\"68\" height=\"68\" /></b></td>\r\n</tr>\r\n<tr>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Email Marketing</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Graphic Design</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Printing</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Photography</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Videography</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"184\"><img class=\"size-full wp-image-347 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/04/Social-Media.jpg\" alt=\"Social Media\" width=\"72\" height=\"76\" /></td>\r\n<td width=\"184\"><b><img class=\" wp-image-243 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Event-Management.jpg\" alt=\"Event Management\" width=\"68\" height=\"74\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-248 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Web-Development.jpg\" alt=\"Web Development\" width=\"73\" height=\"75\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-242 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Copywriting.jpg\" alt=\"Proof Reading\" width=\"63\" height=\"77\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-241 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Advertising-Booking.jpg\" alt=\"Advertising Booking\" width=\"66\" height=\"67\" /></b></td>\r\n</tr>\r\n<tr>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Social Media</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Event Management</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Website Development, Content\r\n&amp; SEO</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Proof Reading</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Advertising Bookings\r\n&amp; Management\r\n(including Facebook &amp; AdWords)</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row global_parent=\"355\" admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button global_parent=\"355\" admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" global_module=\"362\"][et_pb_row global_parent=\"362\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text global_parent=\"362\" admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>We also provide the following services</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row global_parent=\"362\" admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb global_parent=\"362\" admin_label=\"Coaching Blurb\" title=\"Coaching\" url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne on One coaching and consulting services, either as a one-off service or on an on-going basis. Helping you get your marketing on track, and stay on track.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb global_parent=\"362\" admin_label=\"Projects Blurb\" title=\"Projects\" url=\"www.infinitymarketing.co.nz/projects\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%174%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne off marketing projects, such as brochures, website development, one off campaign plans, and much more.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb global_parent=\"362\" admin_label=\"Other Services Blurb\" title=\"Other Services\" url=\"www.infinitymarketing.co.nz/other-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%171%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe aim to provide all your marketing needs in one place, and work with specialists in order to do this. No need to find alternative suppliers, we can help you.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"259\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"259\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"259\" admin_label=\"Call To Action - Contact\" title=\"Ready to take action?\" button_url=\"http://www.infinitymarketing.co.nz/contact/\" url_new_window=\"off\" button_text=\"Click here to contact us now\" use_background_color=\"off\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\nYour new future is waiting\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "MARKETING SERVICES", "", "inherit", "closed", "closed", "", "339-revision-v1", "", "", "2016-04-29 15:22:25", "2016-04-29 03:22:25", "", "339", "http://www.infinitymarketing.co.nz/339-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("365", "1", "2016-04-29 15:29:04", "2016-04-29 03:29:04", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Other Services</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Header\" global_parent=\"355\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Other-Services\"></a>Other Services<a name=\"Other-Services\"></a></h2>\r\n<h3>We offer a number of other services - <a href=\"http://www.infinitymarketing.co.nz/contact/\">please contact us for a quote</a></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Other Services Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: left;\">We <strong>offer a range of marketing services</strong> for your small business, and together with a<strong> team of experts,</strong> <strong>all of your marketing services needs can be met in one place</strong> with Infinity Marketing. You no longer need to find a good printer, of photographer, or any type of other supplier -<strong> we work with great people in order to bring you a comprehensive service</strong>.</p>\r\n<p style=\"text-align: left;\"><a href=\"http://www.infinitymarketing.co.nz/contact/\"><strong>Simply get in touch</strong></a> with your requirements, or if you are not even sure what those are yet, let\'s have a chat and we can find a solution that will have you sorted in no time.</p>\r\n<p style=\"text-align: left;\">If you don\'t see what you a looking for in the list below, it does not mean we do not provide that service,<strong> <a href=\"http://www.infinitymarketing.co.nz/contact/\">please get in touch.</a></strong></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"355\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"355\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text global_parent=\"355\" admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table width=\"922\">\r\n<tbody>\r\n<tr>\r\n<td width=\"184\"><img class=\"size-full wp-image-348 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/04/Email.jpg\" alt=\"Email\" width=\"75\" height=\"54\" /></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-244 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Graphic-Design.jpg\" alt=\"Graphic Design\" width=\"93\" height=\"76\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-246 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Printing.jpg\" alt=\"Printing\" width=\"77\" height=\"78\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-245 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Photography.jpg\" alt=\"Photography\" width=\"73\" height=\"60\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-247 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Video.jpg\" alt=\"Video\" width=\"68\" height=\"68\" /></b></td>\r\n</tr>\r\n<tr>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Email Marketing</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Graphic Design</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Printing</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Photography</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Videography</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"184\"><img class=\"size-full wp-image-347 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/04/Social-Media.jpg\" alt=\"Social Media\" width=\"72\" height=\"76\" /></td>\r\n<td width=\"184\"><b><img class=\" wp-image-243 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Event-Management.jpg\" alt=\"Event Management\" width=\"68\" height=\"74\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-248 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Web-Development.jpg\" alt=\"Web Development\" width=\"73\" height=\"75\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-242 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Copywriting.jpg\" alt=\"Proof Reading\" width=\"63\" height=\"77\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-241 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Advertising-Booking.jpg\" alt=\"Advertising Booking\" width=\"66\" height=\"67\" /></b></td>\r\n</tr>\r\n<tr>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Social Media</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Event Management</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Website Development, Content\r\n&amp; SEO</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Proof Reading</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Advertising Bookings\r\n&amp; Management\r\n(including Facebook &amp; AdWords)</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row global_parent=\"355\" admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button global_parent=\"355\" admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"362\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"362\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text global_parent=\"362\" admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>We also provide the following services</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row global_parent=\"362\" admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb global_parent=\"362\" admin_label=\"Coaching Blurb\" title=\"Coaching\" url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne on One coaching and consulting services, either as a one-off service or on an on-going basis. Helping you get your marketing on track, and stay on track.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb global_parent=\"362\" admin_label=\"Projects Blurb\" title=\"Projects\" url=\"www.infinitymarketing.co.nz/projects\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%174%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne off marketing projects, such as brochures, website development, one off campaign plans, and much more.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb global_parent=\"362\" admin_label=\"Other Services Blurb\" title=\"Other Services\" url=\"www.infinitymarketing.co.nz/other-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%171%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe aim to provide all your marketing needs in one place, and work with specialists in order to do this. No need to find alternative suppliers, we can help you.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"259\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"259\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"259\" admin_label=\"Call To Action - Contact\" title=\"Ready to take action?\" button_url=\"http://www.infinitymarketing.co.nz/contact/\" url_new_window=\"off\" button_text=\"Click here to contact us now\" use_background_color=\"off\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\nYour new future is waiting\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "OTHER SERVICES", "", "inherit", "closed", "closed", "", "345-revision-v1", "", "", "2016-04-29 15:29:04", "2016-04-29 03:29:04", "", "345", "http://www.infinitymarketing.co.nz/345-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("370", "1", "2016-04-29 15:33:36", "2016-04-29 03:33:36", "[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<h2>We also provide the following services</h2>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Coaching Blurb\" title=\"Coaching\" url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One on One coaching and consulting services, either as a one-off service or on an on-going basis. Helping you get your marketing on track, and stay on track.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Marketing Services Blurb\" title=\"Marketing Services\" url=\"www.infinitymarketing.co.nz/marketing-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p style=\"text-align: center;\">Ongoing Marketing Services ensures your marketing happens like clock-work. The wheels keep churning, and your marketing keeps working for you.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Projects Blurb\" title=\"Projects\" url=\"www.infinitymarketing.co.nz/projects\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%174%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One off marketing projects, such as brochures, website development, one off campaign plans, and much more. We can support you for a one off marketing project.</p>\n\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "We Also Provide - Coaching, Marketing Services & Projects", "", "publish", "closed", "closed", "", "we-also-provide-coaching-marketing-services-projects", "", "", "2016-04-29 16:04:20", "2016-04-29 04:04:20", "", "0", "http://www.infinitymarketing.co.nz/et_pb_layout/we-also-provide-coaching-marketing-services-projects/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("368", "1", "2016-04-29 15:30:26", "2016-04-29 03:30:26", "[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<h2>We also provide the following services</h2>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Other Services Blurb\" title=\"Other Services\" url=\"www.infinitymarketing.co.nz/other-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%171%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>We aim to provide all your marketing needs in one place, and work with specialists in order to do this. No need to find alternative suppliers, we can help you.</p>\n\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "We Also Provide", "", "inherit", "closed", "closed", "", "362-revision-v1", "", "", "2016-04-29 15:30:26", "2016-04-29 03:30:26", "", "362", "http://www.infinitymarketing.co.nz/362-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("372", "1", "2016-04-29 15:34:59", "2016-04-29 03:34:59", "[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<h2>We also provide the following services</h2>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Coaching Blurb\" title=\"Coaching\" url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One on One coaching and consulting services, either as a one-off service or on an on-going basis. Helping you get your marketing on track, and stay on track.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Marketing Services Blurb\" title=\"Marketing Services\" url=\"www.infinitymarketing.co.nz/marketing-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p style=\"text-align: center;\">Ongoing Marketing Services ensures your marketing happens like clock-work. The wheels keep churning, and your marketing keeps working for you.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Projects Blurb\" title=\"Projects\" url=\"www.infinitymarketing.co.nz/projects\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%174%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One off marketing projects, such as brochures, website development, one off campaign plans, and much more. We can support you for a one off marketing project. </p>\n\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "We Also Provide - Coaching, Marketing Services & Projects", "", "inherit", "closed", "closed", "", "370-revision-v1", "", "", "2016-04-29 15:34:59", "2016-04-29 03:34:59", "", "370", "http://www.infinitymarketing.co.nz/370-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("371", "1", "2016-04-29 15:33:42", "2016-04-29 03:33:42", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Other Services</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Header\" global_parent=\"355\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>We offer a number of other services - <a href=\"http://www.infinitymarketing.co.nz/contact/\">please contact us for a quote</a></h2>\r\n[/et_pb_text][et_pb_text admin_label=\"Other Services Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: left;\">We <strong>offer a range of marketing services</strong> for your small business, and together with a<strong> team of experts,</strong> <strong>all of your marketing services needs can be met in one place</strong> with Infinity Marketing. You no longer need to find a good printer, of photographer, or any type of other supplier -<strong> we work with great people in order to bring you a comprehensive service</strong>.</p>\r\n<p style=\"text-align: left;\"><a href=\"http://www.infinitymarketing.co.nz/contact/\"><strong>Simply get in touch</strong></a> with your requirements, or if you are not even sure what those are yet, let\'s have a chat and we can find a solution that will have you sorted in no time.</p>\r\n<p style=\"text-align: left;\">If you don\'t see what you a looking for in the list below, it does not mean we do not provide that service,<strong> <a href=\"http://www.infinitymarketing.co.nz/contact/\">please get in touch.</a></strong></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"355\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"355\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text global_parent=\"355\" admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table width=\"922\">\r\n<tbody>\r\n<tr>\r\n<td width=\"184\"><img class=\"size-full wp-image-348 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/04/Email.jpg\" alt=\"Email\" width=\"75\" height=\"54\" /></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-244 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Graphic-Design.jpg\" alt=\"Graphic Design\" width=\"93\" height=\"76\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-246 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Printing.jpg\" alt=\"Printing\" width=\"77\" height=\"78\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-245 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Photography.jpg\" alt=\"Photography\" width=\"73\" height=\"60\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-247 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Video.jpg\" alt=\"Video\" width=\"68\" height=\"68\" /></b></td>\r\n</tr>\r\n<tr>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Email Marketing</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Graphic Design</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Printing</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Photography</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Videography</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"184\"><img class=\"size-full wp-image-347 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/04/Social-Media.jpg\" alt=\"Social Media\" width=\"72\" height=\"76\" /></td>\r\n<td width=\"184\"><b><img class=\" wp-image-243 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Event-Management.jpg\" alt=\"Event Management\" width=\"68\" height=\"74\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-248 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Web-Development.jpg\" alt=\"Web Development\" width=\"73\" height=\"75\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-242 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Copywriting.jpg\" alt=\"Proof Reading\" width=\"63\" height=\"77\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-241 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Advertising-Booking.jpg\" alt=\"Advertising Booking\" width=\"66\" height=\"67\" /></b></td>\r\n</tr>\r\n<tr>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Social Media</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Event Management</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Website Development, Content\r\n&amp; SEO</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Proof Reading</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Advertising Bookings\r\n&amp; Management\r\n(including Facebook &amp; AdWords)</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row global_parent=\"355\" admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button global_parent=\"355\" admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" global_module=\"370\"][et_pb_row global_parent=\"370\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text global_parent=\"362\" admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>We also provide the following services</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row global_parent=\"370\" admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb global_parent=\"362\" admin_label=\"Coaching Blurb\" title=\"Coaching\" url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne on One coaching and consulting services, either as a one-off service or on an on-going basis. Helping you get your marketing on track, and stay on track.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb global_parent=\"370\" admin_label=\"Marketing Services Blurb\" title=\"Marketing Services\" url=\"www.infinitymarketing.co.nz/marketing-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">Ongoing Marketing Services ensures your marketing happens like clock-work. The wheels keep churning, and your marketing keeps working for you.</p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb global_parent=\"362\" admin_label=\"Projects Blurb\" title=\"Projects\" url=\"www.infinitymarketing.co.nz/projects\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%174%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne off marketing projects, such as brochures, website development, one off campaign plans, and much more.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"259\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"259\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"259\" admin_label=\"Call To Action - Contact\" title=\"Ready to take action?\" button_url=\"http://www.infinitymarketing.co.nz/contact/\" url_new_window=\"off\" button_text=\"Click here to contact us now\" use_background_color=\"off\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\nYour new future is waiting\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "OTHER SERVICES", "", "inherit", "closed", "closed", "", "345-revision-v1", "", "", "2016-04-29 15:33:42", "2016-04-29 03:33:42", "", "345", "http://www.infinitymarketing.co.nz/345-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("373", "1", "2016-04-29 15:35:04", "2016-04-29 03:35:04", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Other Services</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Header\" global_parent=\"355\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>We offer a number of other services - <a href=\"http://www.infinitymarketing.co.nz/contact/\">please contact us for a quote</a></h2>\r\n[/et_pb_text][et_pb_text admin_label=\"Other Services Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: left;\">We <strong>offer a range of marketing services</strong> for your small business, and together with a<strong> team of experts,</strong> <strong>all of your marketing services needs can be met in one place</strong> with Infinity Marketing. You no longer need to find a good printer, of photographer, or any type of other supplier -<strong> we work with great people in order to bring you a comprehensive service</strong>.</p>\r\n<p style=\"text-align: left;\"><a href=\"http://www.infinitymarketing.co.nz/contact/\"><strong>Simply get in touch</strong></a> with your requirements, or if you are not even sure what those are yet, let\'s have a chat and we can find a solution that will have you sorted in no time.</p>\r\n<p style=\"text-align: left;\">If you don\'t see what you a looking for in the list below, it does not mean we do not provide that service,<strong> <a href=\"http://www.infinitymarketing.co.nz/contact/\">please get in touch.</a></strong></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"355\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"355\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text global_parent=\"355\" admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table width=\"922\">\r\n<tbody>\r\n<tr>\r\n<td width=\"184\"><img class=\"size-full wp-image-348 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/04/Email.jpg\" alt=\"Email\" width=\"75\" height=\"54\" /></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-244 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Graphic-Design.jpg\" alt=\"Graphic Design\" width=\"93\" height=\"76\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-246 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Printing.jpg\" alt=\"Printing\" width=\"77\" height=\"78\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-245 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Photography.jpg\" alt=\"Photography\" width=\"73\" height=\"60\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-247 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Video.jpg\" alt=\"Video\" width=\"68\" height=\"68\" /></b></td>\r\n</tr>\r\n<tr>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Email Marketing</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Graphic Design</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Printing</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Photography</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Videography</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"184\"><img class=\"size-full wp-image-347 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/04/Social-Media.jpg\" alt=\"Social Media\" width=\"72\" height=\"76\" /></td>\r\n<td width=\"184\"><b><img class=\" wp-image-243 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Event-Management.jpg\" alt=\"Event Management\" width=\"68\" height=\"74\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-248 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Web-Development.jpg\" alt=\"Web Development\" width=\"73\" height=\"75\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-242 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Copywriting.jpg\" alt=\"Proof Reading\" width=\"63\" height=\"77\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-241 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Advertising-Booking.jpg\" alt=\"Advertising Booking\" width=\"66\" height=\"67\" /></b></td>\r\n</tr>\r\n<tr>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Social Media</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Event Management</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Website Development, Content\r\n&amp; SEO</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Proof Reading</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Advertising Bookings\r\n&amp; Management\r\n(including Facebook &amp; AdWords)</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row global_parent=\"355\" admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button global_parent=\"355\" admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" global_module=\"370\"][et_pb_row global_parent=\"370\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text global_parent=\"362\" admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>We also provide the following services</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row global_parent=\"370\" admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb global_parent=\"362\" admin_label=\"Coaching Blurb\" title=\"Coaching\" url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne on One coaching and consulting services, either as a one-off service or on an on-going basis. Helping you get your marketing on track, and stay on track.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb global_parent=\"370\" admin_label=\"Marketing Services Blurb\" title=\"Marketing Services\" url=\"www.infinitymarketing.co.nz/marketing-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">Ongoing Marketing Services ensures your marketing happens like clock-work. The wheels keep churning, and your marketing keeps working for you.</p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb global_parent=\"362\" admin_label=\"Projects Blurb\" title=\"Projects\" url=\"www.infinitymarketing.co.nz/projects\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%174%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne off marketing projects, such as brochures, website development, one off campaign plans, and much more. We can support you for a one off marketing project.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"259\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"259\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"259\" admin_label=\"Call To Action - Contact\" title=\"Ready to take action?\" button_url=\"http://www.infinitymarketing.co.nz/contact/\" url_new_window=\"off\" button_text=\"Click here to contact us now\" use_background_color=\"off\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\nYour new future is waiting\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "OTHER SERVICES", "", "inherit", "closed", "closed", "", "345-revision-v1", "", "", "2016-04-29 15:35:04", "2016-04-29 03:35:04", "", "345", "http://www.infinitymarketing.co.nz/345-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("374", "1", "2016-04-29 15:35:26", "2016-04-29 03:35:26", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Other Services</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Header\" global_parent=\"355\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>We offer a number of other services - <a href=\"http://www.infinitymarketing.co.nz/contact/\">please contact us for a quote</a></h2>\r\n[/et_pb_text][et_pb_text admin_label=\"Other Services Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: left;\">We <strong>offer a range of marketing services</strong> for your small business, and together with a<strong> team of experts,</strong> <strong>all of your marketing services needs can be met in one place</strong> with Infinity Marketing. You no longer need to find a good printer, of photographer, or any type of other supplier -<strong> we work with great people in order to bring you a comprehensive service</strong>.</p>\r\n<p style=\"text-align: left;\"><a href=\"http://www.infinitymarketing.co.nz/contact/\"><strong>Simply get in touch</strong></a> with your requirements, or if you are not even sure what those are yet, let\'s have a chat and we can find a solution that will have you sorted in no time.</p>\r\n<p style=\"text-align: left;\">If you don\'t see what you a looking for in the list below, it does not mean we do not provide that service,<strong> <a href=\"http://www.infinitymarketing.co.nz/contact/\">please get in touch.</a></strong></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"355\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"355\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text global_parent=\"355\" admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table width=\"922\">\r\n<tbody>\r\n<tr>\r\n<td width=\"184\"><img class=\"size-full wp-image-348 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/04/Email.jpg\" alt=\"Email\" width=\"75\" height=\"54\" /></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-244 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Graphic-Design.jpg\" alt=\"Graphic Design\" width=\"93\" height=\"76\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-246 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Printing.jpg\" alt=\"Printing\" width=\"77\" height=\"78\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-245 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Photography.jpg\" alt=\"Photography\" width=\"73\" height=\"60\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-247 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Video.jpg\" alt=\"Video\" width=\"68\" height=\"68\" /></b></td>\r\n</tr>\r\n<tr>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Email Marketing</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Graphic Design</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Printing</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Photography</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Videography</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"184\"><img class=\"size-full wp-image-347 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/04/Social-Media.jpg\" alt=\"Social Media\" width=\"72\" height=\"76\" /></td>\r\n<td width=\"184\"><b><img class=\" wp-image-243 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Event-Management.jpg\" alt=\"Event Management\" width=\"68\" height=\"74\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-248 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Web-Development.jpg\" alt=\"Web Development\" width=\"73\" height=\"75\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-242 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Copywriting.jpg\" alt=\"Proof Reading\" width=\"63\" height=\"77\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-241 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Advertising-Booking.jpg\" alt=\"Advertising Booking\" width=\"66\" height=\"67\" /></b></td>\r\n</tr>\r\n<tr>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Social Media</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Event Management</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Website Development, Content\r\n&amp; SEO</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Proof Reading</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Advertising Bookings\r\n&amp; Management\r\n(including Facebook &amp; AdWords)</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row global_parent=\"355\" admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button global_parent=\"355\" admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"370\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"370\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text global_parent=\"370\" admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>We also provide the following services</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row global_parent=\"370\" admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb global_parent=\"370\" admin_label=\"Coaching Blurb\" title=\"Coaching\" url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne on One coaching and consulting services, either as a one-off service or on an on-going basis. Helping you get your marketing on track, and stay on track.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb global_parent=\"370\" admin_label=\"Marketing Services Blurb\" title=\"Marketing Services\" url=\"www.infinitymarketing.co.nz/marketing-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">Ongoing Marketing Services ensures your marketing happens like clock-work. The wheels keep churning, and your marketing keeps working for you.</p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb global_parent=\"370\" admin_label=\"Projects Blurb\" title=\"Projects\" url=\"www.infinitymarketing.co.nz/projects\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%174%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne off marketing projects, such as brochures, website development, one off campaign plans, and much more. We can support you for a one off marketing project.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"259\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"259\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"259\" admin_label=\"Call To Action - Contact\" title=\"Ready to take action?\" button_url=\"http://www.infinitymarketing.co.nz/contact/\" url_new_window=\"off\" button_text=\"Click here to contact us now\" use_background_color=\"off\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\nYour new future is waiting\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "OTHER SERVICES", "", "inherit", "closed", "closed", "", "345-revision-v1", "", "", "2016-04-29 15:35:26", "2016-04-29 03:35:26", "", "345", "http://www.infinitymarketing.co.nz/345-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("376", "1", "2016-04-29 15:37:13", "2016-04-29 03:37:13", "[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Other Services Blurb\" title=\"Other Services\" url=\"www.infinitymarketing.co.nz/other-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%171%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>We aim to provide all your marketing needs in one place, and work with specialists in order to do this. No need to find alternative suppliers, we can help you.</p>\n\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "We Also Provide", "", "inherit", "closed", "closed", "", "362-revision-v1", "", "", "2016-04-29 15:37:13", "2016-04-29 03:37:13", "", "362", "http://www.infinitymarketing.co.nz/362-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("375", "1", "2016-04-29 15:36:55", "2016-04-29 03:36:55", "[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Other Services Blurb\" title=\"Other Services\" url=\"www.infinitymarketing.co.nz/other-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%171%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>We aim to provide all your marketing needs in one place, and work with specialists in order to do this. No need to find alternative suppliers, we can help you.</p>\n\n[/et_pb_blurb][et_pb_blurb admin_label=\"Other Services Blurb\" title=\"Other Services\" url=\"www.infinitymarketing.co.nz/other-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%171%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>We aim to provide all your marketing needs in one place, and work with specialists in order to do this. No need to find alternative suppliers, we can help you.</p>\n\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "We Also Provide", "", "inherit", "closed", "closed", "", "362-revision-v1", "", "", "2016-04-29 15:36:55", "2016-04-29 03:36:55", "", "362", "http://www.infinitymarketing.co.nz/362-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("386", "1", "2016-04-29 15:37:53", "2016-04-29 03:37:53", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Marketing Services Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Marketing Services</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hands-on Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Hands-on-Packages\"></a>Hands-on Packages<a name=\"Hands-on-Packages\"></a></h2>\r\n<h3>We implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Marketing Services Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nKnow you need to do marketing but can\'t find the time? Starting to drop some balls, and need someone to help you make things happen? Or simply, sick of trying to be an expert at it all. We offer a range of <strong>on-going marketing services</strong> for your small business. We <strong>seamlessly integrate with you to deliver, top class marketing activity, that works.</strong> Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.\r\n<p style=\"text-align: left;\">We offer great<strong> monthly packages</strong>, which are <strong>fully customisable</strong> to suit your business needs. All for <strong>affordable monthly rates</strong> to suit your budget.</p>\r\n<p style=\"text-align: left;\">Packages can include graphic design, or we can work with your current designer to deliver these (if you need that, of course).</p>\r\n<p style=\"text-align: left;\"><strong>What makes us different?</strong> We are qualified and experienced marketers, delivering you products that work, that encourage your customers to take action and deliver you results.</p>\r\n<p style=\"text-align: left;\"><strong>Pick and choose the services you require</strong>, and <strong>how often</strong> you require them, and <strong>we can provide you a quote</strong>. <strong><a href=\"http://www.infinitymarketing.co.nz/contact/\">Get in touch with us now.</a></strong></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Custom\" currency=\"$\" per=\"month\" sum=\"?\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nWe can design a custom package that suits the unique needs of your business.\r\n\r\nYou can include services such as (but not limited to):\r\n\r\n+Facebook / Instagram content &amp; artwork\r\n\r\n+Facebook cover content &amp; artwork\r\n\r\n+Facebook page/group management\r\n\r\n+Website content and graphics updates\r\n\r\n+Website shop product uploads\r\n\r\n+Blog posts\r\n\r\n+Point of sale\r\n\r\n+Brochure design\r\n\r\n+Media bookings\r\n\r\n+Ad campaigns (Social Media/Google)\r\n\r\n+E-mail newsletter templates, creation, sending, automation &amp; database management\r\n\r\n+Landing pages\r\n\r\n+Monthly progress report with campaign results (provided access is given)\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"355\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"355\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text global_parent=\"355\" admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table width=\"922\">\r\n<tbody>\r\n<tr>\r\n<td width=\"184\"><img class=\"size-full wp-image-348 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/04/Email.jpg\" alt=\"Email\" width=\"75\" height=\"54\" /></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-244 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Graphic-Design.jpg\" alt=\"Graphic Design\" width=\"93\" height=\"76\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-246 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Printing.jpg\" alt=\"Printing\" width=\"77\" height=\"78\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-245 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Photography.jpg\" alt=\"Photography\" width=\"73\" height=\"60\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-247 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Video.jpg\" alt=\"Video\" width=\"68\" height=\"68\" /></b></td>\r\n</tr>\r\n<tr>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Email Marketing</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Graphic Design</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Printing</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Photography</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Videography</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"184\"><img class=\"size-full wp-image-347 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/04/Social-Media.jpg\" alt=\"Social Media\" width=\"72\" height=\"76\" /></td>\r\n<td width=\"184\"><b><img class=\" wp-image-243 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Event-Management.jpg\" alt=\"Event Management\" width=\"68\" height=\"74\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-248 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Web-Development.jpg\" alt=\"Web Development\" width=\"73\" height=\"75\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-242 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Copywriting.jpg\" alt=\"Proof Reading\" width=\"63\" height=\"77\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-241 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Advertising-Booking.jpg\" alt=\"Advertising Booking\" width=\"66\" height=\"67\" /></b></td>\r\n</tr>\r\n<tr>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Social Media</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Event Management</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Website Development, Content\r\n&amp; SEO</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Proof Reading</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Advertising Bookings\r\n&amp; Management\r\n(including Facebook &amp; AdWords)</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row global_parent=\"355\" admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button global_parent=\"355\" admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"362\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"362\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text global_parent=\"370\" admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>We also provide the following services</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row global_parent=\"362\" admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb global_parent=\"370\" admin_label=\"Coaching Blurb\" title=\"Coaching\" url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne on One coaching and consulting services, either as a one-off service or on an on-going basis. Helping you get your marketing on track, and stay on track.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb global_parent=\"370\" admin_label=\"Projects Blurb\" title=\"Projects\" url=\"www.infinitymarketing.co.nz/projects\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%174%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne off marketing projects, such as brochures, website development, one off campaign plans, and much more. We can support you for a one off marketing project.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb global_parent=\"362\" admin_label=\"Other Services Blurb\" title=\"Other Services\" url=\"www.infinitymarketing.co.nz/other-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%171%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe aim to provide all your marketing needs in one place, and work with specialists in order to do this. No need to find alternative suppliers, we can help you.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"259\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"259\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"259\" admin_label=\"Call To Action - Contact\" title=\"Ready to take action?\" button_url=\"http://www.infinitymarketing.co.nz/contact/\" url_new_window=\"off\" button_text=\"Click here to contact us now\" use_background_color=\"off\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\nYour new future is waiting\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "MARKETING SERVICES", "", "inherit", "closed", "closed", "", "339-revision-v1", "", "", "2016-04-29 15:37:53", "2016-04-29 03:37:53", "", "339", "http://www.infinitymarketing.co.nz/339-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("378", "1", "2016-04-29 15:37:20", "2016-04-29 03:37:20", "[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<h2>We also provide the following services</h2>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Coaching Blurb\" title=\"Coaching\" url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One on One coaching and consulting services, either as a one-off service or on an on-going basis. Helping you get your marketing on track, and stay on track.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Marketing Services Blurb\" title=\"Marketing Services\" url=\"www.infinitymarketing.co.nz/marketing-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p style=\"text-align: center;\">Ongoing Marketing Services ensures your marketing happens like clock-work. The wheels keep churning, and your marketing keeps working for you.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Projects Blurb\" title=\"Projects\" url=\"www.infinitymarketing.co.nz/projects\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%174%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One off marketing projects, such as brochures, website development, one off campaign plans, and much more. We can support you for a one off marketing project.</p>\n\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "We Also Provide - Coaching, Marketing Services & Projects", "", "inherit", "closed", "closed", "", "370-revision-v1", "", "", "2016-04-29 15:37:20", "2016-04-29 03:37:20", "", "370", "http://www.infinitymarketing.co.nz/370-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("377", "1", "2016-04-29 15:37:17", "2016-04-29 03:37:17", "[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<h2>We also provide the following services</h2>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Coaching Blurb\" title=\"Coaching\" url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One on One coaching and consulting services, either as a one-off service or on an on-going basis. Helping you get your marketing on track, and stay on track.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Marketing Services Blurb\" title=\"Marketing Services\" url=\"www.infinitymarketing.co.nz/marketing-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p style=\"text-align: center;\">Ongoing Marketing Services ensures your marketing happens like clock-work. The wheels keep churning, and your marketing keeps working for you.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Projects Blurb\" title=\"Projects\" url=\"www.infinitymarketing.co.nz/projects\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%174%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One off marketing projects, such as brochures, website development, one off campaign plans, and much more. We can support you for a one off marketing project.</p>\n\n[/et_pb_blurb][et_pb_blurb admin_label=\"Projects Blurb\" title=\"Projects\" url=\"www.infinitymarketing.co.nz/projects\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%174%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One off marketing projects, such as brochures, website development, one off campaign plans, and much more. We can support you for a one off marketing project.</p>\n\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "We Also Provide - Coaching, Marketing Services & Projects", "", "inherit", "closed", "closed", "", "370-revision-v1", "", "", "2016-04-29 15:37:17", "2016-04-29 03:37:17", "", "370", "http://www.infinitymarketing.co.nz/370-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("379", "1", "2016-04-29 15:37:20", "2016-04-29 03:37:20", "[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Projects Blurb\" title=\"Projects\" url=\"www.infinitymarketing.co.nz/projects\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%174%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One off marketing projects, such as brochures, website development, one off campaign plans, and much more. We can support you for a one off marketing project.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Other Services Blurb\" title=\"Other Services\" url=\"www.infinitymarketing.co.nz/other-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%171%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>We aim to provide all your marketing needs in one place, and work with specialists in order to do this. No need to find alternative suppliers, we can help you.</p>\n\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "We Also Provide", "", "inherit", "closed", "closed", "", "362-revision-v1", "", "", "2016-04-29 15:37:20", "2016-04-29 03:37:20", "", "362", "http://www.infinitymarketing.co.nz/362-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("382", "1", "2016-04-29 15:37:28", "2016-04-29 03:37:28", "[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<h2>We also provide the following services</h2>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Coaching Blurb\" title=\"Coaching\" url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One on One coaching and consulting services, either as a one-off service or on an on-going basis. Helping you get your marketing on track, and stay on track.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Marketing Services Blurb\" title=\"Marketing Services\" url=\"www.infinitymarketing.co.nz/marketing-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p style=\"text-align: center;\">Ongoing Marketing Services ensures your marketing happens like clock-work. The wheels keep churning, and your marketing keeps working for you.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Projects Blurb\" title=\"Projects\" url=\"www.infinitymarketing.co.nz/projects\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%174%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One off marketing projects, such as brochures, website development, one off campaign plans, and much more. We can support you for a one off marketing project.</p>\n\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "We Also Provide - Coaching, Marketing Services & Projects", "", "inherit", "closed", "closed", "", "370-revision-v1", "", "", "2016-04-29 15:37:28", "2016-04-29 03:37:28", "", "370", "http://www.infinitymarketing.co.nz/370-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("380", "1", "2016-04-29 15:37:24", "2016-04-29 03:37:24", "[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<h2>We also provide the following services</h2>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Coaching Blurb\" title=\"Coaching\" url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One on One coaching and consulting services, either as a one-off service or on an on-going basis. Helping you get your marketing on track, and stay on track.</p>\n\n[/et_pb_blurb][et_pb_blurb admin_label=\"Coaching Blurb\" title=\"Coaching\" url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One on One coaching and consulting services, either as a one-off service or on an on-going basis. Helping you get your marketing on track, and stay on track.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Marketing Services Blurb\" title=\"Marketing Services\" url=\"www.infinitymarketing.co.nz/marketing-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p style=\"text-align: center;\">Ongoing Marketing Services ensures your marketing happens like clock-work. The wheels keep churning, and your marketing keeps working for you.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Projects Blurb\" title=\"Projects\" url=\"www.infinitymarketing.co.nz/projects\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%174%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One off marketing projects, such as brochures, website development, one off campaign plans, and much more. We can support you for a one off marketing project.</p>\n\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "We Also Provide - Coaching, Marketing Services & Projects", "", "inherit", "closed", "closed", "", "370-revision-v1", "", "", "2016-04-29 15:37:24", "2016-04-29 03:37:24", "", "370", "http://www.infinitymarketing.co.nz/370-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("381", "1", "2016-04-29 15:37:28", "2016-04-29 03:37:28", "[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Coaching Blurb\" title=\"Coaching\" url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One on One coaching and consulting services, either as a one-off service or on an on-going basis. Helping you get your marketing on track, and stay on track.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Projects Blurb\" title=\"Projects\" url=\"www.infinitymarketing.co.nz/projects\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%174%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One off marketing projects, such as brochures, website development, one off campaign plans, and much more. We can support you for a one off marketing project.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Other Services Blurb\" title=\"Other Services\" url=\"www.infinitymarketing.co.nz/other-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%171%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>We aim to provide all your marketing needs in one place, and work with specialists in order to do this. No need to find alternative suppliers, we can help you.</p>\n\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "We Also Provide", "", "inherit", "closed", "closed", "", "362-revision-v1", "", "", "2016-04-29 15:37:28", "2016-04-29 03:37:28", "", "362", "http://www.infinitymarketing.co.nz/362-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("384", "1", "2016-04-29 15:37:34", "2016-04-29 03:37:34", "[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<h2>We also provide the following services</h2>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Coaching Blurb\" title=\"Coaching\" url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One on One coaching and consulting services, either as a one-off service or on an on-going basis. Helping you get your marketing on track, and stay on track.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Marketing Services Blurb\" title=\"Marketing Services\" url=\"www.infinitymarketing.co.nz/marketing-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p style=\"text-align: center;\">Ongoing Marketing Services ensures your marketing happens like clock-work. The wheels keep churning, and your marketing keeps working for you.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Projects Blurb\" title=\"Projects\" url=\"www.infinitymarketing.co.nz/projects\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%174%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One off marketing projects, such as brochures, website development, one off campaign plans, and much more. We can support you for a one off marketing project.</p>\n\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "We Also Provide - Coaching, Marketing Services & Projects", "", "inherit", "closed", "closed", "", "370-revision-v1", "", "", "2016-04-29 15:37:34", "2016-04-29 03:37:34", "", "370", "http://www.infinitymarketing.co.nz/370-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("383", "1", "2016-04-29 15:37:30", "2016-04-29 03:37:30", "[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<h2>We also provide the following services</h2>\n\n[/et_pb_text][et_pb_text admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<h2>We also provide the following services</h2>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Coaching Blurb\" title=\"Coaching\" url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One on One coaching and consulting services, either as a one-off service or on an on-going basis. Helping you get your marketing on track, and stay on track.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Marketing Services Blurb\" title=\"Marketing Services\" url=\"www.infinitymarketing.co.nz/marketing-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p style=\"text-align: center;\">Ongoing Marketing Services ensures your marketing happens like clock-work. The wheels keep churning, and your marketing keeps working for you.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Projects Blurb\" title=\"Projects\" url=\"www.infinitymarketing.co.nz/projects\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%174%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One off marketing projects, such as brochures, website development, one off campaign plans, and much more. We can support you for a one off marketing project.</p>\n\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "We Also Provide - Coaching, Marketing Services & Projects", "", "inherit", "closed", "closed", "", "370-revision-v1", "", "", "2016-04-29 15:37:30", "2016-04-29 03:37:30", "", "370", "http://www.infinitymarketing.co.nz/370-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("385", "1", "2016-04-29 15:37:34", "2016-04-29 03:37:34", "[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<h2>We also provide the following services</h2>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Coaching Blurb\" title=\"Coaching\" url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One on One coaching and consulting services, either as a one-off service or on an on-going basis. Helping you get your marketing on track, and stay on track.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Projects Blurb\" title=\"Projects\" url=\"www.infinitymarketing.co.nz/projects\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%174%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One off marketing projects, such as brochures, website development, one off campaign plans, and much more. We can support you for a one off marketing project.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Other Services Blurb\" title=\"Other Services\" url=\"www.infinitymarketing.co.nz/other-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%171%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>We aim to provide all your marketing needs in one place, and work with specialists in order to do this. No need to find alternative suppliers, we can help you.</p>\n\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "We Also Provide", "", "inherit", "closed", "closed", "", "362-revision-v1", "", "", "2016-04-29 15:37:34", "2016-04-29 03:37:34", "", "362", "http://www.infinitymarketing.co.nz/362-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("387", "1", "2016-04-29 15:38:11", "2016-04-29 03:38:11", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Marketing Services Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Marketing Services</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hands-on Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Hands-on-Packages\"></a>Hands-on Packages<a name=\"Hands-on-Packages\"></a></h2>\r\n<h3>We implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Marketing Services Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nKnow you need to do marketing but can\'t find the time? Starting to drop some balls, and need someone to help you make things happen? Or simply, sick of trying to be an expert at it all. We offer a range of <strong>on-going marketing services</strong> for your small business. We <strong>seamlessly integrate with you to deliver, top class marketing activity, that works.</strong> Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.\r\n<p style=\"text-align: left;\">We offer great<strong> monthly packages</strong>, which are <strong>fully customisable</strong> to suit your business needs. All for <strong>affordable monthly rates</strong> to suit your budget.</p>\r\n<p style=\"text-align: left;\">Packages can include graphic design, or we can work with your current designer to deliver these (if you need that, of course).</p>\r\n<p style=\"text-align: left;\"><strong>What makes us different?</strong> We are qualified and experienced marketers, delivering you products that work, that encourage your customers to take action and deliver you results.</p>\r\n<p style=\"text-align: left;\"><strong>Pick and choose the services you require</strong>, and <strong>how often</strong> you require them, and <strong>we can provide you a quote</strong>. <strong><a href=\"http://www.infinitymarketing.co.nz/contact/\">Get in touch with us now.</a></strong></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Custom\" currency=\"$\" per=\"month\" sum=\"?\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nWe can design a custom package that suits the unique needs of your business.\r\n\r\nYou can include services such as (but not limited to):\r\n\r\n+Facebook / Instagram content &amp; artwork\r\n\r\n+Facebook cover content &amp; artwork\r\n\r\n+Facebook page/group management\r\n\r\n+Website content and graphics updates\r\n\r\n+Website shop product uploads\r\n\r\n+Blog posts\r\n\r\n+Point of sale\r\n\r\n+Brochure design\r\n\r\n+Media bookings\r\n\r\n+Ad campaigns (Social Media/Google)\r\n\r\n+E-mail newsletter templates, creation, sending, automation &amp; database management\r\n\r\n+Landing pages\r\n\r\n+Monthly progress report with campaign results (provided access is given)\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"355\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"355\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text global_parent=\"355\" admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table width=\"922\">\r\n<tbody>\r\n<tr>\r\n<td width=\"184\"><img class=\"size-full wp-image-348 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/04/Email.jpg\" alt=\"Email\" width=\"75\" height=\"54\" /></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-244 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Graphic-Design.jpg\" alt=\"Graphic Design\" width=\"93\" height=\"76\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-246 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Printing.jpg\" alt=\"Printing\" width=\"77\" height=\"78\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-245 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Photography.jpg\" alt=\"Photography\" width=\"73\" height=\"60\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-247 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Video.jpg\" alt=\"Video\" width=\"68\" height=\"68\" /></b></td>\r\n</tr>\r\n<tr>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Email Marketing</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Graphic Design</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Printing</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Photography</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Videography</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"184\"><img class=\"size-full wp-image-347 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/04/Social-Media.jpg\" alt=\"Social Media\" width=\"72\" height=\"76\" /></td>\r\n<td width=\"184\"><b><img class=\" wp-image-243 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Event-Management.jpg\" alt=\"Event Management\" width=\"68\" height=\"74\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-248 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Web-Development.jpg\" alt=\"Web Development\" width=\"73\" height=\"75\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-242 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Copywriting.jpg\" alt=\"Proof Reading\" width=\"63\" height=\"77\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-241 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Advertising-Booking.jpg\" alt=\"Advertising Booking\" width=\"66\" height=\"67\" /></b></td>\r\n</tr>\r\n<tr>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Social Media</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Event Management</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Website Development, Content\r\n&amp; SEO</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Proof Reading</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Advertising Bookings\r\n&amp; Management\r\n(including Facebook &amp; AdWords)</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row global_parent=\"355\" admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button global_parent=\"355\" admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"362\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"362\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text global_parent=\"362\" admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>We also provide the following services</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row global_parent=\"362\" admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb global_parent=\"362\" admin_label=\"Coaching Blurb\" title=\"Coaching\" url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne on One coaching and consulting services, either as a one-off service or on an on-going basis. Helping you get your marketing on track, and stay on track.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb global_parent=\"362\" admin_label=\"Projects Blurb\" title=\"Projects\" url=\"www.infinitymarketing.co.nz/projects\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%174%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne off marketing projects, such as brochures, website development, one off campaign plans, and much more. We can support you for a one off marketing project.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb global_parent=\"362\" admin_label=\"Other Services Blurb\" title=\"Other Services\" url=\"www.infinitymarketing.co.nz/other-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%171%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe aim to provide all your marketing needs in one place, and work with specialists in order to do this. No need to find alternative suppliers, we can help you.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"259\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"259\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"259\" admin_label=\"Call To Action - Contact\" title=\"Ready to take action?\" button_url=\"http://www.infinitymarketing.co.nz/contact/\" url_new_window=\"off\" button_text=\"Click here to contact us now\" use_background_color=\"off\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\nYour new future is waiting\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "MARKETING SERVICES", "", "inherit", "closed", "closed", "", "339-revision-v1", "", "", "2016-04-29 15:38:11", "2016-04-29 03:38:11", "", "339", "http://www.infinitymarketing.co.nz/339-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("390", "1", "2016-04-29 15:40:44", "2016-04-29 03:40:44", "[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<h2>We also provide the following services</h2>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Coaching Blurb\" title=\"Coaching\" url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One on One coaching and consulting services, either as a one-off service or on an on-going basis. Helping you get your marketing on track, and stay on track.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Projects Blurb\" title=\"Projects\" url=\"www.infinitymarketing.co.nz/projects\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%174%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One off marketing projects, such as brochures, website development, one off campaign plans, and much more. We can support you for a one off marketing project.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Other Services Blurb\" title=\"Other Services\" url=\"www.infinitymarketing.co.nz/other-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%171%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>We aim to provide all your marketing needs in one place, and work with specialists in order to do this. No need to find alternative suppliers, we can help you.</p>\n\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "We Also Provide", "", "inherit", "closed", "closed", "", "362-revision-v1", "", "", "2016-04-29 15:40:44", "2016-04-29 03:40:44", "", "362", "http://www.infinitymarketing.co.nz/362-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("389", "1", "2016-04-29 15:40:40", "2016-04-29 03:40:40", "[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<h2>We also provide the following services</h2>\n\n[/et_pb_text][et_pb_text admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<h2>We also provide the following services</h2>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Coaching Blurb\" title=\"Coaching\" url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One on One coaching and consulting services, either as a one-off service or on an on-going basis. Helping you get your marketing on track, and stay on track.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Projects Blurb\" title=\"Projects\" url=\"www.infinitymarketing.co.nz/projects\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%174%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One off marketing projects, such as brochures, website development, one off campaign plans, and much more. We can support you for a one off marketing project.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Other Services Blurb\" title=\"Other Services\" url=\"www.infinitymarketing.co.nz/other-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%171%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>We aim to provide all your marketing needs in one place, and work with specialists in order to do this. No need to find alternative suppliers, we can help you.</p>\n\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "We Also Provide", "", "inherit", "closed", "closed", "", "362-revision-v1", "", "", "2016-04-29 15:40:40", "2016-04-29 03:40:40", "", "362", "http://www.infinitymarketing.co.nz/362-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("392", "1", "2016-04-29 15:41:06", "2016-04-29 03:41:06", "[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<h2>We also provide the following services</h2>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Coaching Blurb\" title=\"Coaching\" url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One on One coaching and consulting services, either as a one-off service or on an on-going basis. Helping you get your marketing on track, and stay on track.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Projects Blurb\" title=\"Projects\" url=\"www.infinitymarketing.co.nz/projects\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%174%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One off marketing projects, such as brochures, website development, one off campaign plans, and much more. We can support you for a one off marketing project.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Other Services Blurb\" title=\"Other Services\" url=\"www.infinitymarketing.co.nz/other-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%171%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>We aim to provide all your marketing needs in one place, and work with specialists in order to do this. No need to find alternative suppliers, we can help you.</p>\n\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "We Also Provide", "", "inherit", "closed", "closed", "", "362-revision-v1", "", "", "2016-04-29 15:41:06", "2016-04-29 03:41:06", "", "362", "http://www.infinitymarketing.co.nz/362-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("391", "1", "2016-04-29 15:40:48", "2016-04-29 03:40:48", "[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<h2>We also provide the following services</h2>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Coaching Blurb\" title=\"Coaching\" url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One on One coaching and consulting services, either as a one-off service or on an on-going basis. Helping you get your marketing on track, and stay on track.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Projects Blurb\" title=\"Projects\" url=\"www.infinitymarketing.co.nz/projects\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%174%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One off marketing projects, such as brochures, website development, one off campaign plans, and much more. We can support you for a one off marketing project.</p>\n\n[/et_pb_blurb][et_pb_blurb admin_label=\"Projects Blurb\" title=\"Projects\" url=\"www.infinitymarketing.co.nz/projects\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%174%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One off marketing projects, such as brochures, website development, one off campaign plans, and much more. We can support you for a one off marketing project.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Other Services Blurb\" title=\"Other Services\" url=\"www.infinitymarketing.co.nz/other-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%171%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>We aim to provide all your marketing needs in one place, and work with specialists in order to do this. No need to find alternative suppliers, we can help you.</p>\n\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "We Also Provide", "", "inherit", "closed", "closed", "", "362-revision-v1", "", "", "2016-04-29 15:40:48", "2016-04-29 03:40:48", "", "362", "http://www.infinitymarketing.co.nz/362-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("398", "1", "2016-04-29 15:49:31", "2016-04-29 03:49:31", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Coaching Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Coaching</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Coaching Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Coaching-Packages\"></a>Coaching Packages<a name=\"Coaching-Packages\"></a></h2>\r\n<h3>We coach, and you implement your marketing</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Coaching Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: left;\">Our <strong>marketing coaching and consulting packages</strong> are here to help you when you\'re starting out, if you need a helping hand to get you on track later down the line, or if you need someone to help guide you on an on-going basis.</p>\r\n<p style=\"text-align: left;\"><strong>You have complete control over implementation, with the aid of an expert resource to guide you.</strong></p>\r\n<p style=\"text-align: left;\">We offer <strong>great monthly packages</strong>, which are<strong> fully customisable</strong> to suit your business needs; and <strong>one-off services.</strong></p>\r\n<p style=\"text-align: left;\">All prices exclude GST and are shown in NZD.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTRO Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTRO Package - $189</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTRO Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis is about getting the basics right. We look at your current activity, recognise what is working, recommend any improvements and establish a plan going forward. This may suit those who have already started marketing their business and need help to get more customers or get themselves on track.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Establish a top line plan to get you where you want to be</li>\r\n</ul>\r\nThis involves a 1 hour face-to-face (where possible) or skype session and you will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nThis package can be upgraded to the INITIATE package if you feel you would like to go into more detail and create an initial marketing plan.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTRO Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Intro-Candice-v3.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=V46576J27YZG4\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INITIATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INITIATE Package - $589</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INITIATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThe INITIATE package is about giving your marketing the huge push it needs, either when you first start your business or a little later down the track. This is a holistic approach, taking you from strategy, goals, and tactics through to implementation. This will provide a plan of action for the next year.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Explore your positioning and the key messages and selling points for your customers</li>\r\n	<li>Understand who your competitors are and what your point of difference is</li>\r\n	<li>Talk tactics on where to be present, identifying why and how to achieve this</li>\r\n	<li>Establish a plan for making your customers take action</li>\r\n	<li>Work together to formulate a marketing plan for the year</li>\r\n</ul>\r\nThis involves a 2 x 1.5 hour face-to-face (where possible) or skype sessions.  You will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nWe recommend you follow on to the INTEGRATE package as this package measures the effectiveness of your plan as implemented, and refines this on an ongoing basis.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INITIATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Initiate-Candice-v2.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=W9P8XUK654W6G\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTEGRATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTEGRATE Monthly Package - $289 per month</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTEGRATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n(3 month minimum)\r\n\r\nThis is a one on one session twice per month where together, we ensure your marketing is on track. We can utilise measurement techniques to assess the effectiveness of your strategies and keeping you on track to achieve the desired goals.\r\n\r\nWe meet via skype* twice per month to discuss your progress, any ideas or opportunities, and bounce ideas around. (*This can also be done in one longer face to face session if possible)\r\n\r\nThese sessions will help to keep on track with your marketing plan, and guide you throughout the year to meet and exceed your marketing and business goals. By measuring the effectiveness of current strategies, refinements can be effected to ensure your marketing continues to maximise results.\r\n\r\nSupport is available by e-mail, Facebook or reasonable phone support throughout the month if required.\r\n\r\nDon\'t need us as often as every month? Or need more support? <a href=\"http://www.infinitymarketing.co.nz/contact/\">Contact us</a> and we can tailor a suitable package for you.\r\n\r\nWe recommend you begin with the INTRO Package before commencing this INTEGRATE Package .\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTEGRATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Integrate-Candice-v2.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=PN7JHBND8QBFJ\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Terms &amp; Conditions Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nAll prices exclude GST and are shown in NZD. Travel for packages which include face to face meetings is included for a radius of up to 20km from Howick, any further kilometres will be charged at $0.74+GST.\r\n\r\nPayments can be accepted through our website by Credit Card, in person by Credit Card, Debit Card or Eftpos, or by internet banking. A Tax invoice will be provided for every payment.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" global_module=\"397\"][et_pb_row global_parent=\"397\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text global_parent=\"362\" admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>We also provide the following services</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row global_parent=\"397\" admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb global_parent=\"370\" admin_label=\"Marketing Services Blurb\" title=\"Marketing Services\" url=\"www.infinitymarketing.co.nz/marketing-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">Ongoing Marketing Services ensures your marketing happens like clock-work. The wheels keep churning, and your marketing keeps working for you.</p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb global_parent=\"362\" admin_label=\"Projects Blurb\" title=\"Projects\" url=\"www.infinitymarketing.co.nz/projects\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%174%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne off marketing projects, such as brochures, website development, one off campaign plans, and much more. We can support you for a one off marketing project.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb global_parent=\"362\" admin_label=\"Other Services Blurb\" title=\"Other Services\" url=\"www.infinitymarketing.co.nz/other-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%171%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe aim to provide all your marketing needs in one place, and work with specialists in order to do this. No need to find alternative suppliers, we can help you.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"259\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"259\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"259\" admin_label=\"Call To Action - Contact\" title=\"Ready to take action?\" button_url=\"http://www.infinitymarketing.co.nz/contact/\" url_new_window=\"off\" button_text=\"Click here to contact us now\" use_background_color=\"off\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\nYour new future is waiting\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "COACHING", "", "inherit", "closed", "closed", "", "337-revision-v1", "", "", "2016-04-29 15:49:31", "2016-04-29 03:49:31", "", "337", "http://www.infinitymarketing.co.nz/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("394", "1", "2016-04-29 15:41:12", "2016-04-29 03:41:12", "[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<h2>We also provide the following services</h2>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Coaching Blurb\" title=\"Coaching\" url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One on One coaching and consulting services, either as a one-off service or on an on-going basis. Helping you get your marketing on track, and stay on track.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Projects Blurb\" title=\"Projects\" url=\"www.infinitymarketing.co.nz/projects\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%174%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One off marketing projects, such as brochures, website development, one off campaign plans, and much more. We can support you for a one off marketing project.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Other Services Blurb\" title=\"Other Services\" url=\"www.infinitymarketing.co.nz/other-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%171%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>We aim to provide all your marketing needs in one place, and work with specialists in order to do this. No need to find alternative suppliers, we can help you.</p>\n\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "We Also Provide", "", "inherit", "closed", "closed", "", "362-revision-v1", "", "", "2016-04-29 15:41:12", "2016-04-29 03:41:12", "", "362", "http://www.infinitymarketing.co.nz/362-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("393", "1", "2016-04-29 15:41:07", "2016-04-29 03:41:07", "[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<h2>We also provide the following services</h2>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Coaching Blurb\" title=\"Coaching\" url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One on One coaching and consulting services, either as a one-off service or on an on-going basis. Helping you get your marketing on track, and stay on track.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Projects Blurb\" title=\"Projects\" url=\"www.infinitymarketing.co.nz/projects\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%174%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One off marketing projects, such as brochures, website development, one off campaign plans, and much more. We can support you for a one off marketing project.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Other Services Blurb\" title=\"Other Services\" url=\"www.infinitymarketing.co.nz/other-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%171%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>We aim to provide all your marketing needs in one place, and work with specialists in order to do this. No need to find alternative suppliers, we can help you.</p>\n\n[/et_pb_blurb][et_pb_blurb admin_label=\"Other Services Blurb\" title=\"Other Services\" url=\"www.infinitymarketing.co.nz/other-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%171%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>We aim to provide all your marketing needs in one place, and work with specialists in order to do this. No need to find alternative suppliers, we can help you.</p>\n\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "We Also Provide", "", "inherit", "closed", "closed", "", "362-revision-v1", "", "", "2016-04-29 15:41:07", "2016-04-29 03:41:07", "", "362", "http://www.infinitymarketing.co.nz/362-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("396", "1", "2016-04-29 15:41:21", "2016-04-29 03:41:21", "[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<h2>We also provide the following services</h2>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Coaching Blurb\" title=\"Coaching\" url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One on One coaching and consulting services, either as a one-off service or on an on-going basis. Helping you get your marketing on track, and stay on track.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Marketing Services Blurb\" title=\"Marketing Services\" url=\"www.infinitymarketing.co.nz/marketing-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p style=\"text-align: center;\">Ongoing Marketing Services ensures your marketing happens like clock-work. The wheels keep churning, and your marketing keeps working for you.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Projects Blurb\" title=\"Projects\" url=\"www.infinitymarketing.co.nz/projects\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%174%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One off marketing projects, such as brochures, website development, one off campaign plans, and much more. We can support you for a one off marketing project.</p>\n\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "We Also Provide - Coaching, Marketing Services & Projects", "", "inherit", "closed", "closed", "", "370-revision-v1", "", "", "2016-04-29 15:41:21", "2016-04-29 03:41:21", "", "370", "http://www.infinitymarketing.co.nz/370-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("395", "1", "2016-04-29 15:41:16", "2016-04-29 03:41:16", "[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<h2>We also provide the following services</h2>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Coaching Blurb\" title=\"Coaching\" url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One on One coaching and consulting services, either as a one-off service or on an on-going basis. Helping you get your marketing on track, and stay on track.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Marketing Services Blurb\" title=\"Marketing Services\" url=\"www.infinitymarketing.co.nz/marketing-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p style=\"text-align: center;\">Ongoing Marketing Services ensures your marketing happens like clock-work. The wheels keep churning, and your marketing keeps working for you.</p>\n\n[/et_pb_blurb][et_pb_blurb admin_label=\"Marketing Services Blurb\" title=\"Marketing Services\" url=\"www.infinitymarketing.co.nz/marketing-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p style=\"text-align: center;\">Ongoing Marketing Services ensures your marketing happens like clock-work. The wheels keep churning, and your marketing keeps working for you.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Projects Blurb\" title=\"Projects\" url=\"www.infinitymarketing.co.nz/projects\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%174%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One off marketing projects, such as brochures, website development, one off campaign plans, and much more. We can support you for a one off marketing project.</p>\n\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "We Also Provide - Coaching, Marketing Services & Projects", "", "inherit", "closed", "closed", "", "370-revision-v1", "", "", "2016-04-29 15:41:16", "2016-04-29 03:41:16", "", "370", "http://www.infinitymarketing.co.nz/370-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("397", "1", "2016-04-29 15:41:47", "2016-04-29 03:41:47", "[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<h2>We also provide the following services</h2>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Marketing Services Blurb\" title=\"Marketing Services\" url=\"www.infinitymarketing.co.nz/marketing-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p style=\"text-align: center;\">Ongoing Marketing Services ensures your marketing happens like clock-work. The wheels keep churning, and your marketing keeps working for you.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Projects Blurb\" title=\"Projects\" url=\"www.infinitymarketing.co.nz/projects\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%174%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One off marketing projects, such as brochures, website development, one off campaign plans, and much more. We can support you for a one off marketing project.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Other Services Blurb\" title=\"Other Services\" url=\"www.infinitymarketing.co.nz/other-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%171%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>We aim to provide all your marketing needs in one place, and work with specialists in order to do this. No need to find alternative suppliers, we can help you.</p>\n\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "We Also Provide Marketing Services, Projects & Other Services", "", "publish", "closed", "closed", "", "we-also-provide-marketing-services-projects-other-services", "", "", "2016-04-29 16:35:17", "2016-04-29 04:35:17", "", "0", "http://www.infinitymarketing.co.nz/et_pb_layout/we-also-provide-marketing-services-projects-other-services/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("399", "1", "2016-04-29 15:50:21", "2016-04-29 03:50:21", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Coaching Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Coaching</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Coaching Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Coaching-Packages\"></a>Coaching Packages<a name=\"Coaching-Packages\"></a></h2>\r\n<h3>We coach, and you implement your marketing</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Coaching Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: left;\">Our <strong>marketing coaching and consulting packages</strong> are here to help you when you\'re starting out, if you need a helping hand to get you on track later down the line, or if you need someone to help guide you on an on-going basis.</p>\r\n<p style=\"text-align: left;\"><strong>You have complete control over implementation, with the aid of an expert resource to guide you.</strong></p>\r\n<p style=\"text-align: left;\">We offer <strong>great monthly packages</strong>, which are<strong> fully customisable</strong> to suit your business needs; and <strong>one-off services.</strong></p>\r\n<p style=\"text-align: left;\">All prices exclude GST and are shown in NZD.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTRO Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTRO Package - $189</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTRO Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis is about getting the basics right. We look at your current activity, recognise what is working, recommend any improvements and establish a plan going forward. This may suit those who have already started marketing their business and need help to get more customers or get themselves on track.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Establish a top line plan to get you where you want to be</li>\r\n</ul>\r\nThis involves a 1 hour face-to-face (where possible) or skype session and you will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nThis package can be upgraded to the INITIATE package if you feel you would like to go into more detail and create an initial marketing plan.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTRO Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Intro-Candice-v3.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=V46576J27YZG4\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INITIATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INITIATE Package - $589</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INITIATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThe INITIATE package is about giving your marketing the huge push it needs, either when you first start your business or a little later down the track. This is a holistic approach, taking you from strategy, goals, and tactics through to implementation. This will provide a plan of action for the next year.\r\n\r\nWith this package we will:\r\n<ul>\r\n	<li>Review your business and marketing goals, if you don’t have any, we will set some</li>\r\n	<li>Review your current activity and the results being generated</li>\r\n	<li>Review of what you are doing well and what needs improvements</li>\r\n	<li>Understand who your customers are and where they are</li>\r\n	<li>Explore your positioning and the key messages and selling points for your customers</li>\r\n	<li>Understand who your competitors are and what your point of difference is</li>\r\n	<li>Talk tactics on where to be present, identifying why and how to achieve this</li>\r\n	<li>Establish a plan for making your customers take action</li>\r\n	<li>Work together to formulate a marketing plan for the year</li>\r\n</ul>\r\nThis involves a 2 x 1.5 hour face-to-face (where possible) or skype sessions.  You will receive a written report after our meeting with the discussed items and practical recommendations.\r\n\r\nWe recommend you follow on to the INTEGRATE package as this package measures the effectiveness of your plan as implemented, and refines this on an ongoing basis.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INITIATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Initiate-Candice-v2.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=W9P8XUK654W6G\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"INTEGRATE Package Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><span style=\"color: #009edb;\">INTEGRATE Monthly Package - $289 per month</span></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"INTEGRATE Package Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n(3 month minimum)\r\n\r\nThis is a one on one session twice per month where together, we ensure your marketing is on track. We can utilise measurement techniques to assess the effectiveness of your strategies and keeping you on track to achieve the desired goals.\r\n\r\nWe meet via skype* twice per month to discuss your progress, any ideas or opportunities, and bounce ideas around. (*This can also be done in one longer face to face session if possible)\r\n\r\nThese sessions will help to keep on track with your marketing plan, and guide you throughout the year to meet and exceed your marketing and business goals. By measuring the effectiveness of current strategies, refinements can be effected to ensure your marketing continues to maximise results.\r\n\r\nSupport is available by e-mail, Facebook or reasonable phone support throughout the month if required.\r\n\r\nDon\'t need us as often as every month? Or need more support? <a href=\"http://www.infinitymarketing.co.nz/contact/\">Contact us</a> and we can tailor a suitable package for you.\r\n\r\nWe recommend you begin with the INTRO Package before commencing this INTEGRATE Package .\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"INTEGRATE Package Image\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Integrate-Candice-v2.jpg\"]\r\n[/et_pb_image][et_pb_button admin_label=\"Buy Now Button\" url_new_window=\"off\" button_text=\"Buy Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=PN7JHBND8QBFJ\"]\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Terms &amp; Conditions Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nAll prices exclude GST and are shown in NZD. Travel for packages which include face to face meetings is included for a radius of up to 20km from Howick, any further kilometres will be charged at $0.74+GST.\r\n\r\nPayments can be accepted through our website by Credit Card, in person by Credit Card, Debit Card or Eftpos, or by internet banking. A Tax invoice will be provided for every payment.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"397\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"397\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text global_parent=\"362\" admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>We also provide the following services</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row global_parent=\"397\" admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb global_parent=\"370\" admin_label=\"Marketing Services Blurb\" title=\"Marketing Services\" url=\"www.infinitymarketing.co.nz/marketing-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">Ongoing Marketing Services ensures your marketing happens like clock-work. The wheels keep churning, and your marketing keeps working for you.</p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb global_parent=\"362\" admin_label=\"Projects Blurb\" title=\"Projects\" url=\"www.infinitymarketing.co.nz/projects\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%174%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne off marketing projects, such as brochures, website development, one off campaign plans, and much more. We can support you for a one off marketing project.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb global_parent=\"362\" admin_label=\"Other Services Blurb\" title=\"Other Services\" url=\"www.infinitymarketing.co.nz/other-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%171%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe aim to provide all your marketing needs in one place, and work with specialists in order to do this. No need to find alternative suppliers, we can help you.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"259\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"259\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"259\" admin_label=\"Call To Action - Contact\" title=\"Ready to take action?\" button_url=\"http://www.infinitymarketing.co.nz/contact/\" url_new_window=\"off\" button_text=\"Click here to contact us now\" use_background_color=\"off\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\nYour new future is waiting\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "COACHING", "", "inherit", "closed", "closed", "", "337-revision-v1", "", "", "2016-04-29 15:50:21", "2016-04-29 03:50:21", "", "337", "http://www.infinitymarketing.co.nz/337-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("401", "1", "2016-04-29 16:00:20", "2016-04-29 04:00:20", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Marketing Services Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Marketing Services</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hands-on Packages Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Hands-on-Packages\"></a>Hands-on Packages<a name=\"Hands-on-Packages\"></a></h2>\r\n<h3>We implement your marketing</h3>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Marketing Services Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nKnow you need to do marketing but can\'t find the time? Starting to drop some balls, and need someone to help you make things happen? Or simply, sick of trying to be an expert at it all. We offer a range of <strong>on-going marketing services</strong> for your small business. We <strong>seamlessly integrate with you to deliver, top class marketing activity, that works.</strong> Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.\r\n<p style=\"text-align: left;\">We offer great<strong> monthly packages</strong>, which are <strong>fully customisable</strong> to suit your business needs. All for <strong>affordable monthly rates</strong> to suit your budget.</p>\r\n<p style=\"text-align: left;\">Packages can include graphic design, or we can work with your current designer to deliver these (if you need that, of course).</p>\r\n<p style=\"text-align: left;\"><strong>What makes us different?</strong> We are qualified and experienced marketers, delivering you products that work, that encourage your customers to take action and deliver you results.</p>\r\n<p style=\"text-align: left;\"><strong>Pick and choose the services you require</strong>, and <strong>how often</strong> you require them, and <strong>we can provide you a quote</strong>. <strong><a href=\"http://www.infinitymarketing.co.nz/contact/\">Get in touch with us now.</a></strong></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_pricing_tables admin_label=\"Pricing Tables\" show_bullet=\"on\" center_list_items=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" remove_featured_drop_shadow=\"off\" price_font_size=\"65\"] [et_pb_pricing_table featured=\"off\" title=\"Custom\" currency=\"$\" per=\"month\" sum=\"?\" header_font_select=\"default\" header_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nWe can design a custom package that suits the unique needs of your business.\r\n\r\nYou can include services such as (but not limited to):\r\n\r\n+Facebook / Instagram content &amp; artwork\r\n\r\n+Facebook cover content &amp; artwork\r\n\r\n+Facebook page/group management\r\n\r\n+Website content and graphics updates\r\n\r\n+Website shop product uploads\r\n\r\n+Blog posts\r\n\r\n+Point of sale\r\n\r\n+Brochure design\r\n\r\n+Media bookings\r\n\r\n+Ad campaigns (Social Media/Google)\r\n\r\n+E-mail newsletter templates, creation, sending, automation &amp; database management\r\n\r\n+Landing pages\r\n\r\n+Monthly progress report with campaign results (provided access is given)\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Contact us for a Quote Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h4>If what you are looking for is not listed above, it does not necessarily mean we do not offer the service, <a href=\"http://www.infinitymarketing.co.nz/contact/\">please contact us for a quote.</a></h4>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"362\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"362\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text global_parent=\"362\" admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>We also provide the following services</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row global_parent=\"362\" admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb global_parent=\"362\" admin_label=\"Coaching Blurb\" title=\"Coaching\" url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne on One coaching and consulting services, either as a one-off service or on an on-going basis. Helping you get your marketing on track, and stay on track.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb global_parent=\"362\" admin_label=\"Projects Blurb\" title=\"Projects\" url=\"www.infinitymarketing.co.nz/projects\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%174%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne off marketing projects, such as brochures, website development, one off campaign plans, and much more. We can support you for a one off marketing project.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb global_parent=\"362\" admin_label=\"Other Services Blurb\" title=\"Other Services\" url=\"www.infinitymarketing.co.nz/other-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%171%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe aim to provide all your marketing needs in one place, and work with specialists in order to do this. No need to find alternative suppliers, we can help you.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"259\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"259\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"259\" admin_label=\"Call To Action - Contact\" title=\"Ready to take action?\" button_url=\"http://www.infinitymarketing.co.nz/contact/\" url_new_window=\"off\" button_text=\"Click here to contact us now\" use_background_color=\"off\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\nYour new future is waiting\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "MARKETING SERVICES", "", "inherit", "closed", "closed", "", "339-revision-v1", "", "", "2016-04-29 16:00:20", "2016-04-29 04:00:20", "", "339", "http://www.infinitymarketing.co.nz/339-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("402", "1", "2016-04-29 16:01:17", "2016-04-29 04:01:17", "[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<table width=\"922\"><tbody><tr><td width=\"184\"><img class=\"size-full wp-image-348 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/04/Email.jpg\" alt=\"Email\" width=\"75\" height=\"54\" /></td><td width=\"184\"><b><img class=\"size-full wp-image-244 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Graphic-Design.jpg\" alt=\"Graphic Design\" width=\"93\" height=\"76\" /></b></td><td width=\"184\"><b><img class=\"size-full wp-image-246 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Printing.jpg\" alt=\"Printing\" width=\"77\" height=\"78\" /></b></td><td width=\"184\"><b><img class=\"size-full wp-image-245 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Photography.jpg\" alt=\"Photography\" width=\"73\" height=\"60\" /></b></td><td width=\"184\"><b><img class=\"size-full wp-image-247 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Video.jpg\" alt=\"Video\" width=\"68\" height=\"68\" /></b></td></tr><tr><td width=\"184\"><p style=\"text-align: center;\">Email Marketing</p></td><td width=\"184\"><p style=\"text-align: center;\">Graphic Design</p></td><td width=\"184\"><p style=\"text-align: center;\">Printing</p></td><td width=\"184\"><p style=\"text-align: center;\">Photography</p></td><td width=\"184\"><p style=\"text-align: center;\">Videography</p></td></tr><tr><td width=\"184\"><img class=\"size-full wp-image-347 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/04/Social-Media.jpg\" alt=\"Social Media\" width=\"72\" height=\"76\" /></td><td width=\"184\"><b><img class=\" wp-image-243 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Event-Management.jpg\" alt=\"Event Management\" width=\"68\" height=\"74\" /></b></td><td width=\"184\"><b><img class=\"size-full wp-image-248 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Web-Development.jpg\" alt=\"Web Development\" width=\"73\" height=\"75\" /></b></td><td width=\"184\"><b><img class=\"size-full wp-image-242 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Copywriting.jpg\" alt=\"Proof Reading\" width=\"63\" height=\"77\" /></b></td><td width=\"184\"><b><img class=\"size-full wp-image-241 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Advertising-Booking.jpg\" alt=\"Advertising Booking\" width=\"66\" height=\"67\" /></b></td></tr><tr><td width=\"184\"><p style=\"text-align: center;\">Social Media</p></td><td width=\"184\"><p style=\"text-align: center;\">Event Management</p></td><td width=\"184\"><p style=\"text-align: center;\">Website Development, Content<br /> &amp; SEO</p></td><td width=\"184\"><p style=\"text-align: center;\">Proof Reading</p></td><td width=\"184\"><p style=\"text-align: center;\">Advertising Bookings<br /> &amp; Management<br /> (including Facebook &amp; AdWords)</p></td></tr></tbody></table>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\n\n<br />\n\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" /][/et_pb_column][/et_pb_row][/et_pb_section]", "Other Services Table", "", "inherit", "closed", "closed", "", "355-revision-v1", "", "", "2016-04-29 16:01:17", "2016-04-29 04:01:17", "", "355", "http://www.infinitymarketing.co.nz/355-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("403", "1", "2016-04-29 16:01:29", "2016-04-29 04:01:29", "[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<table width=\"922\"><tbody><tr><td width=\"184\"><img class=\"size-full wp-image-348 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/04/Email.jpg\" alt=\"Email\" width=\"75\" height=\"54\" /></td><td width=\"184\"><b><img class=\"size-full wp-image-244 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Graphic-Design.jpg\" alt=\"Graphic Design\" width=\"93\" height=\"76\" /></b></td><td width=\"184\"><b><img class=\"size-full wp-image-246 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Printing.jpg\" alt=\"Printing\" width=\"77\" height=\"78\" /></b></td><td width=\"184\"><b><img class=\"size-full wp-image-245 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Photography.jpg\" alt=\"Photography\" width=\"73\" height=\"60\" /></b></td><td width=\"184\"><b><img class=\"size-full wp-image-247 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Video.jpg\" alt=\"Video\" width=\"68\" height=\"68\" /></b></td></tr><tr><td width=\"184\"><p style=\"text-align: center;\">Email Marketing</p></td><td width=\"184\"><p style=\"text-align: center;\">Graphic Design</p></td><td width=\"184\"><p style=\"text-align: center;\">Printing</p></td><td width=\"184\"><p style=\"text-align: center;\">Photography</p></td><td width=\"184\"><p style=\"text-align: center;\">Videography</p></td></tr><tr><td width=\"184\"><img class=\"size-full wp-image-347 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/04/Social-Media.jpg\" alt=\"Social Media\" width=\"72\" height=\"76\" /></td><td width=\"184\"><b><img class=\" wp-image-243 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Event-Management.jpg\" alt=\"Event Management\" width=\"68\" height=\"74\" /></b></td><td width=\"184\"><b><img class=\"size-full wp-image-248 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Web-Development.jpg\" alt=\"Web Development\" width=\"73\" height=\"75\" /></b></td><td width=\"184\"><b><img class=\"size-full wp-image-242 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Copywriting.jpg\" alt=\"Proof Reading\" width=\"63\" height=\"77\" /></b></td><td width=\"184\"><b><img class=\"size-full wp-image-241 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Advertising-Booking.jpg\" alt=\"Advertising Booking\" width=\"66\" height=\"67\" /></b></td></tr><tr><td width=\"184\"><p style=\"text-align: center;\">Social Media</p></td><td width=\"184\"><p style=\"text-align: center;\">Event Management</p></td><td width=\"184\"><p style=\"text-align: center;\">Website Development, Content<br /> &amp; SEO</p></td><td width=\"184\"><p style=\"text-align: center;\">Proof Reading</p></td><td width=\"184\"><p style=\"text-align: center;\">Advertising Bookings<br /> &amp; Management<br /> (including Facebook &amp; AdWords)</p></td></tr></tbody></table>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\n\n<br />\n\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Contact us for a Quote Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<h4>If what you are looking for is not listed above, it does not necessarily mean we do not offer the service, <a href=\"http://www.infinitymarketing.co.nz/contact/\">please contact us for a quote.</a></h4>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]", "Other Services Table", "", "inherit", "closed", "closed", "", "355-revision-v1", "", "", "2016-04-29 16:01:29", "2016-04-29 04:01:29", "", "355", "http://www.infinitymarketing.co.nz/355-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("404", "1", "2016-04-29 16:01:33", "2016-04-29 04:01:33", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Other Services</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Header\" global_parent=\"355\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>We offer a number of other services - <a href=\"http://www.infinitymarketing.co.nz/contact/\">please contact us for a quote</a></h2>\r\n[/et_pb_text][et_pb_text admin_label=\"Other Services Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: left;\">We <strong>offer a range of marketing services</strong> for your small business, and together with a<strong> team of experts,</strong> <strong>all of your marketing services needs can be met in one place</strong> with Infinity Marketing. You no longer need to find a good printer, of photographer, or any type of other supplier -<strong> we work with great people in order to bring you a comprehensive service</strong>.</p>\r\n<p style=\"text-align: left;\"><a href=\"http://www.infinitymarketing.co.nz/contact/\"><strong>Simply get in touch</strong></a> with your requirements, or if you are not even sure what those are yet, let\'s have a chat and we can find a solution that will have you sorted in no time.</p>\r\n<p style=\"text-align: left;\">If you don\'t see what you a looking for in the list below, it does not mean we do not provide that service,<strong> <a href=\"http://www.infinitymarketing.co.nz/contact/\">please get in touch.</a></strong></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"355\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"355\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text global_parent=\"355\" admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table width=\"922\">\r\n<tbody>\r\n<tr>\r\n<td width=\"184\"><img class=\"size-full wp-image-348 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/04/Email.jpg\" alt=\"Email\" width=\"75\" height=\"54\" /></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-244 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Graphic-Design.jpg\" alt=\"Graphic Design\" width=\"93\" height=\"76\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-246 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Printing.jpg\" alt=\"Printing\" width=\"77\" height=\"78\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-245 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Photography.jpg\" alt=\"Photography\" width=\"73\" height=\"60\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-247 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Video.jpg\" alt=\"Video\" width=\"68\" height=\"68\" /></b></td>\r\n</tr>\r\n<tr>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Email Marketing</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Graphic Design</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Printing</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Photography</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Videography</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"184\"><img class=\"size-full wp-image-347 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/04/Social-Media.jpg\" alt=\"Social Media\" width=\"72\" height=\"76\" /></td>\r\n<td width=\"184\"><b><img class=\" wp-image-243 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Event-Management.jpg\" alt=\"Event Management\" width=\"68\" height=\"74\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-248 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Web-Development.jpg\" alt=\"Web Development\" width=\"73\" height=\"75\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-242 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Copywriting.jpg\" alt=\"Proof Reading\" width=\"63\" height=\"77\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-241 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Advertising-Booking.jpg\" alt=\"Advertising Booking\" width=\"66\" height=\"67\" /></b></td>\r\n</tr>\r\n<tr>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Social Media</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Event Management</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Website Development, Content\r\n&amp; SEO</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Proof Reading</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Advertising Bookings\r\n&amp; Management\r\n(including Facebook &amp; AdWords)</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row global_parent=\"355\" admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button global_parent=\"355\" admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][et_pb_row global_parent=\"355\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Contact us for a Quote Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h4>If what you are looking for is not listed above, it does not necessarily mean we do not offer the service, <a href=\"http://www.infinitymarketing.co.nz/contact/\">please contact us for a quote.</a></h4>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"370\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"370\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text global_parent=\"370\" admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>We also provide the following services</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row global_parent=\"370\" admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb global_parent=\"370\" admin_label=\"Coaching Blurb\" title=\"Coaching\" url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne on One coaching and consulting services, either as a one-off service or on an on-going basis. Helping you get your marketing on track, and stay on track.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb global_parent=\"370\" admin_label=\"Marketing Services Blurb\" title=\"Marketing Services\" url=\"www.infinitymarketing.co.nz/marketing-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">Ongoing Marketing Services ensures your marketing happens like clock-work. The wheels keep churning, and your marketing keeps working for you.</p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb global_parent=\"370\" admin_label=\"Projects Blurb\" title=\"Projects\" url=\"www.infinitymarketing.co.nz/projects\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%174%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne off marketing projects, such as brochures, website development, one off campaign plans, and much more. We can support you for a one off marketing project.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"259\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"259\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"259\" admin_label=\"Call To Action - Contact\" title=\"Ready to take action?\" button_url=\"http://www.infinitymarketing.co.nz/contact/\" url_new_window=\"off\" button_text=\"Click here to contact us now\" use_background_color=\"off\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\nYour new future is waiting\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "OTHER SERVICES", "", "inherit", "closed", "closed", "", "345-revision-v1", "", "", "2016-04-29 16:01:33", "2016-04-29 04:01:33", "", "345", "http://www.infinitymarketing.co.nz/345-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("405", "1", "2016-04-29 16:01:53", "2016-04-29 04:01:53", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Other Services</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other Services Header\" global_parent=\"355\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>We offer a number of other services - <a href=\"http://www.infinitymarketing.co.nz/contact/\">please contact us for a quote</a></h2>\r\n[/et_pb_text][et_pb_text admin_label=\"Other Services Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: left;\">We <strong>offer a range of marketing services</strong> for your small business, and together with a<strong> team of experts,</strong> <strong>all of your marketing services needs can be met in one place</strong> with Infinity Marketing. You no longer need to find a good printer, of photographer, or any type of other supplier -<strong> we work with great people in order to bring you a comprehensive service</strong>.</p>\r\n<p style=\"text-align: left;\"><a href=\"http://www.infinitymarketing.co.nz/contact/\"><strong>Simply get in touch</strong></a> with your requirements, or if you are not even sure what those are yet, let\'s have a chat and we can find a solution that will have you sorted in no time.</p>\r\n<p style=\"text-align: left;\">If you don\'t see what you a looking for in the list below, it does not mean we do not provide that service,<strong> <a href=\"http://www.infinitymarketing.co.nz/contact/\">please get in touch.</a></strong></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"355\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"355\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text global_parent=\"355\" admin_label=\"Other Services Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table width=\"922\">\r\n<tbody>\r\n<tr>\r\n<td width=\"184\"><img class=\"size-full wp-image-348 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/04/Email.jpg\" alt=\"Email\" width=\"75\" height=\"54\" /></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-244 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Graphic-Design.jpg\" alt=\"Graphic Design\" width=\"93\" height=\"76\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-246 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Printing.jpg\" alt=\"Printing\" width=\"77\" height=\"78\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-245 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Photography.jpg\" alt=\"Photography\" width=\"73\" height=\"60\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-247 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Video.jpg\" alt=\"Video\" width=\"68\" height=\"68\" /></b></td>\r\n</tr>\r\n<tr>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Email Marketing</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Graphic Design</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Printing</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Photography</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Videography</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"184\"><img class=\"size-full wp-image-347 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/04/Social-Media.jpg\" alt=\"Social Media\" width=\"72\" height=\"76\" /></td>\r\n<td width=\"184\"><b><img class=\" wp-image-243 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Event-Management.jpg\" alt=\"Event Management\" width=\"68\" height=\"74\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-248 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Web-Development.jpg\" alt=\"Web Development\" width=\"73\" height=\"75\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-242 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Copywriting.jpg\" alt=\"Proof Reading\" width=\"63\" height=\"77\" /></b></td>\r\n<td width=\"184\"><b><img class=\"size-full wp-image-241 aligncenter\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Advertising-Booking.jpg\" alt=\"Advertising Booking\" width=\"66\" height=\"67\" /></b></td>\r\n</tr>\r\n<tr>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Social Media</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Event Management</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Website Development, Content\r\n&amp; SEO</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Proof Reading</p>\r\n</td>\r\n<td width=\"184\">\r\n<p style=\"text-align: center;\">Advertising Bookings\r\n&amp; Management\r\n(including Facebook &amp; AdWords)</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row global_parent=\"355\" admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_button global_parent=\"355\" admin_label=\"Enquire Now Button\" url_new_window=\"off\" button_text=\"Enquire Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_url=\"http://www.infinitymarketing.co.nz/contact/\"]\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][et_pb_row global_parent=\"355\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text global_parent=\"355\" admin_label=\"Contact us for a Quote Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h4>If what you are looking for is not listed above, it does not necessarily mean we do not offer the service, <a href=\"http://www.infinitymarketing.co.nz/contact/\">please contact us for a quote.</a></h4>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"370\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"370\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text global_parent=\"370\" admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>We also provide the following services</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row global_parent=\"370\" admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb global_parent=\"370\" admin_label=\"Coaching Blurb\" title=\"Coaching\" url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne on One coaching and consulting services, either as a one-off service or on an on-going basis. Helping you get your marketing on track, and stay on track.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb global_parent=\"370\" admin_label=\"Marketing Services Blurb\" title=\"Marketing Services\" url=\"www.infinitymarketing.co.nz/marketing-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">Ongoing Marketing Services ensures your marketing happens like clock-work. The wheels keep churning, and your marketing keeps working for you.</p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb global_parent=\"370\" admin_label=\"Projects Blurb\" title=\"Projects\" url=\"www.infinitymarketing.co.nz/projects\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%174%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne off marketing projects, such as brochures, website development, one off campaign plans, and much more. We can support you for a one off marketing project.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"259\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"259\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"259\" admin_label=\"Call To Action - Contact\" title=\"Ready to take action?\" button_url=\"http://www.infinitymarketing.co.nz/contact/\" url_new_window=\"off\" button_text=\"Click here to contact us now\" use_background_color=\"off\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\nYour new future is waiting\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "OTHER SERVICES", "", "inherit", "closed", "closed", "", "345-revision-v1", "", "", "2016-04-29 16:01:53", "2016-04-29 04:01:53", "", "345", "http://www.infinitymarketing.co.nz/345-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("409", "1", "2016-04-29 16:04:16", "2016-04-29 04:04:16", "[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<h2>We also provide the following services</h2>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Coaching Blurb\" title=\"Coaching\" url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One on One coaching and consulting services, either as a one-off service or on an on-going basis. Helping you get your marketing on track, and stay on track.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Marketing Services Blurb\" title=\"Marketing Services\" url=\"www.infinitymarketing.co.nz/marketing-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p style=\"text-align: center;\">Ongoing Marketing Services ensures your marketing happens like clock-work. The wheels keep churning, and your marketing keeps working for you.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Projects Blurb\" title=\"Projects\" url=\"www.infinitymarketing.co.nz/projects\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%174%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One off marketing projects, such as brochures, website development, one off campaign plans, and much more. We can support you for a one off marketing project.</p>\n\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "We Also Provide - Coaching, Marketing Services & Projects", "", "inherit", "closed", "closed", "", "370-revision-v1", "", "", "2016-04-29 16:04:16", "2016-04-29 04:04:16", "", "370", "http://www.infinitymarketing.co.nz/370-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("408", "1", "2016-04-29 16:04:14", "2016-04-29 04:04:14", "[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<h2>We also provide the following services</h2>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Coaching Blurb\" title=\"Coaching\" url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One on One coaching and consulting services, either as a one-off service or on an on-going basis. Helping you get your marketing on track, and stay on track.</p>\n\n[/et_pb_blurb][et_pb_blurb admin_label=\"Coaching Blurb\" title=\"Coaching\" url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One on One coaching and consulting services, either as a one-off service or on an on-going basis. Helping you get your marketing on track, and stay on track.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Marketing Services Blurb\" title=\"Marketing Services\" url=\"www.infinitymarketing.co.nz/marketing-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p style=\"text-align: center;\">Ongoing Marketing Services ensures your marketing happens like clock-work. The wheels keep churning, and your marketing keeps working for you.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Projects Blurb\" title=\"Projects\" url=\"www.infinitymarketing.co.nz/projects\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%174%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One off marketing projects, such as brochures, website development, one off campaign plans, and much more. We can support you for a one off marketing project.</p>\n\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "We Also Provide - Coaching, Marketing Services & Projects", "", "inherit", "closed", "closed", "", "370-revision-v1", "", "", "2016-04-29 16:04:14", "2016-04-29 04:04:14", "", "370", "http://www.infinitymarketing.co.nz/370-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("411", "1", "2016-04-29 16:04:20", "2016-04-29 04:04:20", "[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<h2>We also provide the following services</h2>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Coaching Blurb\" title=\"Coaching\" url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One on One coaching and consulting services, either as a one-off service or on an on-going basis. Helping you get your marketing on track, and stay on track.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Marketing Services Blurb\" title=\"Marketing Services\" url=\"www.infinitymarketing.co.nz/marketing-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p style=\"text-align: center;\">Ongoing Marketing Services ensures your marketing happens like clock-work. The wheels keep churning, and your marketing keeps working for you.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Projects Blurb\" title=\"Projects\" url=\"www.infinitymarketing.co.nz/projects\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%174%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One off marketing projects, such as brochures, website development, one off campaign plans, and much more. We can support you for a one off marketing project.</p>\n\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "We Also Provide - Coaching, Marketing Services & Projects", "", "inherit", "closed", "closed", "", "370-revision-v1", "", "", "2016-04-29 16:04:20", "2016-04-29 04:04:20", "", "370", "http://www.infinitymarketing.co.nz/370-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("410", "1", "2016-04-29 16:04:18", "2016-04-29 04:04:18", "[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<h2>We also provide the following services</h2>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Coaching Blurb\" title=\"Coaching\" url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One on One coaching and consulting services, either as a one-off service or on an on-going basis. Helping you get your marketing on track, and stay on track.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Marketing Services Blurb\" title=\"Marketing Services\" url=\"www.infinitymarketing.co.nz/marketing-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p style=\"text-align: center;\">Ongoing Marketing Services ensures your marketing happens like clock-work. The wheels keep churning, and your marketing keeps working for you.</p>\n\n[/et_pb_blurb][et_pb_blurb admin_label=\"Marketing Services Blurb\" title=\"Marketing Services\" url=\"www.infinitymarketing.co.nz/marketing-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p style=\"text-align: center;\">Ongoing Marketing Services ensures your marketing happens like clock-work. The wheels keep churning, and your marketing keeps working for you.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Projects Blurb\" title=\"Projects\" url=\"www.infinitymarketing.co.nz/projects\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%174%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One off marketing projects, such as brochures, website development, one off campaign plans, and much more. We can support you for a one off marketing project.</p>\n\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "We Also Provide - Coaching, Marketing Services & Projects", "", "inherit", "closed", "closed", "", "370-revision-v1", "", "", "2016-04-29 16:04:18", "2016-04-29 04:04:18", "", "370", "http://www.infinitymarketing.co.nz/370-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("413", "1", "2016-04-29 16:04:31", "2016-04-29 04:04:31", "[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<h2>We also provide the following services</h2>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Marketing Services Blurb\" title=\"Marketing Services\" url=\"www.infinitymarketing.co.nz/marketing-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p style=\"text-align: center;\">Ongoing Marketing Services ensures your marketing happens like clock-work. The wheels keep churning, and your marketing keeps working for you.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Projects Blurb\" title=\"Projects\" url=\"www.infinitymarketing.co.nz/projects\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%174%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One off marketing projects, such as brochures, website development, one off campaign plans, and much more. We can support you for a one off marketing project.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Other Services Blurb\" title=\"Other Services\" url=\"www.infinitymarketing.co.nz/other-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%171%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>We aim to provide all your marketing needs in one place, and work with specialists in order to do this. No need to find alternative suppliers, we can help you.</p>\n\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "We Also Provide Marketing Services, Projects & Other Services", "", "inherit", "closed", "closed", "", "397-revision-v1", "", "", "2016-04-29 16:04:31", "2016-04-29 04:04:31", "", "397", "http://www.infinitymarketing.co.nz/397-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("412", "1", "2016-04-29 16:04:28", "2016-04-29 04:04:28", "[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<h2>We also provide the following services</h2>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Marketing Services Blurb\" title=\"Marketing Services\" url=\"www.infinitymarketing.co.nz/marketing-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p style=\"text-align: center;\">Ongoing Marketing Services ensures your marketing happens like clock-work. The wheels keep churning, and your marketing keeps working for you.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Projects Blurb\" title=\"Projects\" url=\"www.infinitymarketing.co.nz/projects\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%174%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One off marketing projects, such as brochures, website development, one off campaign plans, and much more. We can support you for a one off marketing project.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Other Services Blurb\" title=\"Other Services\" url=\"www.infinitymarketing.co.nz/other-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%171%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>We aim to provide all your marketing needs in one place, and work with specialists in order to do this. No need to find alternative suppliers, we can help you.</p>\n\n[/et_pb_blurb][et_pb_blurb admin_label=\"Other Services Blurb\" title=\"Other Services\" url=\"www.infinitymarketing.co.nz/other-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%171%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>We aim to provide all your marketing needs in one place, and work with specialists in order to do this. No need to find alternative suppliers, we can help you.</p>\n\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "We Also Provide Marketing Services, Projects & Other Services", "", "inherit", "closed", "closed", "", "397-revision-v1", "", "", "2016-04-29 16:04:28", "2016-04-29 04:04:28", "", "397", "http://www.infinitymarketing.co.nz/397-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("414", "1", "2016-04-29 16:04:56", "2016-04-29 04:04:56", "[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<h2>We also provide the following services</h2>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Coaching Blurb\" title=\"Coaching\" url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One on One coaching and consulting services, either as a one-off service or on an on-going basis. Helping you get your marketing on track, and stay on track.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Marketing Services Blurb\" title=\"Marketing Services\" url=\"www.infinitymarketing.co.nz/marketing-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p style=\"text-align: center;\">Ongoing Marketing Services ensures your marketing happens like clock-work. The wheels keep churning, and your marketing keeps working for you.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Other Services Blurb\" title=\"Other Services\" url=\"www.infinitymarketing.co.nz/other-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%171%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>We aim to provide all your marketing needs in one place, and work with specialists in order to do this. No need to find alternative suppliers, we can help you.</p>\n\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "We Also Provide Coaching, Marketing Services & Other Services", "", "publish", "closed", "closed", "", "we-also-provide-coaching-marketing-services-other-services", "", "", "2016-04-29 16:35:08", "2016-04-29 04:35:08", "", "0", "http://www.infinitymarketing.co.nz/et_pb_layout/we-also-provide-coaching-marketing-services-other-services/", "0", "et_pb_layout", "", "0");
INSERT INTO `wp_posts` VALUES("415", "1", "2016-04-29 16:10:24", "2016-04-29 04:10:24", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"PROJECTS Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">PROJECTS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Projects Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Individual-Projects\"></a>Individual Projects<a name=\"Individual-Projects\"></a></h2>\r\n<h3>We can help you with a specific item of work</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Projects Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: left;\">We are happy to help you with your <strong>one-off project needs</strong>.</p>\r\n<p style=\"text-align: left;\">There are a range of ways we can help you: <strong>Marketing and Design</strong> services, <strong>Marketing only</strong> services, <strong>Design only</strong> services, or we can <strong>work to whatever you need.</strong> Ideal if you need something different each time,<strong> without the on-going commitment.</strong></p>\r\n<p style=\"text-align: left;\">We work to your brief, or can even help you come up with the brief. Everything is <strong>fully customisable to suit your business needs</strong>; and on a <strong>one-off basis</strong>. <a href=\"http://www.infinitymarketing.co.nz/contact/\"><strong>Contact us to discuss your requirements and get a quote.</strong> </a></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Projects Table - no pricing\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"234\">Brochures</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          One sided flyer</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Double sided flyer</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Multi-page  DLE brochure</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Poster</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Point of sale</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website Content (200 words)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Blog (400-600 words)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">E-mail Campaign</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">E-mail Template</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Cover Photo &amp; content</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Post Artwork &amp; content</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website Content Revamp</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website Development</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Corporate Identity &amp; Branding</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Products Footer Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h4>If what you are looking for is not listed above, it does not necessarily mean we do not offer the service, <a href=\"http://www.infinitymarketing.co.nz/contact/\">please contact us for a quote.</a></h4>\r\nWe can provide quotes tailored to your specific project requirements.\r\n\r\nPrinting can be arranged and will be quoted separately. Photography and video options can be arranged and quoted for separately.\r\n\r\nWhen quoting - we will usually provide prices that include marketing copy and design and includes 2 revisions, further revisions will be quoted. Prices are available for content only options, proofing only options and design only options. Please let us know what you would like.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" global_module=\"414\"][et_pb_row global_parent=\"414\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text global_parent=\"370\" admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>We also provide the following services</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row global_parent=\"414\" admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb global_parent=\"370\" admin_label=\"Coaching Blurb\" title=\"Coaching\" url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne on One coaching and consulting services, either as a one-off service or on an on-going basis. Helping you get your marketing on track, and stay on track.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb global_parent=\"370\" admin_label=\"Marketing Services Blurb\" title=\"Marketing Services\" url=\"www.infinitymarketing.co.nz/marketing-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">Ongoing Marketing Services ensures your marketing happens like clock-work. The wheels keep churning, and your marketing keeps working for you.</p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb global_parent=\"362\" admin_label=\"Other Services Blurb\" title=\"Other Services\" url=\"www.infinitymarketing.co.nz/other-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%171%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe aim to provide all your marketing needs in one place, and work with specialists in order to do this. No need to find alternative suppliers, we can help you.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"259\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"259\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"259\" admin_label=\"Call To Action - Contact\" title=\"Ready to take action?\" button_url=\"http://www.infinitymarketing.co.nz/contact/\" url_new_window=\"off\" button_text=\"Click here to contact us now\" use_background_color=\"off\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\nYour new future is waiting\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "PROJECTS", "", "inherit", "closed", "closed", "", "343-revision-v1", "", "", "2016-04-29 16:10:24", "2016-04-29 04:10:24", "", "343", "http://www.infinitymarketing.co.nz/343-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("416", "1", "2016-04-29 16:22:17", "2016-04-29 04:22:17", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"PROJECTS Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">PROJECTS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Projects Header\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a name=\"Individual-Projects\"></a>Individual Projects<a name=\"Individual-Projects\"></a></h2>\r\n<h3>We can help you with a specific item of work</h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Projects Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: left;\">We are happy to help you with your <strong>one-off project needs</strong>.</p>\r\n<p style=\"text-align: left;\">There are a range of ways we can help you: <strong>Marketing and Design</strong> services, <strong>Marketing only</strong> services, <strong>Design only</strong> services, or we can <strong>work to whatever you need.</strong> Ideal if you need something different each time,<strong> without the on-going commitment.</strong></p>\r\n<p style=\"text-align: left;\">We work to your brief, or can even help you come up with the brief. Everything is <strong>fully customisable to suit your business needs</strong>; and on a <strong>one-off basis</strong>. <a href=\"http://www.infinitymarketing.co.nz/contact/\"><strong>Contact us to discuss your requirements and get a quote.</strong> </a></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Projects Table - no pricing\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width=\"234\">Brochures</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          One sided flyer</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Double sided flyer</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">-          Multi-page  DLE brochure</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Poster</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Point of sale</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website Content (200 words)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Blog (400-600 words)</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">E-mail Campaign</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">E-mail Template</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Cover Photo &amp; content</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Facebook Post Artwork &amp; content</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website Content Revamp</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Website Development</td>\r\n</tr>\r\n<tr>\r\n<td width=\"234\">Corporate Identity &amp; Branding</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Individual Products Footer Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h4>If what you are looking for is not listed above, it does not necessarily mean we do not offer the service, <a href=\"http://www.infinitymarketing.co.nz/contact/\">please contact us for a quote.</a></h4>\r\nWe can provide quotes tailored to your specific project requirements.\r\n\r\nPrinting can be arranged and will be quoted separately. Photography and video options can be arranged and quoted for separately.\r\n\r\nWhen quoting - we will usually provide prices that include marketing copy and design and includes 2 revisions, further revisions will be quoted. Prices are available for content only options, proofing only options and design only options. Please let us know what you would like.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"414\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"414\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text global_parent=\"370\" admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>We also provide the following services</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row global_parent=\"414\" admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb global_parent=\"370\" admin_label=\"Coaching Blurb\" title=\"Coaching\" url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne on One coaching and consulting services, either as a one-off service or on an on-going basis. Helping you get your marketing on track, and stay on track.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb global_parent=\"370\" admin_label=\"Marketing Services Blurb\" title=\"Marketing Services\" url=\"www.infinitymarketing.co.nz/marketing-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">Ongoing Marketing Services ensures your marketing happens like clock-work. The wheels keep churning, and your marketing keeps working for you.</p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb global_parent=\"362\" admin_label=\"Other Services Blurb\" title=\"Other Services\" url=\"www.infinitymarketing.co.nz/other-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%171%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe aim to provide all your marketing needs in one place, and work with specialists in order to do this. No need to find alternative suppliers, we can help you.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"259\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"259\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"259\" admin_label=\"Call To Action - Contact\" title=\"Ready to take action?\" button_url=\"http://www.infinitymarketing.co.nz/contact/\" url_new_window=\"off\" button_text=\"Click here to contact us now\" use_background_color=\"off\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\nYour new future is waiting\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "PROJECTS", "", "inherit", "closed", "closed", "", "343-revision-v1", "", "", "2016-04-29 16:22:17", "2016-04-29 04:22:17", "", "343", "http://www.infinitymarketing.co.nz/343-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("454", "1", "2016-05-30 15:13:40", "2016-05-30 03:13:40", "Infinity-Marketing-Outsourced-Marketing", "Infinity-Marketing-Outsourced-Marketing", "", "inherit", "open", "closed", "", "website_banner", "", "", "2016-05-30 15:14:01", "2016-05-30 03:14:01", "", "37", "http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Website_banner.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("460", "1", "2016-08-05 14:20:51", "2016-08-05 02:20:51", "[et_pb_section admin_label=\"section\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Testimonials Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Testimonials</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Heading Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\"><em>Don\'t just take our word for it, see what our clients are saying</em></h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_testimonial admin_label=\"Emma The wedding Bunch Testimonial\" author=\"Emma Hopson\" company_name=\"The Wedding Bunch\" url=\"http://www.theweddingbunch.co.nz\" url_new_window=\"on\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nCandice has been amazing to deal with! Honestly, I was almost dreading handing my website over to someone else to design. It\'s quite a big deal! But Candice made this process so easy &amp; stress free! I really appreciate all her effort and attention to detail. She took the time to get to know me, my products and the way the business works. She asked loads of questions and completely understood what I wanted and my vision for my website. Her communication was excellent and she explained everything to me along the way. I am extremely happy with her work and would absolutely recommend her to anyone! Thanks for everything Candice.\r\n\r\n[/et_pb_testimonial][et_pb_testimonial admin_label=\"Corinna Every Body Testimonial\" author=\"Corinna Gerber\" company_name=\"Every Body\" url=\"http://www.beautyforeverybody.co.nz\" url_new_window=\"on\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI cannot recommend Candice enough!  Candice is a wealth of information and knowledge, her passion and expertise make Candice a natural in creating and producing marketing campaigns to generate and build business.\r\n\r\nCandice is capable of fulfilling a project from start to finish, keeping within deadlines and always retaining a calm and composed attitude whilst making you feel like you are her one and only client – always giving her full potential and going above and beyond for her clients.  Candice is the expert in her field!\r\n\r\n[/et_pb_testimonial][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Network NZ Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Network-NZ-Transparent.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Network NZ Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>Infinity Marketing is proud to be a Foundation Member of Network NZ</h2>\r\nTo find out more about Network NZ, <a href=\"http://www.networknz.nz\">click here to visit www.networknz.nz</a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Venus Network Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>Infinity Marketing is proud to be a member of Venus Network</h2>\r\nTo find out more about Venus Network, <a href=\"http://www.venusnetwork.co.nz\">click here to visit www.venusnetwork.co.nz</a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Venus Network Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Venus-Logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" global_module=\"179\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"179\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"179\" admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-us/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\">Take the first step toward your new future</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "TESTIMONIALS", "", "inherit", "closed", "closed", "", "459-revision-v1", "", "", "2016-08-05 14:20:51", "2016-08-05 02:20:51", "", "459", "http://www.infinitymarketing.co.nz/459-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("461", "1", "2016-08-05 14:26:01", "2016-08-05 02:26:01", "[et_pb_section admin_label=\"section\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Testimonials Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Testimonials</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Heading Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\"><em>Don\'t just take our word for it, see what our clients are saying</em></h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_testimonial admin_label=\"Emma The wedding Bunch Testimonial\" author=\"Emma Hopson\" company_name=\"The Wedding Bunch\" url=\"http://www.theweddingbunch.co.nz\" url_new_window=\"on\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nCandice has been amazing to deal with! Honestly, I was almost dreading handing my website over to someone else to design. It\'s quite a big deal! But Candice made this process so easy &amp; stress free! I really appreciate all her effort and attention to detail. She took the time to get to know me, my products and the way the business works. She asked loads of questions and completely understood what I wanted and my vision for my website. Her communication was excellent and she explained everything to me along the way. I am extremely happy with her work and would absolutely recommend her to anyone! Thanks for everything Candice.\r\n\r\n[/et_pb_testimonial][et_pb_testimonial admin_label=\"Corinna Every Body Testimonial\" author=\"Corinna Gerber\" company_name=\"Every Body\" url=\"http://www.beautyforeverybody.co.nz\" url_new_window=\"on\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI cannot recommend Candice enough!  Candice is a wealth of information and knowledge, her passion and expertise make Candice a natural in creating and producing marketing campaigns to generate and build business.\r\n\r\nCandice is capable of fulfilling a project from start to finish, keeping within deadlines and always retaining a calm and composed attitude whilst making you feel like you are her one and only client – always giving her full potential and going above and beyond for her clients.  Candice is the expert in her field!\r\n\r\n[/et_pb_testimonial][et_pb_testimonial admin_label=\"Mandy Veronica and Me Testimonial\" author=\"Mandy Chamberlin\" company_name=\"Veronica and Me Designs\" url=\"http://www.veronicaandme.co.nz\" url_new_window=\"on\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI just wanted to thank you for your ongoing help and advice with the marketing of my business.  You are far more than just a marketing expert, you are knowledgeable in the overall running of a business which really adds value to the advice and suggestions you’ve given me in many areas of my business, from marketing, advertising, website building and the list goes on!  I would (and have already several times) recommend your services to any small business.  The value you add is well worth the cost of your services and small businesses everywhere are missing out if they are not coming to you!\r\n\r\n[/et_pb_testimonial][et_pb_testimonial admin_label=\"Danni Winmill Creative Testimonial\" author=\"Danni Winmill\" company_name=\"Winmill Creative\" url=\"http://www.winmillcreative.co.nz\" url_new_window=\"on\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nCandice really cared about my business, I could feel she wanted me to succeed. I asked her to write a marketing plan for my online course and she delivered so much more than I expected! A well laid out step by step process and timeline. She was so lovely to deal with and I\'m looking forward to implementing the plan.\r\n\r\n[/et_pb_testimonial][et_pb_testimonial admin_label=\"Mariana Mayhem Creations Testimonial\" author=\"Mariana Martin\" company_name=\"Mayhem Creations NZ\" url=\"http://www.mayhemcreations.co.nz\" url_new_window=\"on\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI recently had Candice review my current business position and to work out a plan for my future direction and vision.  This included understanding what my business mission is, what my core values are and defining my short and long term goals.  To do this I learnt how to define and target my ideal customers, and some of the best strategies for finding them and increasing my sales.\r\n\r\nThe evaluation of my website was extremely helpful and the changes she suggested have made a considerable difference and improvement.\r\n\r\nShe has given me amazing advice that has completely changed how my business is growing and how I am going to reach by business goals.  Her attention to detail was fantastic and her reporting was extremely thorough and in clear and precise language that I could follow and understand.\r\n\r\nI am now spending less on advertising and getting far more return thanks to Candice’s advice!\r\n\r\nI highly recommend Infinity Marketing to anyone who is trying to grow their business, because the opportunities and ideas that Candice can offer are very helpful and will ensure that your business grows and expands even quicker than you might be hoping.\r\n\r\n[/et_pb_testimonial][et_pb_testimonial admin_label=\"Bridgette Off the Fringe Testimonial\" author=\"Bridgette Young\" company_name=\"Off the Fringe Organic Hair Studio\" url=\"http://www.mayhemcreations.co.nz\" url_new_window=\"on\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nCandice has been part of my business for a very long time, initially as a client, but now behind the scenes. She has been such an amazing support person in helping me find some order in what was chaos! she has created an amazing new website for my business and together we have come up with ideas and marketing strategy moving forward is not as daunting as before with her in my corner, with support and advice. I would highly recommend her services. She is highly professional and skilled and goes way beyond her \"duties\". Thanks Candice!\r\n\r\n[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" admin_label=\"Section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Heading Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\"><em>Network with us</em></h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Network NZ Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Network-NZ-Transparent.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Network NZ Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>Infinity Marketing is proud to be a Foundation Member of Network NZ</h2>\r\nTo find out more about Network NZ, <a href=\"http://www.networknz.nz\">click here to visit www.networknz.nz</a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Venus Network Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>Infinity Marketing is proud to be a member of Venus Network</h2>\r\nTo find out more about Venus Network, <a href=\"http://www.venusnetwork.co.nz\">click here to visit www.venusnetwork.co.nz</a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Venus Network Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Venus-Logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" global_module=\"179\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"179\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"179\" admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-us/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\">Take the first step toward your new future</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "TESTIMONIALS", "", "inherit", "closed", "closed", "", "459-revision-v1", "", "", "2016-08-05 14:26:01", "2016-08-05 02:26:01", "", "459", "http://www.infinitymarketing.co.nz/459-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("462", "1", "2016-08-05 14:26:54", "2016-08-05 02:26:54", " ", "", "", "publish", "closed", "closed", "", "462", "", "", "2016-08-05 14:26:54", "2016-08-05 02:26:54", "", "0", "http://www.infinitymarketing.co.nz/?p=462", "8", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("499", "1", "2016-11-03 18:17:10", "2016-11-03 05:17:10", "", "stamp-with-no-background", "", "inherit", "open", "closed", "", "stamp-with-no-background", "", "", "2016-11-03 18:17:10", "2016-11-03 05:17:10", "", "2", "http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Stamp-with-No-Background.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("500", "1", "2016-11-03 18:17:41", "2016-11-03 05:17:41", "", "stamp-with-no-background", "", "inherit", "open", "closed", "", "stamp-with-no-background-2", "", "", "2016-11-03 18:17:41", "2016-11-03 05:17:41", "", "2", "http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Stamp-with-No-Background-1.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("501", "1", "2016-11-03 18:18:20", "2016-11-03 05:18:20", "", "stamp-with-white-background", "", "inherit", "open", "closed", "", "stamp-with-white-background", "", "", "2016-11-03 18:18:20", "2016-11-03 05:18:20", "", "2", "http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Stamp-with-White-Background.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("502", "1", "2016-11-03 18:24:20", "2016-11-03 05:24:20", "", "stamp-with-no-background", "", "inherit", "open", "closed", "", "stamp-with-no-background-3", "", "", "2016-11-03 18:24:20", "2016-11-03 05:24:20", "", "2", "http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Stamp-with-No-Background-2.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("503", "1", "2016-11-03 18:31:34", "2016-11-03 05:31:34", "", "stamp-with-no-background", "", "inherit", "open", "closed", "", "stamp-with-no-background-4", "", "", "2016-11-03 18:31:34", "2016-11-03 05:31:34", "", "2", "http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Stamp-with-No-Background-3.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("504", "1", "2016-11-03 18:35:36", "2016-11-03 05:35:36", "", "stamp-with-no-background", "", "inherit", "open", "closed", "", "stamp-with-no-background-5", "", "", "2016-11-03 18:35:36", "2016-11-03 05:35:36", "", "2", "http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Stamp-with-No-Background-4.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("505", "1", "2016-11-03 19:37:56", "2016-11-03 06:37:56", "", "stamp-with-no-background", "", "inherit", "open", "closed", "", "stamp-with-no-background-6", "", "", "2016-11-03 19:37:56", "2016-11-03 06:37:56", "", "2", "http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Stamp-with-No-Background-5.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("506", "1", "2016-11-03 19:42:04", "2016-11-03 06:42:04", "", "stamp-with-no-background", "", "inherit", "open", "closed", "", "stamp-with-no-background-7", "", "", "2016-11-03 19:42:04", "2016-11-03 06:42:04", "", "2", "http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Stamp-with-No-Background-6.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("507", "1", "2016-11-03 19:44:47", "2016-11-03 06:44:47", "", "stamp-with-no-background", "", "inherit", "open", "closed", "", "stamp-with-no-background-8", "", "", "2016-11-03 19:44:47", "2016-11-03 06:44:47", "", "2", "http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Stamp-with-No-Background-7.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("508", "1", "2016-11-03 19:46:34", "2016-11-03 06:46:34", "", "stamp-with-no-background", "", "inherit", "open", "closed", "", "stamp-with-no-background-9", "", "", "2016-11-03 19:46:34", "2016-11-03 06:46:34", "", "2", "http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Stamp-with-No-Background-8.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("509", "1", "2016-11-03 19:47:16", "2016-11-03 06:47:16", "", "stamp-with-white-background", "", "inherit", "open", "closed", "", "stamp-with-white-background-2", "", "", "2016-11-03 19:47:16", "2016-11-03 06:47:16", "", "2", "http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Stamp-with-White-Background-1.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("511", "1", "2016-11-13 18:23:06", "2016-11-13 05:23:06", "", "stamp-with-white-background", "", "inherit", "open", "closed", "", "stamp-with-white-background-3", "", "", "2016-11-13 18:23:06", "2016-11-13 05:23:06", "", "0", "http://www.infinitymarketing.co.nz/wp-content/uploads/2016/11/Stamp-with-White-Background.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("512", "1", "2016-11-16 23:14:55", "2016-11-16 10:14:55", "", "infinitymarketing_signature", "", "inherit", "open", "closed", "", "infinitymarketing_signature", "", "", "2016-11-16 23:14:55", "2016-11-16 10:14:55", "", "0", "http://www.infinitymarketing.co.nz/wp-content/uploads/2016/11/InfinityMarketing_signature.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("513", "1", "2016-11-16 23:18:10", "2016-11-16 10:18:10", "", "linkedin", "", "inherit", "open", "closed", "", "linkedin", "", "", "2016-11-16 23:18:10", "2016-11-16 10:18:10", "", "0", "http://www.infinitymarketing.co.nz/wp-content/uploads/2016/11/Linkedin.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("514", "1", "2016-11-16 23:18:42", "2016-11-16 10:18:42", "", "facebook", "", "inherit", "open", "closed", "", "facebook", "", "", "2016-11-16 23:18:42", "2016-11-16 10:18:42", "", "0", "http://www.infinitymarketing.co.nz/wp-content/uploads/2016/11/Facebook.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("515", "1", "2016-11-16 23:19:35", "2016-11-16 10:19:35", "", "instagram", "", "inherit", "open", "closed", "", "instagram", "", "", "2016-11-16 23:19:35", "2016-11-16 10:19:35", "", "0", "http://www.infinitymarketing.co.nz/wp-content/uploads/2016/11/Instagram.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("516", "1", "2016-11-17 09:50:16", "2016-11-16 20:50:16", "[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Contact Title\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Contact</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/cropped-Candice-About_round.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIf you have any questions, comments, feedback or even just to say hi, please contact us using any of the methods below and we will respond as soon as we can.\r\n\r\nInfinity Marketing is based in Howick, Auckland; New Zealand\r\n\r\n<span class=\"phone\"><strong>Phone:</strong> 021 159 1215\r\n</span><span class=\"email\"><strong>E-mail: </strong>candice@infinitymarketing.co.nz</span>\r\n\r\nOr complete the form below to email us:\r\n\r\n[/et_pb_text][et_pb_contact_form admin_label=\"Contact Form\" captcha=\"on\" email=\"candice@infinitymarketing.co.nz\" use_redirect=\"off\" success_message=\"Sent!\" input_border_radius=\"0\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_contact_field field_title=\"Name\" field_type=\"input\" field_id=\"Name\" required_mark=\"on\" fullwidth_field=\"off\"] [/et_pb_contact_field][et_pb_contact_field field_title=\"Email Address\" field_type=\"email\" field_id=\"Email\" required_mark=\"on\" fullwidth_field=\"off\"] [/et_pb_contact_field][et_pb_contact_field field_id=\"Phone Number\" field_title=\"Phone Number\" field_type=\"input\" required_mark=\"off\" fullwidth_field=\"off\" form_field_font_select=\"default\" form_field_font=\"||||\" use_border_color=\"off\" border_style=\"solid\"] [/et_pb_contact_field][et_pb_contact_field field_title=\"Message\" field_type=\"text\" field_id=\"Message\" required_mark=\"on\"] [/et_pb_contact_field] [/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]", "CONTACT", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2016-11-17 09:50:16", "2016-11-16 20:50:16", "", "43", "http://www.infinitymarketing.co.nz/43-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("518", "1", "2016-11-30 19:13:41", "2016-11-30 06:13:41", "", "stamp-with-white-background", "", "inherit", "open", "closed", "", "stamp-with-white-background-4", "", "", "2016-11-30 19:13:41", "2016-11-30 06:13:41", "", "0", "http://www.infinitymarketing.co.nz/wp-content/uploads/2016/11/Stamp-with-White-Background-1.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("519", "1", "2016-11-30 19:15:29", "2016-11-30 06:15:29", "", "nnz-endorsed", "", "inherit", "open", "closed", "", "nnz-endorsed", "", "", "2016-11-30 19:15:29", "2016-11-30 06:15:29", "", "0", "http://www.infinitymarketing.co.nz/wp-content/uploads/2016/11/NNZ-Endorsed.png", "0", "attachment", "image/png", "0");
INSERT INTO `wp_posts` VALUES("520", "1", "2016-11-30 19:31:36", "2016-11-30 06:31:36", "", "the-sticky-handshake", "", "inherit", "open", "closed", "", "the-sticky-handshake", "", "", "2016-11-30 19:31:47", "2016-11-30 06:31:47", "", "2", "http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/The-Sticky-Handshake.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `wp_posts` VALUES("522", "1", "2016-11-30 19:34:24", "2016-11-30 06:34:24", "[et_pb_section admin_label=\"section\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"About Infinity Marketing Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">About Infinity Marketing</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hello I\'m Candice Venter Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\"><strong>Hi, I\'m Candice Venter</strong></h2>\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h2 style=\"text-align: center;\"><em>Your outsourced marketing expert, </em><em>here to help you\r\nwith marketing your small business</em>\r\n<em> with marketing that works!</em></h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nRight now, I\'m sure you\'re feeling like you are trying to juggle it all, to know every aspect of how to do everything for your business, and not sure how to get the results you need for your business to grow (or even survive!) and overall just frustrated and bombarded!\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><strong>I get it, balancing everything is HARD and you quite simply can\'t be the expert at everything. </strong></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI\'m here to show you that there is help and a light at the end of the tunnel where your business can succeed.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhy I love helping small businesses deliver outstanding marketing and see their businesses grow as a result, is because I am inspired by what amazing people and talents there are in our community. My passion is helping other people succeed, and I believe that everyone <strong>deserves</strong> to succeed.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI want this for you! I want to share my skills as a qualified and experienced marketing professional, to help your business grow and succeed.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/About-Candice-.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Get Personal Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#888e8f\" border_style=\"outset\" border_width=\"2px\"]\r\n<h2 style=\"text-align: justify;\">Let\'s get personal</h2>\r\n[/et_pb_text][et_pb_text admin_label=\"Get Personal Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOriginally from South Africa, I have now lived over half my life in Auckland, New Zealand. That means I have a good mix of being able to tell it straight, with a good dose of kiwi ingenuity. I studied a Bachelor of Business and Information Management, with a second major in Marketing at the University of Auckland and have gained my professional experience in both global corporations and a great kiwi start-up.\r\n\r\nFamily is my everything. It\'s for them, that I do what I do.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Network NZ Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/11/NNZ-Endorsed.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Network NZ Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>Infinity Marketing is proud to be a Network NZ Endorsed Supplier and Marketing Expert</h2>\r\nTo find out more about Network NZ, <a href=\"http://www.networknz.nz\">click here to visit www.networknz.nz</a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Venus Network Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>Infinity Marketing is proud to be a member of Venus Network</h2>\r\nTo find out more about Venus Network, <a href=\"http://www.venusnetwork.co.nz\">click here to visit www.venusnetwork.co.nz</a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Venus Network Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Venus-Logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"The Sticky Handshake Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/The-Sticky-Handshake.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"The Sticky Handshake Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>Infinity Marketing is proud to be a member of The Sticky Handshake</h2>\r\nTo find out more about The Sticky Handshake, <a href=\"http://thestickyhandshake.co.nz\">click here to visit www.thestickyhandshake.co.nz</a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" global_module=\"179\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"179\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"179\" admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-us/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\">Take the first step toward your new future</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "ABOUT", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2016-11-30 19:34:24", "2016-11-30 06:34:24", "", "2", "http://www.infinitymarketing.co.nz/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("521", "1", "2016-11-30 19:33:20", "2016-11-30 06:33:20", "[et_pb_section admin_label=\"section\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"About Infinity Marketing Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">About Infinity Marketing</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Hello I\'m Candice Venter Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\"><strong>Hi, I\'m Candice Venter</strong></h2>\r\n<h2 style=\"text-align: center;\"></h2>\r\n<h2 style=\"text-align: center;\"><em>Your outsourced marketing expert, </em><em>here to help you\r\nwith marketing your small business</em>\r\n<em> with marketing that works!</em></h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nRight now, I\'m sure you\'re feeling like you are trying to juggle it all, to know every aspect of how to do everything for your business, and not sure how to get the results you need for your business to grow (or even survive!) and overall just frustrated and bombarded!\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3><strong>I get it, balancing everything is HARD and you quite simply can\'t be the expert at everything. </strong></h3>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI\'m here to show you that there is help and a light at the end of the tunnel where your business can succeed.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhy I love helping small businesses deliver outstanding marketing and see their businesses grow as a result, is because I am inspired by what amazing people and talents there are in our community. My passion is helping other people succeed, and I believe that everyone <strong>deserves</strong> to succeed.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI want this for you! I want to share my skills as a qualified and experienced marketing professional, to help your business grow and succeed.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/About-Candice-.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Get Personal Heading\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#888e8f\" border_style=\"outset\" border_width=\"2px\"]\r\n<h2 style=\"text-align: justify;\">Let\'s get personal</h2>\r\n[/et_pb_text][et_pb_text admin_label=\"Get Personal Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOriginally from South Africa, I have now lived over half my life in Auckland, New Zealand. That means I have a good mix of being able to tell it straight, with a good dose of kiwi ingenuity. I studied a Bachelor of Business and Information Management, with a second major in Marketing at the University of Auckland and have gained my professional experience in both global corporations and a great kiwi start-up.\r\n\r\nFamily is my everything, this includes my 15 year old miniature sausage dog, Dante. It\'s for them, that I do what I do.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Network NZ Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/11/NNZ-Endorsed.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Network NZ Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>Infinity Marketing is proud to be a Network NZ Endorsed Supplier and Marketing Expert</h2>\r\nTo find out more about Network NZ, <a href=\"http://www.networknz.nz\">click here to visit www.networknz.nz</a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Venus Network Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>Infinity Marketing is proud to be a member of Venus Network</h2>\r\nTo find out more about Venus Network, <a href=\"http://www.venusnetwork.co.nz\">click here to visit www.venusnetwork.co.nz</a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Venus Network Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Venus-Logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"The Sticky Handshake Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/The-Sticky-Handshake.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"The Sticky Handshake Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>Infinity Marketing is proud to be a member of The Sticky Handshake</h2>\r\nTo find out more about The Sticky Handshake, <a href=\"http://thestickyhandshake.co.nz\">click here to visit www.thestickyhandshake.co.nz</a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" global_module=\"179\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"179\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"179\" admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-us/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\">Take the first step toward your new future</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "ABOUT", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2016-11-30 19:33:20", "2016-11-30 06:33:20", "", "2", "http://www.infinitymarketing.co.nz/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("523", "1", "2016-11-30 19:43:56", "2016-11-30 06:43:56", "[et_pb_section admin_label=\"section\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Testimonials Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Testimonials</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Heading Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\"><em>Don\'t just take our word for it, see what our clients are saying</em></h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_testimonial admin_label=\"Emma The wedding Bunch Testimonial\" author=\"Emma Hopson\" company_name=\"The Wedding Bunch\" url=\"http://www.theweddingbunch.co.nz\" url_new_window=\"on\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nCandice has been amazing to deal with! Honestly, I was almost dreading handing my website over to someone else to design. It\'s quite a big deal! But Candice made this process so easy &amp; stress free! I really appreciate all her effort and attention to detail. She took the time to get to know me, my products and the way the business works. She asked loads of questions and completely understood what I wanted and my vision for my website. Her communication was excellent and she explained everything to me along the way. I am extremely happy with her work and would absolutely recommend her to anyone! Thanks for everything Candice.\r\n\r\n[/et_pb_testimonial][et_pb_testimonial admin_label=\"Corinna Every Body Testimonial\" author=\"Corinna Gerber\" company_name=\"Every Body\" url=\"http://www.beautyforeverybody.co.nz\" url_new_window=\"on\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI cannot recommend Candice enough!  Candice is a wealth of information and knowledge, her passion and expertise make Candice a natural in creating and producing marketing campaigns to generate and build business.\r\n\r\nCandice is capable of fulfilling a project from start to finish, keeping within deadlines and always retaining a calm and composed attitude whilst making you feel like you are her one and only client – always giving her full potential and going above and beyond for her clients.  Candice is the expert in her field!\r\n\r\n[/et_pb_testimonial][et_pb_testimonial admin_label=\"Mandy Veronica and Me Testimonial\" author=\"Mandy Chamberlin\" company_name=\"Veronica and Me Designs\" url=\"http://www.veronicaandme.co.nz\" url_new_window=\"on\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI just wanted to thank you for your ongoing help and advice with the marketing of my business.  You are far more than just a marketing expert, you are knowledgeable in the overall running of a business which really adds value to the advice and suggestions you’ve given me in many areas of my business, from marketing, advertising, website building and the list goes on!  I would (and have already several times) recommend your services to any small business.  The value you add is well worth the cost of your services and small businesses everywhere are missing out if they are not coming to you!\r\n\r\n[/et_pb_testimonial][et_pb_testimonial admin_label=\"Danni Winmill Creative Testimonial\" author=\"Danni Winmill\" company_name=\"Winmill Creative\" url=\"http://www.winmillcreative.co.nz\" url_new_window=\"on\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nCandice really cared about my business, I could feel she wanted me to succeed. I asked her to write a marketing plan for my online course and she delivered so much more than I expected! A well laid out step by step process and timeline. She was so lovely to deal with and I\'m looking forward to implementing the plan.\r\n\r\n[/et_pb_testimonial][et_pb_testimonial admin_label=\"Mariana Mayhem Creations Testimonial\" author=\"Mariana Martin\" company_name=\"Mayhem Creations NZ\" url=\"http://www.mayhemcreations.co.nz\" url_new_window=\"on\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI recently had Candice review my current business position and to work out a plan for my future direction and vision.  This included understanding what my business mission is, what my core values are and defining my short and long term goals.  To do this I learnt how to define and target my ideal customers, and some of the best strategies for finding them and increasing my sales.\r\n\r\nThe evaluation of my website was extremely helpful and the changes she suggested have made a considerable difference and improvement.\r\n\r\nShe has given me amazing advice that has completely changed how my business is growing and how I am going to reach by business goals.  Her attention to detail was fantastic and her reporting was extremely thorough and in clear and precise language that I could follow and understand.\r\n\r\nI am now spending less on advertising and getting far more return thanks to Candice’s advice!\r\n\r\nI highly recommend Infinity Marketing to anyone who is trying to grow their business, because the opportunities and ideas that Candice can offer are very helpful and will ensure that your business grows and expands even quicker than you might be hoping.\r\n\r\n[/et_pb_testimonial][et_pb_testimonial admin_label=\"Bridgette Off the Fringe Testimonial\" author=\"Bridgette Young\" company_name=\"Off the Fringe Organic Hair Studio\" url=\"http://www.offthefringe.co.nz\" url_new_window=\"on\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nCandice has been part of my business for a very long time, initially as a client, but now behind the scenes. She has been such an amazing support person in helping me find some order in what was chaos! she has created an amazing new website for my business and together we have come up with ideas and marketing strategy moving forward is not as daunting as before with her in my corner, with support and advice. I would highly recommend her services. She is highly professional and skilled and goes way beyond her \"duties\". Thanks Candice!\r\n\r\n[/et_pb_testimonial][et_pb_testimonial admin_label=\"Diana Speech Marks Testimonial\" author=\"Diana Thomson\" company_name=\"Speech Marks\" url=\"http://www.speechmarks.co.nz\" url_new_window=\"on\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nCandice is a marketing genius in disguise. Behind the quiet, polite exterior lies a mind that is clever a sharp eye for what looks good and will appeal to customers. She has helped me with my Speech Marks Logo &amp; brand and now my A5 Flyer, business card design and unique \"Quick Tip\" cards. She nailed the professional image with a touch of fun, clean lines uncluttered media. All for a sharp price and quickly.\r\n\r\n[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Heading Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\"><em>Network with us</em></h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Network NZ Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/11/NNZ-Endorsed.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Network NZ Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>Infinity Marketing is proud to be a Network NZ Endorsed Supplier and Marketing Expert</h2>\r\nTo find out more about Network NZ, <a href=\"http://www.networknz.nz\">click here to visit www.networknz.nz</a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Venus Network Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>Infinity Marketing is proud to be a member of Venus Network</h2>\r\nTo find out more about Venus Network, <a href=\"http://www.venusnetwork.co.nz\">click here to visit www.venusnetwork.co.nz</a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Venus Network Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Venus-Logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"The Sticky Handshake Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/The-Sticky-Handshake.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"The Sticky Handshake Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>Infinity Marketing is proud to be a member of The Sticky Handshake</h2>\r\nTo find out more about The Sticky Handshake, <a href=\"http://thestickyhandshake.co.nz\">click here to visit www.thestickyhandshake.co.nz</a> [/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" global_module=\"179\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"179\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"179\" admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-us/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\">Take the first step toward your new future</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "TESTIMONIALS", "", "inherit", "closed", "closed", "", "459-revision-v1", "", "", "2016-11-30 19:43:56", "2016-11-30 06:43:56", "", "459", "http://www.infinitymarketing.co.nz/459-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("420", "1", "2016-04-29 16:25:25", "2016-04-29 04:25:25", "[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<h2>We also provide the following services</h2>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Coaching Blurb\" title=\"Coaching\" url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One on One coaching and consulting services, either as a one-off service or on an on-going basis. Helping you get your marketing on track, and stay on track.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Marketing Services Blurb\" title=\"Marketing Services\" url=\"www.infinitymarketing.co.nz/marketing-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p style=\"text-align: center;\">Ongoing Marketing Services ensures your marketing happens like clock-work. The wheels keep churning, and your marketing keeps working for you.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Other Services Blurb\" title=\"Other Services\" url=\"www.infinitymarketing.co.nz/other-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%171%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>We aim to provide all your marketing needs in one place, and work with specialists in order to do this. No need to find alternative suppliers, we can help you.</p>\n\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "We Also Provide Coaching, Marketing Services & Other Services", "", "inherit", "closed", "closed", "", "414-revision-v1", "", "", "2016-04-29 16:25:25", "2016-04-29 04:25:25", "", "414", "http://www.infinitymarketing.co.nz/414-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("419", "1", "2016-04-29 16:25:22", "2016-04-29 04:25:22", "[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<h2>We also provide the following services</h2>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Coaching Blurb\" title=\"Coaching\" url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One on One coaching and consulting services, either as a one-off service or on an on-going basis. Helping you get your marketing on track, and stay on track.</p>\n\n[/et_pb_blurb][et_pb_blurb admin_label=\"Coaching Blurb\" title=\"Coaching\" url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One on One coaching and consulting services, either as a one-off service or on an on-going basis. Helping you get your marketing on track, and stay on track.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Marketing Services Blurb\" title=\"Marketing Services\" url=\"www.infinitymarketing.co.nz/marketing-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p style=\"text-align: center;\">Ongoing Marketing Services ensures your marketing happens like clock-work. The wheels keep churning, and your marketing keeps working for you.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Other Services Blurb\" title=\"Other Services\" url=\"www.infinitymarketing.co.nz/other-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%171%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>We aim to provide all your marketing needs in one place, and work with specialists in order to do this. No need to find alternative suppliers, we can help you.</p>\n\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "We Also Provide Coaching, Marketing Services & Other Services", "", "inherit", "closed", "closed", "", "414-revision-v1", "", "", "2016-04-29 16:25:22", "2016-04-29 04:25:22", "", "414", "http://www.infinitymarketing.co.nz/414-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("422", "1", "2016-04-29 16:25:29", "2016-04-29 04:25:29", "[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<h2>We also provide the following services</h2>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Coaching Blurb\" title=\"Coaching\" url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One on One coaching and consulting services, either as a one-off service or on an on-going basis. Helping you get your marketing on track, and stay on track.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Marketing Services Blurb\" title=\"Marketing Services\" url=\"www.infinitymarketing.co.nz/marketing-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p style=\"text-align: center;\">Ongoing Marketing Services ensures your marketing happens like clock-work. The wheels keep churning, and your marketing keeps working for you.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Other Services Blurb\" title=\"Other Services\" url=\"www.infinitymarketing.co.nz/other-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%171%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>We aim to provide all your marketing needs in one place, and work with specialists in order to do this. No need to find alternative suppliers, we can help you.</p>\n\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "We Also Provide Coaching, Marketing Services & Other Services", "", "inherit", "closed", "closed", "", "414-revision-v1", "", "", "2016-04-29 16:25:29", "2016-04-29 04:25:29", "", "414", "http://www.infinitymarketing.co.nz/414-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("421", "1", "2016-04-29 16:25:27", "2016-04-29 04:25:27", "[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<h2>We also provide the following services</h2>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Coaching Blurb\" title=\"Coaching\" url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One on One coaching and consulting services, either as a one-off service or on an on-going basis. Helping you get your marketing on track, and stay on track.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Marketing Services Blurb\" title=\"Marketing Services\" url=\"www.infinitymarketing.co.nz/marketing-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p style=\"text-align: center;\">Ongoing Marketing Services ensures your marketing happens like clock-work. The wheels keep churning, and your marketing keeps working for you.</p>\n\n[/et_pb_blurb][et_pb_blurb admin_label=\"Marketing Services Blurb\" title=\"Marketing Services\" url=\"www.infinitymarketing.co.nz/marketing-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p style=\"text-align: center;\">Ongoing Marketing Services ensures your marketing happens like clock-work. The wheels keep churning, and your marketing keeps working for you.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Other Services Blurb\" title=\"Other Services\" url=\"www.infinitymarketing.co.nz/other-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%171%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>We aim to provide all your marketing needs in one place, and work with specialists in order to do this. No need to find alternative suppliers, we can help you.</p>\n\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "We Also Provide Coaching, Marketing Services & Other Services", "", "inherit", "closed", "closed", "", "414-revision-v1", "", "", "2016-04-29 16:25:27", "2016-04-29 04:25:27", "", "414", "http://www.infinitymarketing.co.nz/414-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("424", "1", "2016-04-29 16:25:33", "2016-04-29 04:25:33", "[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<h2>We also provide the following services</h2>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Coaching Blurb\" title=\"Coaching\" url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One on One coaching and consulting services, either as a one-off service or on an on-going basis. Helping you get your marketing on track, and stay on track.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Marketing Services Blurb\" title=\"Marketing Services\" url=\"www.infinitymarketing.co.nz/marketing-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p style=\"text-align: center;\">Ongoing Marketing Services ensures your marketing happens like clock-work. The wheels keep churning, and your marketing keeps working for you.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Other Services Blurb\" title=\"Other Services\" url=\"www.infinitymarketing.co.nz/other-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%171%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>We aim to provide all your marketing needs in one place, and work with specialists in order to do this. No need to find alternative suppliers, we can help you.</p>\n\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "We Also Provide Coaching, Marketing Services & Other Services", "", "inherit", "closed", "closed", "", "414-revision-v1", "", "", "2016-04-29 16:25:33", "2016-04-29 04:25:33", "", "414", "http://www.infinitymarketing.co.nz/414-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("423", "1", "2016-04-29 16:25:31", "2016-04-29 04:25:31", "[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<h2>We also provide the following services</h2>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Coaching Blurb\" title=\"Coaching\" url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One on One coaching and consulting services, either as a one-off service or on an on-going basis. Helping you get your marketing on track, and stay on track.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Marketing Services Blurb\" title=\"Marketing Services\" url=\"www.infinitymarketing.co.nz/marketing-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p style=\"text-align: center;\">Ongoing Marketing Services ensures your marketing happens like clock-work. The wheels keep churning, and your marketing keeps working for you.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Other Services Blurb\" title=\"Other Services\" url=\"www.infinitymarketing.co.nz/other-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%171%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>We aim to provide all your marketing needs in one place, and work with specialists in order to do this. No need to find alternative suppliers, we can help you.</p>\n\n[/et_pb_blurb][et_pb_blurb admin_label=\"Other Services Blurb\" title=\"Other Services\" url=\"www.infinitymarketing.co.nz/other-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%171%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>We aim to provide all your marketing needs in one place, and work with specialists in order to do this. No need to find alternative suppliers, we can help you.</p>\n\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "We Also Provide Coaching, Marketing Services & Other Services", "", "inherit", "closed", "closed", "", "414-revision-v1", "", "", "2016-04-29 16:25:31", "2016-04-29 04:25:31", "", "414", "http://www.infinitymarketing.co.nz/414-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("426", "1", "2016-04-29 16:25:50", "2016-04-29 04:25:50", "[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<h2>We also provide the following services</h2>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Marketing Services Blurb\" title=\"Marketing Services\" url=\"www.infinitymarketing.co.nz/marketing-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p style=\"text-align: center;\">Ongoing Marketing Services ensures your marketing happens like clock-work. The wheels keep churning, and your marketing keeps working for you.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Projects Blurb\" title=\"Projects\" url=\"www.infinitymarketing.co.nz/projects\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%174%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One off marketing projects, such as brochures, website development, one off campaign plans, and much more. We can support you for a one off marketing project.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Other Services Blurb\" title=\"Other Services\" url=\"www.infinitymarketing.co.nz/other-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%171%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>We aim to provide all your marketing needs in one place, and work with specialists in order to do this. No need to find alternative suppliers, we can help you.</p>\n\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "We Also Provide Marketing Services, Projects & Other Services", "", "inherit", "closed", "closed", "", "397-revision-v1", "", "", "2016-04-29 16:25:50", "2016-04-29 04:25:50", "", "397", "http://www.infinitymarketing.co.nz/397-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("425", "1", "2016-04-29 16:25:48", "2016-04-29 04:25:48", "[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<h2>We also provide the following services</h2>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Marketing Services Blurb\" title=\"Marketing Services\" url=\"www.infinitymarketing.co.nz/marketing-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p style=\"text-align: center;\">Ongoing Marketing Services ensures your marketing happens like clock-work. The wheels keep churning, and your marketing keeps working for you.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Projects Blurb\" title=\"Projects\" url=\"www.infinitymarketing.co.nz/projects\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%174%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One off marketing projects, such as brochures, website development, one off campaign plans, and much more. We can support you for a one off marketing project.</p>\n\n[/et_pb_blurb][et_pb_blurb admin_label=\"Projects Blurb\" title=\"Projects\" url=\"www.infinitymarketing.co.nz/projects\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%174%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One off marketing projects, such as brochures, website development, one off campaign plans, and much more. We can support you for a one off marketing project.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Other Services Blurb\" title=\"Other Services\" url=\"www.infinitymarketing.co.nz/other-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%171%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>We aim to provide all your marketing needs in one place, and work with specialists in order to do this. No need to find alternative suppliers, we can help you.</p>\n\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "We Also Provide Marketing Services, Projects & Other Services", "", "inherit", "closed", "closed", "", "397-revision-v1", "", "", "2016-04-29 16:25:48", "2016-04-29 04:25:48", "", "397", "http://www.infinitymarketing.co.nz/397-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("428", "1", "2016-04-29 16:26:11", "2016-04-29 04:26:11", "[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<h2>We also provide the following services</h2>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Marketing Services Blurb\" title=\"Marketing Services\" url=\"www.infinitymarketing.co.nz/marketing-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p style=\"text-align: center;\">Ongoing Marketing Services ensures your marketing happens like clock-work. The wheels keep churning, and your marketing keeps working for you.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Projects Blurb\" title=\"Projects\" url=\"www.infinitymarketing.co.nz/projects\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%174%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One off marketing projects, such as brochures, website development, one off campaign plans, and much more. We can support you for a one off marketing project.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Other Services Blurb\" title=\"Other Services\" url=\"www.infinitymarketing.co.nz/other-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%171%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>We aim to provide all your marketing needs in one place, and work with specialists in order to do this. No need to find alternative suppliers, we can help you.</p>\n\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "We Also Provide Marketing Services, Projects & Other Services", "", "inherit", "closed", "closed", "", "397-revision-v1", "", "", "2016-04-29 16:26:11", "2016-04-29 04:26:11", "", "397", "http://www.infinitymarketing.co.nz/397-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("427", "1", "2016-04-29 16:26:05", "2016-04-29 04:26:05", "[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<h2>We also provide the following services</h2>\n\n[/et_pb_text][et_pb_text admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<h2>We also provide the following services</h2>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Marketing Services Blurb\" title=\"Marketing Services\" url=\"www.infinitymarketing.co.nz/marketing-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p style=\"text-align: center;\">Ongoing Marketing Services ensures your marketing happens like clock-work. The wheels keep churning, and your marketing keeps working for you.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Projects Blurb\" title=\"Projects\" url=\"www.infinitymarketing.co.nz/projects\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%174%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One off marketing projects, such as brochures, website development, one off campaign plans, and much more. We can support you for a one off marketing project.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Other Services Blurb\" title=\"Other Services\" url=\"www.infinitymarketing.co.nz/other-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%171%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>We aim to provide all your marketing needs in one place, and work with specialists in order to do this. No need to find alternative suppliers, we can help you.</p>\n\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "We Also Provide Marketing Services, Projects & Other Services", "", "inherit", "closed", "closed", "", "397-revision-v1", "", "", "2016-04-29 16:26:05", "2016-04-29 04:26:05", "", "397", "http://www.infinitymarketing.co.nz/397-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("438", "1", "2016-04-29 16:35:17", "2016-04-29 04:35:17", "[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<h2>We also provide the following services</h2>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Marketing Services Blurb\" title=\"Marketing Services\" url=\"www.infinitymarketing.co.nz/marketing-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p style=\"text-align: center;\">Ongoing Marketing Services ensures your marketing happens like clock-work. The wheels keep churning, and your marketing keeps working for you.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Projects Blurb\" title=\"Projects\" url=\"www.infinitymarketing.co.nz/projects\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%174%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One off marketing projects, such as brochures, website development, one off campaign plans, and much more. We can support you for a one off marketing project.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Other Services Blurb\" title=\"Other Services\" url=\"www.infinitymarketing.co.nz/other-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%171%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>We aim to provide all your marketing needs in one place, and work with specialists in order to do this. No need to find alternative suppliers, we can help you.</p>\n\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "We Also Provide Marketing Services, Projects & Other Services", "", "inherit", "closed", "closed", "", "397-revision-v1", "", "", "2016-04-29 16:35:17", "2016-04-29 04:35:17", "", "397", "http://www.infinitymarketing.co.nz/397-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("437", "1", "2016-04-29 16:35:15", "2016-04-29 04:35:15", "[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"We Also Provide Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<h2>We also provide the following services</h2>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Marketing Services Blurb\" title=\"Marketing Services\" url=\"www.infinitymarketing.co.nz/marketing-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p style=\"text-align: center;\">Ongoing Marketing Services ensures your marketing happens like clock-work. The wheels keep churning, and your marketing keeps working for you.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Projects Blurb\" title=\"Projects\" url=\"www.infinitymarketing.co.nz/projects\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%174%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One off marketing projects, such as brochures, website development, one off campaign plans, and much more. We can support you for a one off marketing project.</p>\n\n[/et_pb_blurb][et_pb_blurb admin_label=\"Projects Blurb\" title=\"Projects\" url=\"www.infinitymarketing.co.nz/projects\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%174%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>One off marketing projects, such as brochures, website development, one off campaign plans, and much more. We can support you for a one off marketing project.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Other Services Blurb\" title=\"Other Services\" url=\"www.infinitymarketing.co.nz/other-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%171%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>We aim to provide all your marketing needs in one place, and work with specialists in order to do this. No need to find alternative suppliers, we can help you.</p>\n\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]", "We Also Provide Marketing Services, Projects & Other Services", "", "inherit", "closed", "closed", "", "397-revision-v1", "", "", "2016-04-29 16:35:15", "2016-04-29 04:35:15", "", "397", "http://www.infinitymarketing.co.nz/397-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("442", "1", "2016-04-29 16:49:11", "2016-04-29 04:49:11", " ", "", "", "publish", "closed", "closed", "", "442", "", "", "2016-08-05 14:26:54", "2016-08-05 02:26:54", "", "0", "http://www.infinitymarketing.co.nz/?p=442", "6", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("443", "1", "2016-04-29 16:49:11", "2016-04-29 04:49:11", " ", "", "", "publish", "closed", "closed", "", "443", "", "", "2016-08-05 14:26:54", "2016-08-05 02:26:54", "", "0", "http://www.infinitymarketing.co.nz/?p=443", "7", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("444", "1", "2016-04-29 16:49:11", "2016-04-29 04:49:11", " ", "", "", "publish", "closed", "closed", "", "444", "", "", "2016-08-05 14:26:54", "2016-08-05 02:26:54", "", "0", "http://www.infinitymarketing.co.nz/?p=444", "5", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("445", "1", "2016-04-29 16:49:11", "2016-04-29 04:49:11", " ", "", "", "publish", "closed", "closed", "", "445", "", "", "2016-08-05 14:26:54", "2016-08-05 02:26:54", "", "0", "http://www.infinitymarketing.co.nz/?p=445", "4", "nav_menu_item", "", "0");
INSERT INTO `wp_posts` VALUES("459", "1", "2016-08-05 14:26:25", "2016-08-05 02:26:25", "[et_pb_section admin_label=\"section\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Testimonials Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Testimonials</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Heading Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\"><em>Don\'t just take our word for it, see what our clients are saying</em></h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_testimonial admin_label=\"Emma The wedding Bunch Testimonial\" author=\"Emma Hopson\" company_name=\"The Wedding Bunch\" url=\"http://www.theweddingbunch.co.nz\" url_new_window=\"on\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nCandice has been amazing to deal with! Honestly, I was almost dreading handing my website over to someone else to design. It\'s quite a big deal! But Candice made this process so easy &amp; stress free! I really appreciate all her effort and attention to detail. She took the time to get to know me, my products and the way the business works. She asked loads of questions and completely understood what I wanted and my vision for my website. Her communication was excellent and she explained everything to me along the way. I am extremely happy with her work and would absolutely recommend her to anyone! Thanks for everything Candice.\r\n\r\n[/et_pb_testimonial][et_pb_testimonial admin_label=\"Corinna Every Body Testimonial\" author=\"Corinna Gerber\" company_name=\"Every Body\" url=\"http://www.beautyforeverybody.co.nz\" url_new_window=\"on\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI cannot recommend Candice enough!  Candice is a wealth of information and knowledge, her passion and expertise make Candice a natural in creating and producing marketing campaigns to generate and build business.\r\n\r\nCandice is capable of fulfilling a project from start to finish, keeping within deadlines and always retaining a calm and composed attitude whilst making you feel like you are her one and only client – always giving her full potential and going above and beyond for her clients.  Candice is the expert in her field!\r\n\r\n[/et_pb_testimonial][et_pb_testimonial admin_label=\"Mandy Veronica and Me Testimonial\" author=\"Mandy Chamberlin\" company_name=\"Veronica and Me Designs\" url=\"http://www.veronicaandme.co.nz\" url_new_window=\"on\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI just wanted to thank you for your ongoing help and advice with the marketing of my business.  You are far more than just a marketing expert, you are knowledgeable in the overall running of a business which really adds value to the advice and suggestions you’ve given me in many areas of my business, from marketing, advertising, website building and the list goes on!  I would (and have already several times) recommend your services to any small business.  The value you add is well worth the cost of your services and small businesses everywhere are missing out if they are not coming to you!\r\n\r\n[/et_pb_testimonial][et_pb_testimonial admin_label=\"Danni Winmill Creative Testimonial\" author=\"Danni Winmill\" company_name=\"Winmill Creative\" url=\"http://www.winmillcreative.co.nz\" url_new_window=\"on\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nCandice really cared about my business, I could feel she wanted me to succeed. I asked her to write a marketing plan for my online course and she delivered so much more than I expected! A well laid out step by step process and timeline. She was so lovely to deal with and I\'m looking forward to implementing the plan.\r\n\r\n[/et_pb_testimonial][et_pb_testimonial admin_label=\"Mariana Mayhem Creations Testimonial\" author=\"Mariana Martin\" company_name=\"Mayhem Creations NZ\" url=\"http://www.mayhemcreations.co.nz\" url_new_window=\"on\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nI recently had Candice review my current business position and to work out a plan for my future direction and vision.  This included understanding what my business mission is, what my core values are and defining my short and long term goals.  To do this I learnt how to define and target my ideal customers, and some of the best strategies for finding them and increasing my sales.\r\n\r\nThe evaluation of my website was extremely helpful and the changes she suggested have made a considerable difference and improvement.\r\n\r\nShe has given me amazing advice that has completely changed how my business is growing and how I am going to reach by business goals.  Her attention to detail was fantastic and her reporting was extremely thorough and in clear and precise language that I could follow and understand.\r\n\r\nI am now spending less on advertising and getting far more return thanks to Candice’s advice!\r\n\r\nI highly recommend Infinity Marketing to anyone who is trying to grow their business, because the opportunities and ideas that Candice can offer are very helpful and will ensure that your business grows and expands even quicker than you might be hoping.\r\n\r\n[/et_pb_testimonial][et_pb_testimonial admin_label=\"Bridgette Off the Fringe Testimonial\" author=\"Bridgette Young\" company_name=\"Off the Fringe Organic Hair Studio\" url=\"http://www.offthefringe.co.nz\" url_new_window=\"on\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nCandice has been part of my business for a very long time, initially as a client, but now behind the scenes. She has been such an amazing support person in helping me find some order in what was chaos! she has created an amazing new website for my business and together we have come up with ideas and marketing strategy moving forward is not as daunting as before with her in my corner, with support and advice. I would highly recommend her services. She is highly professional and skilled and goes way beyond her \"duties\". Thanks Candice!\r\n\r\n[/et_pb_testimonial][et_pb_testimonial admin_label=\"Diana Speech Marks Testimonial\" author=\"Diana Thomson\" company_name=\"Speech Marks\" url=\"http://www.speechmarks.co.nz\" url_new_window=\"on\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nCandice is a marketing genius in disguise. Behind the quiet, polite exterior lies a mind that is clever a sharp eye for what looks good and will appeal to customers. She has helped me with my Speech Marks Logo &amp; brand and now my A5 Flyer, business card design and unique \"Quick Tip\" cards. She nailed the professional image with a touch of fun, clean lines uncluttered media. All for a sharp price and quickly.\r\n\r\n[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Heading Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\"><em>Network with us</em></h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Network NZ Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/11/NNZ-Endorsed.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Network NZ Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>Infinity Marketing is proud to be a Network NZ Endorsed Supplier and Marketing Expert</h2>\r\nTo find out more about Network NZ, <a href=\"http://www.networknz.nz\">click here to visit www.networknz.nz</a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Venus Network Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>Infinity Marketing is proud to be a member of Venus Network</h2>\r\nTo find out more about Venus Network, <a href=\"http://www.venusnetwork.co.nz\">click here to visit www.venusnetwork.co.nz</a>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Venus Network Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Venus-Logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"The Sticky Handshake Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/The-Sticky-Handshake.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"The Sticky Handshake Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>Infinity Marketing is proud to be a member of The Sticky Handshake</h2>\r\nTo find out more about The Sticky Handshake, <a href=\"http://thestickyhandshake.co.nz\">click here to visit www.thestickyhandshake.co.nz</a> [/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" global_module=\"179\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"179\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"179\" admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-us/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\">Take the first step toward your new future</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "TESTIMONIALS", "", "publish", "open", "open", "", "testimonials", "", "", "2016-11-30 19:43:56", "2016-11-30 06:43:56", "", "0", "http://www.infinitymarketing.co.nz/?page_id=459", "0", "page", "", "0");
INSERT INTO `wp_posts` VALUES("446", "1", "2016-04-29 16:58:29", "2016-04-29 04:58:29", "[et_pb_section admin_label=\"Impact Background\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice-Infinity-Marketing-Banner-.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Impact Text\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/discover-v2.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_signup admin_label=\"Email Optin\" provider=\"mailchimp\" mailchimp_list=\"4419f44e8e\" aweber_list=\"none\" use_background_color=\"on\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"left\" use_focus_border_color=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" title=\"Get practical marketing tips delivered straight to your inbox\" button_text=\"Sign me up!\" header_font=\"Open Sans||||\" header_font_size=\"22\" body_font=\"Open Sans||||\"] [/et_pb_signup][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"0px|||\"]\r\n<h2 style=\"text-align: center;\">Building your dream business can be overwhelming</h2>\r\n<h2 style=\"text-align: center;\">and how do you know what marketing works?</h2>\r\n<p style=\"text-align: center;\">In your small business, you tend to try and juggle it all. Infinity Marketing is here to help you\r\nwith marketing that suits your unique business, no matter which stage it is at.</p>\r\n<p style=\"text-align: center;\">We work together with you, to gain a thorough understanding of who your customers are,\r\nand where they are, to deliver the best marketing for your small business.</p>\r\n<p style=\"text-align: center;\">You might know exactly what your business needs to get the extra punch it requires,\r\nand need help with implementation of your marketing plan. Otherwise, you might\r\nbe starting out and need a guiding hand to identify what needs to be done for your business marketing.</p>\r\n<p style=\"text-align: center;\">Whatever stage you are at, we can help you take your business to the next level,\r\nwhere the possibilities are infinite.</p>\r\n<p style=\"text-align: center;\"><strong><a href=\"http://www.infinitymarketing.co.nz/work-with-us/\">Let\'s discover how we can make that happen for your business</a></strong></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#b3babf\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Facebook Blurb\" title=\"CONNECT\" url=\"http://www.facebook.com/infinitymarketing.co.nz\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%337%%\" icon_color=\"#ffffff\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nLike Infinity Marketing on Facebook\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Services Blurb\" title=\"SERVICES\" url=\"www.infinitymarketing.co.nz/work-with-us\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%248%%\" icon_color=\"#ffffff\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nView the services we provide\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Contact Blurb\" title=\"CONTACT\" url=\"www.infinitymarketing.co.nz/contact\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%86%%\" icon_color=\"#ffffff\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nContact us today\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice-About_round.png\" alt=\"Candice Venter\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"About Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>About Candice</h2>\r\nCandice has a passion for marketing for small businesses, having worked in both start up and large corporations, she has seen and done a lot. She has an absolute passion for helping small businesses grow through the power of marketing.\r\n\r\nAn expert in understanding who your customers are, understanding where they are and delivering messages that inspire action, Candice thrives on creating marketing that works.\r\n\r\nAbove all, she is passionate to help your business succeed.\r\n\r\n[/et_pb_text][et_pb_button admin_label=\"Read More Button\" button_url=\"http://www.infinitymarketing.co.nz/about/\" url_new_window=\"off\" button_text=\"Read More\" button_alignment=\"left\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#f9f9f9\" button_bg_color=\"#009edb\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon=\"%%28%%\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-us/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\">Discover the services we provide</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "HOME", "", "inherit", "closed", "closed", "", "37-revision-v1", "", "", "2016-04-29 16:58:29", "2016-04-29 04:58:29", "", "37", "http://www.infinitymarketing.co.nz/37-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("447", "1", "2016-04-29 17:07:33", "2016-04-29 05:07:33", "[et_pb_section admin_label=\"Impact Area\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Work With Us Header\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Work With Us</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Outsourced Marketing Department Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\">Infinity Marketing is your outsourced marketing department, here to help you with marketing that works!</h2>\r\n[/et_pb_text][et_pb_text admin_label=\"Overview Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nInfinity Marketing offers<strong> marketing coaching or consulting and marketing services</strong> to start up and small to medium sized businesses, whether it be a <strong>one off project or ongoing marketing services.</strong>\r\n<p style=\"text-align: left;\">We offer a range of marketing services for your small business. Whether you know what you want and just don\'t have time to implement, or if you need someone to take control to make it happen for you, we can help.</p>\r\n<p style=\"text-align: left;\">We offer great <strong>ongoing monthly packages,</strong> which are <strong>fully customisable</strong> to suit your business needs; and <strong>one-off services.</strong></p>\r\nWe can help you with\r\n<ul>\r\n	<li>Setting your <strong>marketing goals and strategy</strong> in line with your business goals,</li>\r\n	<li>Developing a <strong>marketing plan,</strong></li>\r\n	<li>Being your marketing “<strong>accountability buddy</strong>”, making sure that your marketing stays on track, with you every step of the way,</li>\r\n	<li>Or <strong>implementing your marketing</strong> if you are sick of trying to juggle and be an expert at it all.</li>\r\n</ul>\r\nEverything we do is <strong>customisable to suit your businesses individuality</strong>, and <strong>quotes are free,</strong> so please<a href=\"http://www.infinitymarketing.co.nz/contact/\"><strong> get in touch with us today to discuss your requirements.</strong> </a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"We Provide Text\" global_parent=\"414\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>We provide the following services</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Coaching Blurb\" global_parent=\"414\" title=\"Coaching\" url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%259%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne on One coaching and consulting services, either as a one-off service or on an on-going basis. Helping you get your marketing on track, and stay on track.\r\n\r\n[/et_pb_blurb][et_pb_button admin_label=\"See More Button\" button_url=\"www.infinitymarketing.co.nz/coaching\" url_new_window=\"off\" button_text=\"See more\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Marketing Services Blurb\" global_parent=\"414\" title=\"Marketing Services\" url=\"www.infinitymarketing.co.nz/marketing-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">Ongoing Marketing Services ensures your marketing happens like clock-work. The wheels keep churning, and your marketing keeps working for you.</p>\r\n[/et_pb_blurb][et_pb_button admin_label=\"See More Button\" button_url=\"www.infinitymarketing.co.nz/marketing-services\" url_new_window=\"off\" button_text=\"See more\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Projects Blurb\" global_parent=\"397\" title=\"Projects\" url=\"www.infinitymarketing.co.nz/projects\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%174%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nOne off marketing projects, such as brochures, website development, one off campaign plans, and much more. We can support you for a one off marketing project.\r\n\r\n[/et_pb_blurb][et_pb_button admin_label=\"See More Button\" button_url=\"www.infinitymarketing.co.nz/projects\" url_new_window=\"off\" button_text=\"See more\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Other Services Blurb\" global_parent=\"414\" title=\"Other Services\" url=\"www.infinitymarketing.co.nz/other-services\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%171%%\" icon_color=\"#009edb\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe aim to provide all your marketing needs in one place, and work with specialists in order to do this. No need to find alternative suppliers, we can help you.\r\n\r\n[/et_pb_blurb][et_pb_button admin_label=\"See More Button\" button_url=\"www.infinitymarketing.co.nz/other-services\" url_new_window=\"off\" button_text=\"See more\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" global_module=\"259\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"259\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"259\" admin_label=\"Call To Action - Contact\" title=\"Ready to take action?\" button_url=\"http://www.infinitymarketing.co.nz/contact/\" url_new_window=\"off\" button_text=\"Click here to contact us now\" use_background_color=\"off\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\nYour new future is waiting\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "WORK WITH US", "", "inherit", "closed", "closed", "", "39-revision-v1", "", "", "2016-04-29 17:07:33", "2016-04-29 05:07:33", "", "39", "http://www.infinitymarketing.co.nz/39-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("448", "1", "2016-04-29 17:14:23", "2016-04-29 05:14:23", "[et_pb_section admin_label=\"Impact Background\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice-Infinity-Marketing-Banner-.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Impact Text\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/discover-v2.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" disabled=\"off\" disabled_on=\"on||\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_signup admin_label=\"Email Optin\" provider=\"mailchimp\" mailchimp_list=\"4419f44e8e\" aweber_list=\"none\" use_background_color=\"on\" background_color=\"#009edb\" background_layout=\"dark\" text_orientation=\"left\" use_focus_border_color=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" title=\"Get practical marketing tips delivered straight to your inbox\" button_text=\"Sign me up!\" header_font=\"Open Sans||||\" header_font_size=\"22\" body_font=\"Open Sans||||\"] [/et_pb_signup][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Intro Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"0px|||\"]\r\n<h2 style=\"text-align: center;\">Building your dream business can be overwhelming</h2>\r\n<h2 style=\"text-align: center;\">and how do you know what marketing works?</h2>\r\n<p style=\"text-align: center;\">In your small business, you tend to try and juggle it all. Infinity Marketing is here to help you\r\nwith marketing that suits your unique business, no matter which stage it is at.</p>\r\n<p style=\"text-align: center;\">We work together with you, to gain a thorough understanding of who your customers are,\r\nand where they are, to deliver the best marketing for your small business.</p>\r\n<p style=\"text-align: center;\">You might know exactly what your business needs to get the extra punch it requires,\r\nand need help with implementation of your marketing plan. Otherwise, you might\r\nbe starting out and need a guiding hand to identify what needs to be done for your business marketing.</p>\r\n<p style=\"text-align: center;\">Whatever stage you are at, we can help you take your business to the next level,\r\nwhere the possibilities are infinite.</p>\r\n<p style=\"text-align: center;\"><strong><a href=\"http://www.infinitymarketing.co.nz/work-with-us/\">Let\'s discover how we can make that happen for your business</a></strong></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#b3babf\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Facebook Blurb\" title=\"CONNECT\" url=\"http://www.facebook.com/infinitymarketing.co.nz\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%337%%\" icon_color=\"#ffffff\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nLike Infinity Marketing on Facebook\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Services Blurb\" title=\"SERVICES\" url=\"www.infinitymarketing.co.nz/work-with-us\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%248%%\" icon_color=\"#ffffff\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nView the services we provide\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Contact Blurb\" title=\"CONTACT\" url=\"www.infinitymarketing.co.nz/contact\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%86%%\" icon_color=\"#ffffff\" use_circle=\"off\" circle_color=\"#009edb\" use_circle_border=\"off\" circle_border_color=\"#009edb\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nContact us today\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"About Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/Candice-About_round.png\" alt=\"Candice Venter\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"About Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>About Candice</h2>\r\nCandice has a passion for marketing for small businesses, having worked in both start up and large corporations, she has seen and done a lot. She has an absolute passion for helping small businesses grow through the power of marketing.\r\n\r\nAn expert in understanding who your customers are, understanding where they are and delivering messages that inspire action, Candice thrives on creating marketing that works.\r\n\r\nAbove all, she is passionate to help your business succeed.\r\n\r\n[/et_pb_text][et_pb_button admin_label=\"Read More Button\" button_url=\"http://www.infinitymarketing.co.nz/about/\" url_new_window=\"off\" button_text=\"Read More\" button_alignment=\"left\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#f9f9f9\" button_bg_color=\"#009edb\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon=\"%%28%%\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-us/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: center;\">Discover the services we provide</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "HOME", "", "inherit", "closed", "closed", "", "37-revision-v1", "", "", "2016-04-29 17:14:23", "2016-04-29 05:14:23", "", "37", "http://www.infinitymarketing.co.nz/37-revision-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("452", "1", "2016-07-21 17:09:06", "2016-07-21 05:09:06", "[et_pb_section admin_label=\"section\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Blog Title\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n<h1 style=\"text-align: center;\">Blog</h1>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_blog admin_label=\"Blog\" fullwidth=\"on\" show_thumbnail=\"on\" show_content=\"off\" show_more=\"on\" show_author=\"on\" show_date=\"on\" show_categories=\"on\" show_comments=\"on\" show_pagination=\"on\" offset_number=\"0\" use_overlay=\"off\" background_layout=\"light\" use_dropshadow=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blog][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"right\" area=\"sidebar-1\" background_layout=\"light\" remove_border=\"off\"] [/et_pb_sidebar][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"CTA Background\" global_module=\"179\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"179\" admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_cta global_parent=\"179\" admin_label=\"Call To Action\" title=\"Interested in working together?\" button_url=\"http://www.infinitymarketing.co.nz/work-with-us/\" url_new_window=\"off\" button_text=\"Click to find out more\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\n<p style=\"text-align: center;\">Take the first step toward your new future</p>\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]", "BLOG", "", "inherit", "closed", "closed", "", "98-autosave-v1", "", "", "2016-07-21 17:09:06", "2016-07-21 05:09:06", "", "98", "http://www.infinitymarketing.co.nz/98-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `wp_posts` VALUES("525", "1", "2016-12-20 15:49:29", "2016-12-20 02:49:29", "[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/HeaderBackground_blue.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Contact Title\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Contact</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.infinitymarketing.co.nz/wp-content/uploads/2016/02/cropped-Candice-About_round.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIf you have any questions, comments, feedback or even just to say hi, please contact us using any of the methods below and we will respond as soon as we can.\r\n\r\nInfinity Marketing is based in Howick, Auckland; New Zealand\r\n\r\n<span class=\"phone\"><strong>Phone:</strong> 021 159 1215\r\n</span><span class=\"email\"><strong>E-mail: </strong>candice@infinitymarketing.co.nz</span>\r\n\r\nOr complete the form below to email us:\r\n\r\n[/et_pb_text][et_pb_contact_form admin_label=\"Contact Form\" captcha=\"on\" email=\"candice@infinitymarketing.co.nz\" use_redirect=\"off\" success_message=\"Sent!\" input_border_radius=\"0\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_contact_field field_title=\"Name\" field_type=\"input\" field_id=\"Name\" required_mark=\"on\" fullwidth_field=\"off\" form_field_font_select=\"default\" form_field_font=\"||||\" use_border_color=\"off\" border_style=\"solid\"] [/et_pb_contact_field][et_pb_contact_field field_title=\"Email Address\" field_type=\"email\" field_id=\"Email\" required_mark=\"on\" fullwidth_field=\"off\" form_field_font_select=\"default\" form_field_font=\"||||\" use_border_color=\"off\" border_style=\"solid\"] [/et_pb_contact_field][et_pb_contact_field field_id=\"Phone Number\" field_title=\"Phone Number\" field_type=\"input\" required_mark=\"off\" fullwidth_field=\"off\" form_field_font_select=\"default\" form_field_font=\"||||\" use_border_color=\"off\" border_style=\"solid\"] [/et_pb_contact_field][et_pb_contact_field field_title=\"Message\" field_type=\"text\" field_id=\"Message\" required_mark=\"on\" fullwidth_field=\"on\" form_field_font_select=\"default\" form_field_font=\"||||\" use_border_color=\"off\" border_style=\"solid\"] [/et_pb_contact_field] [/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]", "CONTACT", "", "inherit", "closed", "closed", "", "43-revision-v1", "", "", "2016-12-20 15:49:29", "2016-12-20 02:49:29", "", "43", "http://www.infinitymarketing.co.nz/43-revision-v1/", "0", "revision", "", "0");

/* INSERT TABLE DATA: wp_term_relationships */
INSERT INTO `wp_term_relationships` VALUES("1", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("2", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("3", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("4", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("5", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("6", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("7", "2", "0");
INSERT INTO `wp_term_relationships` VALUES("355", "7", "0");
INSERT INTO `wp_term_relationships` VALUES("53", "3", "0");
INSERT INTO `wp_term_relationships` VALUES("54", "3", "0");
INSERT INTO `wp_term_relationships` VALUES("52", "3", "0");
INSERT INTO `wp_term_relationships` VALUES("51", "3", "0");
INSERT INTO `wp_term_relationships` VALUES("141", "4", "0");
INSERT INTO `wp_term_relationships` VALUES("100", "3", "0");
INSERT INTO `wp_term_relationships` VALUES("141", "5", "0");
INSERT INTO `wp_term_relationships` VALUES("141", "6", "0");
INSERT INTO `wp_term_relationships` VALUES("179", "7", "0");
INSERT INTO `wp_term_relationships` VALUES("179", "8", "0");
INSERT INTO `wp_term_relationships` VALUES("179", "6", "0");
INSERT INTO `wp_term_relationships` VALUES("259", "7", "0");
INSERT INTO `wp_term_relationships` VALUES("259", "8", "0");
INSERT INTO `wp_term_relationships` VALUES("259", "6", "0");
INSERT INTO `wp_term_relationships` VALUES("355", "8", "0");
INSERT INTO `wp_term_relationships` VALUES("323", "11", "0");
INSERT INTO `wp_term_relationships` VALUES("323", "9", "0");
INSERT INTO `wp_term_relationships` VALUES("323", "10", "0");
INSERT INTO `wp_term_relationships` VALUES("355", "6", "0");
INSERT INTO `wp_term_relationships` VALUES("362", "7", "0");
INSERT INTO `wp_term_relationships` VALUES("362", "8", "0");
INSERT INTO `wp_term_relationships` VALUES("362", "6", "0");
INSERT INTO `wp_term_relationships` VALUES("370", "7", "0");
INSERT INTO `wp_term_relationships` VALUES("370", "8", "0");
INSERT INTO `wp_term_relationships` VALUES("370", "6", "0");
INSERT INTO `wp_term_relationships` VALUES("397", "7", "0");
INSERT INTO `wp_term_relationships` VALUES("397", "8", "0");
INSERT INTO `wp_term_relationships` VALUES("397", "6", "0");
INSERT INTO `wp_term_relationships` VALUES("414", "7", "0");
INSERT INTO `wp_term_relationships` VALUES("414", "8", "0");
INSERT INTO `wp_term_relationships` VALUES("414", "6", "0");
INSERT INTO `wp_term_relationships` VALUES("445", "3", "0");
INSERT INTO `wp_term_relationships` VALUES("444", "3", "0");
INSERT INTO `wp_term_relationships` VALUES("442", "3", "0");
INSERT INTO `wp_term_relationships` VALUES("443", "3", "0");
INSERT INTO `wp_term_relationships` VALUES("462", "3", "0");

/* INSERT TABLE DATA: wp_term_taxonomy */
INSERT INTO `wp_term_taxonomy` VALUES("1", "1", "category", "", "0", "0");
INSERT INTO `wp_term_taxonomy` VALUES("2", "2", "link_category", "", "0", "7");
INSERT INTO `wp_term_taxonomy` VALUES("3", "3", "nav_menu", "", "0", "10");
INSERT INTO `wp_term_taxonomy` VALUES("4", "4", "scope", "", "0", "1");
INSERT INTO `wp_term_taxonomy` VALUES("5", "5", "layout_type", "", "0", "1");
INSERT INTO `wp_term_taxonomy` VALUES("6", "6", "module_width", "", "0", "8");
INSERT INTO `wp_term_taxonomy` VALUES("7", "7", "scope", "", "0", "7");
INSERT INTO `wp_term_taxonomy` VALUES("8", "8", "layout_type", "", "0", "7");
INSERT INTO `wp_term_taxonomy` VALUES("9", "9", "category", "", "0", "1");
INSERT INTO `wp_term_taxonomy` VALUES("10", "10", "category", "", "0", "1");
INSERT INTO `wp_term_taxonomy` VALUES("11", "11", "category", "", "0", "1");

/* INSERT TABLE DATA: wp_terms */
INSERT INTO `wp_terms` VALUES("1", "Uncategorized", "uncategorized", "0");
INSERT INTO `wp_terms` VALUES("2", "Blogroll", "blogroll", "0");
INSERT INTO `wp_terms` VALUES("3", "Primary", "primary", "0");
INSERT INTO `wp_terms` VALUES("4", "not_global", "not_global", "0");
INSERT INTO `wp_terms` VALUES("5", "module", "module", "0");
INSERT INTO `wp_terms` VALUES("6", "regular", "regular", "0");
INSERT INTO `wp_terms` VALUES("7", "global", "global", "0");
INSERT INTO `wp_terms` VALUES("8", "section", "section", "0");
INSERT INTO `wp_terms` VALUES("9", "About Infinity Marketing", "about-infinity-marketing", "0");
INSERT INTO `wp_terms` VALUES("10", "Passion", "passion", "0");
INSERT INTO `wp_terms` VALUES("11", "Dreams", "dreams", "0");

/* INSERT TABLE DATA: wp_usermeta */
INSERT INTO `wp_usermeta` VALUES("1", "1", "first_name", "");
INSERT INTO `wp_usermeta` VALUES("2", "1", "last_name", "");
INSERT INTO `wp_usermeta` VALUES("3", "1", "nickname", "Candice Venter");
INSERT INTO `wp_usermeta` VALUES("4", "1", "description", "");
INSERT INTO `wp_usermeta` VALUES("5", "1", "rich_editing", "true");
INSERT INTO `wp_usermeta` VALUES("6", "1", "comment_shortcuts", "false");
INSERT INTO `wp_usermeta` VALUES("7", "1", "admin_color", "fresh");
INSERT INTO `wp_usermeta` VALUES("8", "1", "use_ssl", "0");
INSERT INTO `wp_usermeta` VALUES("9", "1", "aim", "");
INSERT INTO `wp_usermeta` VALUES("10", "1", "yim", "");
INSERT INTO `wp_usermeta` VALUES("11", "1", "jabber", "");
INSERT INTO `wp_usermeta` VALUES("12", "1", "wp_capabilities", "a:7:{s:13:\"administrator\";s:1:\"1\";s:14:\"frm_view_forms\";b:1;s:14:\"frm_edit_forms\";b:1;s:16:\"frm_delete_forms\";b:1;s:19:\"frm_change_settings\";b:1;s:16:\"frm_view_entries\";b:1;s:18:\"frm_delete_entries\";b:1;}");
INSERT INTO `wp_usermeta` VALUES("13", "1", "wp_user_level", "10");
INSERT INTO `wp_usermeta` VALUES("21", "1", "session_tokens", "a:6:{s:64:\"b5db4abc89f8c55546a3662e2f3b990715e8553489562f032798a9a390e31464\";a:4:{s:10:\"expiration\";i:1482374847;s:2:\"ip\";s:13:\"122.59.80.126\";s:2:\"ua\";s:73:\"Mozilla/5.0 (Windows NT 10.0; WOW64; rv:50.0) Gecko/20100101 Firefox/50.0\";s:5:\"login\";i:1482202047;}s:64:\"fe68adb29c0c8fdc89fb1f136e0e5e27c49b005835dc94cc97081abbe632f16c\";a:4:{s:10:\"expiration\";i:1482388309;s:2:\"ip\";s:13:\"122.59.80.126\";s:2:\"ua\";s:73:\"Mozilla/5.0 (Windows NT 10.0; WOW64; rv:50.0) Gecko/20100101 Firefox/50.0\";s:5:\"login\";i:1482215509;}s:64:\"78ba8e5a36bc8344d339529231e544a8c2442ad41b795089081caf9c69e64c1d\";a:4:{s:10:\"expiration\";i:1482388412;s:2:\"ip\";s:13:\"122.59.80.126\";s:2:\"ua\";s:73:\"Mozilla/5.0 (Windows NT 10.0; WOW64; rv:50.0) Gecko/20100101 Firefox/50.0\";s:5:\"login\";i:1482215612;}s:64:\"b4e02c2cbb823f3f637c71d69f2b0ac92d368435982df6cbd2ae6be97d5626d0\";a:4:{s:10:\"expiration\";i:1482397233;s:2:\"ip\";s:15:\"203.173.215.137\";s:2:\"ua\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36\";s:5:\"login\";i:1482224433;}s:64:\"d12b769926f4963c5dece73f687d1732fcf5bb7367d6e26017a95eeb5d3e2da2\";a:4:{s:10:\"expiration\";i:1482430191;s:2:\"ip\";s:14:\"49.224.211.151\";s:2:\"ua\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36\";s:5:\"login\";i:1482257391;}s:64:\"815cd51f772e8eda1803ed97d9c26284f6ec6a4adac75c2ca412be4477ebd05e\";a:4:{s:10:\"expiration\";i:1482431644;s:2:\"ip\";s:14:\"49.224.211.151\";s:2:\"ua\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36\";s:5:\"login\";i:1482258844;}}");
INSERT INTO `wp_usermeta` VALUES("15", "1", "wp_dashboard_quick_press_last_post_id", "524");
INSERT INTO `wp_usermeta` VALUES("16", "1", "show_welcome_panel", "0");
INSERT INTO `wp_usermeta` VALUES("17", "1", "closedpostboxes_dashboard", "a:0:{}");
INSERT INTO `wp_usermeta` VALUES("18", "1", "metaboxhidden_dashboard", "a:0:{}");
INSERT INTO `wp_usermeta` VALUES("19", "1", "wp_user-settings", "mfold=o&libraryContent=browse&editor=tinymce&hidetb=1&wplink=1&urlbutton=none");
INSERT INTO `wp_usermeta` VALUES("20", "1", "wp_user-settings-time", "1458457595");
INSERT INTO `wp_usermeta` VALUES("22", "1", "wporg_favorites", "");
INSERT INTO `wp_usermeta` VALUES("23", "1", "managenav-menuscolumnshidden", "a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}");
INSERT INTO `wp_usermeta` VALUES("24", "1", "metaboxhidden_nav-menus", "a:5:{i:0;s:21:\"add-post-type-project\";i:1;s:12:\"add-post_tag\";i:2;s:15:\"add-post_format\";i:3;s:20:\"add-project_category\";i:4;s:15:\"add-project_tag\";}");
INSERT INTO `wp_usermeta` VALUES("25", "1", "frm_ignore_tour", "1");
INSERT INTO `wp_usermeta` VALUES("26", "1", "nav_menu_recently_edited", "3");
INSERT INTO `wp_usermeta` VALUES("27", "1", "wpseo_ignore_tour", "1");
INSERT INTO `wp_usermeta` VALUES("28", "1", "closedpostboxes_page", "a:3:{i:0;s:10:\"wpseo_meta\";i:1;s:19:\"et_monarch_settings\";i:2;s:24:\"et_monarch_sharing_stats\";}");
INSERT INTO `wp_usermeta` VALUES("29", "1", "metaboxhidden_page", "a:5:{i:0;s:12:\"revisionsdiv\";i:1;s:16:\"commentstatusdiv\";i:2;s:11:\"commentsdiv\";i:3;s:7:\"slugdiv\";i:4;s:9:\"authordiv\";}");
INSERT INTO `wp_usermeta` VALUES("30", "1", "_yoast_wpseo_profile_updated", "1482215608");
INSERT INTO `wp_usermeta` VALUES("31", "1", "wpseo_title", "");
INSERT INTO `wp_usermeta` VALUES("32", "1", "wpseo_metadesc", "");
INSERT INTO `wp_usermeta` VALUES("33", "1", "wpseo_metakey", "");
INSERT INTO `wp_usermeta` VALUES("34", "1", "wpseo_excludeauthorsitemap", "");
INSERT INTO `wp_usermeta` VALUES("35", "1", "show_admin_bar_front", "true");
INSERT INTO `wp_usermeta` VALUES("36", "1", "googleplus", "");
INSERT INTO `wp_usermeta` VALUES("37", "1", "twitter", "");
INSERT INTO `wp_usermeta` VALUES("38", "1", "facebook", "");
INSERT INTO `wp_usermeta` VALUES("39", "1", "wp_hide_note_nsa_wpfbp_5", "1");
INSERT INTO `wp_usermeta` VALUES("40", "1", "wpseo_seen_about_version", "3.1.2");
INSERT INTO `wp_usermeta` VALUES("42", "1", "itsec_user_activity_last_seen", "1482257393");
INSERT INTO `wp_usermeta` VALUES("43", "1", "itsec-settings-view", "grid");
INSERT INTO `wp_usermeta` VALUES("41", "1", "wp_yoast_notifications", "a:2:{i:0;a:2:{s:7:\"message\";s:735:\"We\'ve noticed you\'ve been using Yoast SEO for some time now; we hope you love it! We\'d be thrilled if you could <a href=\"https://yoa.st/rate-yoast-seo\">give us a 5 stars rating on WordPress.org</a>!\n\nIf you are experiencing issues, <a href=\"https://yoa.st/bugreport\">please file a bug report</a> and we\'ll do our best to help you out.\n\nBy the way, did you know we also have a <a href=\'https://yoa.st/premium-notification\'>Premium plugin</a>? It offers advanced features, like a redirect manager and support for multiple keywords. It also comes with 24/7 personal support.\n\n<a class=\"button\" href=\"http://www.infinitymarketing.co.nz/wp-admin/?page=wpseo_dashboard&yoast_dismiss=upsell\">Please don\'t show me this notification anymore</a>\";s:7:\"options\";a:8:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:19:\"wpseo-upsell-notice\";s:5:\"nonce\";N;s:8:\"priority\";d:0.8000000000000000444089209850062616169452667236328125;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";s:14:\"manage_options\";s:16:\"capability_check\";s:3:\"all\";}}i:1;a:2:{s:7:\"message\";s:177:\"Don\'t miss your crawl errors: <a href=\"http://www.infinitymarketing.co.nz/wp-admin/admin.php?page=wpseo_search_console&tab=settings\">connect with Google Search Console here</a>.\";s:7:\"options\";a:8:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:17:\"wpseo-dismiss-gsc\";s:5:\"nonce\";N;s:8:\"priority\";d:0.5;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";s:14:\"manage_options\";s:16:\"capability_check\";s:3:\"all\";}}}");
INSERT INTO `wp_usermeta` VALUES("46", "1", "wpseo_content_analysis_disable", "");
INSERT INTO `wp_usermeta` VALUES("47", "1", "wpseo_keyword_analysis_disable", "");

/* INSERT TABLE DATA: wp_users */
INSERT INTO `wp_users` VALUES("1", "infinitymarketingnz", "$P$BaukQlh36ngrp9QsEGtFkC8hdUptZn0", "admin", "candice@infinitymarketing.co.nz", "http://www.infinitymarketing.co.nz", "2016-02-25 16:47:04", "", "0", "Candice Venter");

SET FOREIGN_KEY_CHECKS = 1; 

/* Duplicator WordPress Timestamp: 2016-12-20 18:35:04*/
/* DUPLICATOR_MYSQLDUMP_EOF */
