-- MySQL dump 10.11
--
-- Host: localhost    Database: wwwwebdx_steve07
-- ------------------------------------------------------
-- Server version	5.0.92-community-log

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

--
-- Table structure for table `wp_commentmeta`
--

DROP TABLE IF EXISTS `wp_commentmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_commentmeta` (
  `meta_id` bigint(20) unsigned NOT NULL auto_increment,
  `comment_id` bigint(20) unsigned NOT NULL default '0',
  `meta_key` varchar(255) default NULL,
  `meta_value` longtext,
  PRIMARY KEY  (`meta_id`),
  KEY `comment_id` (`comment_id`),
  KEY `meta_key` (`meta_key`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_commentmeta`
--

LOCK TABLES `wp_commentmeta` WRITE;
/*!40000 ALTER TABLE `wp_commentmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_commentmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_comments`
--

DROP TABLE IF EXISTS `wp_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_comments` (
  `comment_ID` bigint(20) unsigned NOT NULL auto_increment,
  `comment_post_ID` bigint(20) unsigned NOT NULL default '0',
  `comment_author` tinytext NOT NULL,
  `comment_author_email` varchar(100) NOT NULL default '',
  `comment_author_url` varchar(200) NOT NULL default '',
  `comment_author_IP` varchar(100) NOT NULL default '',
  `comment_date` datetime NOT NULL default '0000-00-00 00:00:00',
  `comment_date_gmt` datetime NOT NULL default '0000-00-00 00:00:00',
  `comment_content` text NOT NULL,
  `comment_karma` int(11) NOT NULL default '0',
  `comment_approved` varchar(20) NOT NULL default '1',
  `comment_agent` varchar(255) NOT NULL default '',
  `comment_type` varchar(20) NOT NULL default '',
  `comment_parent` bigint(20) unsigned NOT NULL default '0',
  `user_id` bigint(20) unsigned NOT NULL default '0',
  PRIMARY KEY  (`comment_ID`),
  KEY `comment_approved` (`comment_approved`),
  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`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_comments`
--

LOCK TABLES `wp_comments` WRITE;
/*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_links`
--

DROP TABLE IF EXISTS `wp_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_links` (
  `link_id` bigint(20) unsigned NOT NULL auto_increment,
  `link_url` varchar(255) NOT NULL default '',
  `link_name` varchar(255) NOT NULL default '',
  `link_image` varchar(255) NOT NULL default '',
  `link_target` varchar(25) NOT NULL default '',
  `link_description` varchar(255) NOT NULL default '',
  `link_visible` varchar(20) NOT NULL default 'Y',
  `link_owner` bigint(20) unsigned NOT NULL default '1',
  `link_rating` int(11) NOT NULL default '0',
  `link_updated` datetime NOT NULL default '0000-00-00 00:00:00',
  `link_rel` varchar(255) NOT NULL default '',
  `link_notes` mediumtext NOT NULL,
  `link_rss` varchar(255) NOT NULL default '',
  PRIMARY KEY  (`link_id`),
  KEY `link_visible` (`link_visible`)
) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_links`
--

LOCK TABLES `wp_links` WRITE;
/*!40000 ALTER TABLE `wp_links` DISABLE KEYS */;
INSERT INTO `wp_links` VALUES (1,'http://codex.wordpress.org/','Documentation','','','','Y',1,0,'0000-00-00 00:00:00','','',''),(2,'http://wordpress.org/news/','WordPress Blog','','','','Y',1,0,'0000-00-00 00:00:00','','','http://wordpress.org/news/feed/'),(3,'http://wordpress.org/extend/ideas/','Suggest Ideas','','','','Y',1,0,'0000-00-00 00:00:00','','',''),(4,'http://wordpress.org/support/','Support Forum','','','','Y',1,0,'0000-00-00 00:00:00','','',''),(5,'http://wordpress.org/extend/plugins/','Plugins','','','','Y',1,0,'0000-00-00 00:00:00','','',''),(6,'http://wordpress.org/extend/themes/','Themes','','','','Y',1,0,'0000-00-00 00:00:00','','',''),(7,'http://planet.wordpress.org/','WordPress Planet','','','','Y',1,0,'0000-00-00 00:00:00','','','');
/*!40000 ALTER TABLE `wp_links` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_options`
--

DROP TABLE IF EXISTS `wp_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_options` (
  `option_id` bigint(20) unsigned NOT NULL auto_increment,
  `blog_id` int(11) NOT NULL default '0',
  `option_name` varchar(64) NOT NULL default '',
  `option_value` longtext NOT NULL,
  `autoload` varchar(20) NOT NULL default 'yes',
  PRIMARY KEY  (`option_id`),
  UNIQUE KEY `option_name` (`option_name`)
) ENGINE=MyISAM AUTO_INCREMENT=3600 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_options`
--

LOCK TABLES `wp_options` WRITE;
/*!40000 ALTER TABLE `wp_options` DISABLE KEYS */;
INSERT INTO `wp_options` VALUES (1,0,'siteurl','http://www.webdesign-uk.org','yes'),(2,0,'blogname','webdesign-uk.org','yes'),(3,0,'blogdescription','Web Deign UK','yes'),(4,0,'users_can_register','0','yes'),(5,0,'admin_email','seo@webdesign-uk.org','yes'),(6,0,'start_of_week','1','yes'),(7,0,'use_balanceTags','0','yes'),(8,0,'use_smilies','1','yes'),(9,0,'require_name_email','1','yes'),(10,0,'comments_notify','1','yes'),(11,0,'posts_per_rss','10','yes'),(12,0,'rss_use_excerpt','0','yes'),(13,0,'mailserver_url','mail.example.com','yes'),(14,0,'mailserver_login','login@example.com','yes'),(15,0,'mailserver_pass','password','yes'),(16,0,'mailserver_port','110','yes'),(17,0,'default_category','1','yes'),(18,0,'default_comment_status','closed','yes'),(19,0,'default_ping_status','closed','yes'),(20,0,'default_pingback_flag','','yes'),(21,0,'default_post_edit_rows','20','yes'),(22,0,'posts_per_page','10','yes'),(23,0,'date_format','F j, Y','yes'),(24,0,'time_format','g:i a','yes'),(25,0,'links_updated_date_format','F j, Y g:i a','yes'),(26,0,'links_recently_updated_prepend','<em>','yes'),(27,0,'links_recently_updated_append','</em>','yes'),(28,0,'links_recently_updated_time','120','yes'),(29,0,'comment_moderation','','yes'),(30,0,'moderation_notify','1','yes'),(31,0,'permalink_structure','/%year%/%monthnum%/%postname%/','yes'),(32,0,'gzipcompression','0','yes'),(33,0,'hack_file','0','yes'),(34,0,'blog_charset','UTF-8','yes'),(35,0,'moderation_keys','','no'),(36,0,'active_plugins','a:4:{i:0;s:43:\"all-in-one-seo-pack/all_in_one_seo_pack.php\";i:1;s:35:\"si-contact-form/si-contact-form.php\";i:2;s:15:\"worker/init.php\";i:3;s:31:\"wp-socializer/wp-socializer.php\";}','yes'),(37,0,'home','http://www.webdesign-uk.org','yes'),(38,0,'category_base','/ecommerce','yes'),(39,0,'ping_sites','http://rpc.pingomatic.com/','yes'),(40,0,'advanced_edit','0','yes'),(41,0,'comment_max_links','2','yes'),(42,0,'gmt_offset','0','yes'),(43,0,'default_email_category','1','yes'),(44,0,'recently_edited','a:5:{i:0;s:72:\"/home/wwwwebdx/public_html/wp-content/themes/parallelus-mingle/style.css\";i:1;s:72:\"/home/wwwecomm/public_html/wp-content/themes/parallelus-mingle/style.css\";i:2;s:79:\"/home/wwwbeste/public_html/wp-content/plugins/addthis/addthis_social_widget.php\";i:3;s:72:\"/home/wwwbeste/public_html/wp-content/themes/parallelus-mingle/style.css\";i:4;s:0:\"\";}','no'),(45,0,'template','parallelus-mingle','yes'),(46,0,'stylesheet','parallelus-mingle','yes'),(47,0,'comment_whitelist','1','yes'),(48,0,'blacklist_keys','','no'),(49,0,'comment_registration','','yes'),(50,0,'rss_language','en','yes'),(51,0,'html_type','text/html','yes'),(52,0,'use_trackback','0','yes'),(53,0,'default_role','subscriber','yes'),(54,0,'db_version','17056','yes'),(55,0,'uploads_use_yearmonth_folders','1','yes'),(56,0,'upload_path','wp-content/uploads','yes'),(57,0,'blog_public','1','yes'),(58,0,'default_link_category','2','yes'),(59,0,'show_on_front','page','yes'),(60,0,'tag_base','/ecommerce','yes'),(61,0,'show_avatars','1','yes'),(62,0,'avatar_rating','G','yes'),(63,0,'upload_url_path','','yes'),(64,0,'thumbnail_size_w','150','yes'),(65,0,'thumbnail_size_h','150','yes'),(66,0,'thumbnail_crop','1','yes'),(67,0,'medium_size_w','300','yes'),(68,0,'medium_size_h','300','yes'),(69,0,'avatar_default','mystery','yes'),(70,0,'enable_app','0','yes'),(71,0,'enable_xmlrpc','0','yes'),(72,0,'large_size_w','1024','yes'),(73,0,'large_size_h','1024','yes'),(74,0,'image_default_link_type','file','yes'),(75,0,'image_default_size','','yes'),(76,0,'image_default_align','','yes'),(77,0,'close_comments_for_old_posts','','yes'),(78,0,'close_comments_days_old','14','yes'),(79,0,'thread_comments','1','yes'),(80,0,'thread_comments_depth','5','yes'),(81,0,'page_comments','','yes'),(82,0,'comments_per_page','50','yes'),(83,0,'default_comments_page','newest','yes'),(84,0,'comment_order','asc','yes'),(85,0,'sticky_posts','a:0:{}','yes'),(86,0,'widget_categories','a:3:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}i:3;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'),(87,0,'widget_text','a:8:{i:2;a:0:{}i:3;a:3:{s:5:\"title\";s:17:\"Best eCommerce UK\";s:4:\"text\";s:143:\"<img src=\"http://bestecommerce-uk.com/wp-content/uploads/2011/06/ecommerce_telephone.png\" width=\"198\" height=\"19\" alt=\"ecommerce uk telephone\">\";s:6:\"filter\";b:0;}i:6;a:3:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:3940:\"<div class=\"col-2-3\">\n<div class=\"col-1-4\">\n<div id=\"nav_menu-5\" class=\"widget scg_widget footer-left-1 widget_nav_menu\">\n<h4 class=\"widgetTitle\">Services</h4><div class=\"menu-home-pages-container\">\n<ul id=\"menu-home-pages\" class=\"menu\">\n<li id=\"menu-item-1500\" class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-1500\"><a href=\"best-e-commerce-packages\">eCommerce</a></li><li id=\"menu-item-1505\" class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-1505\"><a href=\"web-design/\">Web Design</a></li><li id=\"menu-item-1504\" class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-1504\"><a href=\"web-marketing\">Web Marketing</a></li></ul></div></div>\n\n</div><div class=\"col-1-4\"><div id=\"nav_menu-6\" class=\"widget scg_widget footer-left-2 widget_nav_menu\"><h4 class=\"widgetTitle\">Packages</h4><div class=\"menu-special-features-container\"><ul id=\"menu-special-features\" class=\"menu\"><li id=\"menu-item-1508\" class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-1508\"><a href=\"best-e-commerce-packages/ecommerce-webshop-lite\">eCommerce Lite</a></li><li id=\"menu-item-1509\" class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-1509\"><a href=\"best-e-commerce-packages/ecommerce-webshop-standard\">eCommerce Standard</a></li><li id=\"menu-item-1511\" class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-1511\"><a href=\"best-e-commerce-packages/e-commerce-webshop-pro\">eCommerce Pro</a></li><li id=\"menu-item-1506\" class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-1506\"><a href=\"web-marketing/seo-package-1\">SEO Package 1</a></li><li id=\"menu-item-1507\" class=\"menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-19 current_page_item menu-item-1507\"><a href=\"web-marketing/seo-package-2\">SEO Package 2</a></li><li id=\"menu-item-1510\" class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-1510\"><a href=\"web-marketing/seo-package-3\">SEO Package 3</a></li><li id=\"menu-item-1510\" class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-1510\"><a href=\"web-marketing/seo-package-4\">SEO Package 4</a></li></ul></div>\n\n</div></div><div class=\"col-1-4\"><div id=\"nav_menu-7\" class=\"widget scg_widget footer-left-3 widget_nav_menu\"><h4 class=\"widgetTitle\">Example Pages</h4><div class=\"menu-example-pages-container\"><ul id=\"menu-example-pages\" class=\"menu\"><li id=\"menu-item-1512\" class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-1512\"><a href=\"about-us/ecommerce-site-examples\">eCommerce examples</a></li><li id=\"menu-item-1517\" class=\"menu-item menu-item-type-custom menu-item-object-custom menu-item-1517\"><a href=\"web-design/web-design-examples\">Web Design examples</a></li></ul></div></div></div>\n\n<div class=\"col-1-4 last\"><div id=\"text-9\" class=\"widget scg_widget footer-left-4 widget_text\"><h4 class=\"widgetTitle\">HTML5 and CSS3</h4><div class=\"textwidget\"><img src=\"/themes/mingle-wp/wp-content/themes/parallelus-mingle/assets/images/content/html5-custom.png\" width=\"143\" height=\"55\" alt=\"HTML5\"><p style=\"font-size: 11px\">Tomorrow\'s web, here today.</p><p><a href=\"http://www.w3.org/TR/html5\">HTML5 Information</a></p></div></div></div></div>\n\n<div class=\"col-1-3 last\"><div id=\"text-10\" class=\"widget scg_widget footer-right-1 widget_text\"><div class=\"textwidget\"><h5>Looking for something?</h5><form method=\"get\" id=\"FooterSearch\" action=\"/themes/mingle-wp/\"><div><div style=\"float:left\"><label for=\"sFoot\" class=\"overlabel\">Search</label> <input type=\"text\" value=\"\" name=\"s\" id=\"sFoot\" style=\"width: 210px;\"></div> <button type=\"submit\" id=\"FooterSearchSubmit\" class=\"btn dark\"><span>Search</span></button></div></form><h5 style=\"margin: 20px 0 -5px;\">Experience the joy of sharing!</h5><div style=\"margin-bottom: -10px\"><ul class=\"horizontalList nav\"></div></div></div></div>\n\n[wpsr_socialbts]\";s:6:\"filter\";b:0;}i:7;a:3:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:740:\"<div id=\"text-7\" class=\"widget scg_widget footer-bottom-widget-area widget_text\"><div class=\"textwidget\"><div class=\"col-1-2\" style=\"font-size: 11px\"><ul class=\"horizontalList nav\">\n<li><a href=\"http://bestecommerce-uk.com\">Home</a></li>\n<li><a href=\"/best-e-commerce-packages/\">eCommerce</a></li>\n<li><a href=\"/web-design/\">Web Design</a></li>\n<li><a href=\"/web-marketing/\">Web Marketing</a></li>\n<li><a href=\"/blog/\">Blog</a></li>\n<li><a href=\"/faqs/\">FAQs</a></li>\n<li><a href=\"/contact-us/\">Contact</a></li></ul>\n</div><div class=\"col-1-2 last\" style=\"font-size: 11px\"><p class=\"right\"> Copyright © 2011 - <a href=\"http://bestecommerce-uk.com\">Best eCommerce UK</a> - All rights reserved. Terms and Privacy Policy</p></div></div></div>\";s:6:\"filter\";b:0;}i:8;a:3:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:187:\"<br /><br /><img src=\"http://bestecommerce-uk.com/wp-content/uploads/2011/11/advert-col-right1.png\" alt=\"ecommerce lite special offer\" title=\"advert-col-right\" width=\"223\" height=\"351\" />\";s:6:\"filter\";b:0;}i:9;a:3:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:166:\"<img src=\"http://bestecommerce-uk.com/wp-content/uploads/2011/11/webdesign-1-col-right.png\" alt=\"web design\" title=\"webdesign-1-col-right\" width=\"223\" height=\"351\" />\";s:6:\"filter\";b:0;}i:10;a:3:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:187:\"<br /><br /><img src=\"http://bestecommerce-uk.com/wp-content/uploads/2011/11/webmarketing-1-col-right.png\" alt=\"web marketing\" title=\"webmarketing-1-col-right\" width=\"223\" height=\"351\" />\";s:6:\"filter\";b:0;}s:12:\"_multiwidget\";i:1;}','yes'),(88,0,'widget_rss','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(89,0,'timezone_string','','yes'),(90,0,'embed_autourls','1','yes'),(91,0,'embed_size_w','','yes'),(92,0,'embed_size_h','600','yes'),(93,0,'page_for_posts','0','yes'),(94,0,'page_on_front','15','yes'),(95,0,'default_post_format','0','yes'),(96,0,'wp_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:62:{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:9:\"add_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:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'),(97,0,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(98,0,'widget_recent-posts','a:4:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}i:3;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}i:4;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(99,0,'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'),(100,0,'widget_archives','a:4:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}i:3;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}i:4;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(101,0,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(102,0,'sidebars_widgets','a:11:{s:19:\"wp_inactive_widgets\";a:13:{i:0;s:7:\"pages-2\";i:1;s:10:\"calendar-2\";i:2;s:7:\"links-2\";i:3;s:6:\"text-2\";i:4;s:5:\"rss-2\";i:5;s:11:\"tag_cloud-2\";i:6;s:10:\"nav_menu-2\";i:7;s:8:\"search-2\";i:8;s:14:\"recent-posts-2\";i:9;s:17:\"recent-comments-2\";i:10;s:10:\"archives-2\";i:11;s:12:\"categories-2\";i:12;s:6:\"meta-2\";}s:30:\"generated_sidebar-3nkd4qxpuack\";a:2:{i:0;s:14:\"recent-posts-3\";i:1;s:10:\"archives-3\";}s:30:\"generated_sidebar-646tcese3iko\";a:4:{i:0;s:12:\"categories-3\";i:1;s:10:\"archives-4\";i:2;s:11:\"tag_cloud-3\";i:3;s:14:\"recent-posts-4\";}s:30:\"generated_sidebar-30mob0yhf8mc\";a:1:{i:0;s:6:\"text-3\";}s:30:\"generated_sidebar-1m6o9ifkdav4\";a:1:{i:0;s:6:\"text-6\";}s:30:\"generated_sidebar-1w98knpgi3xc\";a:1:{i:0;s:6:\"text-7\";}s:30:\"generated_sidebar-5f4v58xjl8op\";a:2:{i:0;s:10:\"nav_menu-3\";i:1;s:6:\"text-8\";}s:30:\"generated_sidebar-4gj8ieu7640n\";a:2:{i:0;s:10:\"nav_menu-4\";i:1;s:6:\"text-9\";}s:30:\"generated_sidebar-4sjtgkeyrnt7\";a:2:{i:0;s:10:\"nav_menu-5\";i:1;s:7:\"text-10\";}s:30:\"generated_sidebar-32z48sz8m0u5\";a:1:{i:0;s:10:\"nav_menu-6\";}s:13:\"array_version\";i:3;}','yes'),(106,0,'widget_pages','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(107,0,'widget_calendar','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(108,0,'widget_links','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(109,0,'widget_tag_cloud','a:3:{i:2;a:0:{}i:3;a:2:{s:5:\"title\";s:0:\"\";s:8:\"taxonomy\";s:8:\"post_tag\";}s:12:\"_multiwidget\";i:1;}','yes'),(110,0,'widget_nav_menu','a:6:{i:2;a:0:{}i:3;a:2:{s:5:\"title\";s:0:\"\";s:8:\"nav_menu\";i:5;}i:4;a:2:{s:5:\"title\";s:0:\"\";s:8:\"nav_menu\";i:14;}i:5;a:2:{s:5:\"title\";s:0:\"\";s:8:\"nav_menu\";i:15;}i:6;a:2:{s:5:\"title\";s:0:\"\";s:8:\"nav_menu\";i:16;}s:12:\"_multiwidget\";i:1;}','yes'),(191,0,'current_theme','Mingle','yes'),(145,0,'cron','a:5:{i:1324288502;a:1:{s:16:\"mwp_backup_tasks\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"tenminutes\";s:4:\"args\";a:0:{}s:8:\"interval\";i:600;}}}i:1324288861;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:1324298102;a:1:{s:17:\"mwp_notifications\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1324332101;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;}}}s:7:\"version\";i:2;}','yes'),(146,0,'_transient_doing_cron','1324288058','yes'),(147,0,'_site_transient_update_core','O:8:\"stdClass\":3:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":7:{s:8:\"response\";s:7:\"upgrade\";s:3:\"url\";s:30:\"http://wordpress.org/download/\";s:7:\"package\";s:38:\"http://wordpress.org/wordpress-3.3.zip\";s:7:\"current\";s:3:\"3.3\";s:6:\"locale\";s:5:\"en_US\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";}}s:12:\"last_checked\";i:1324246976;s:15:\"version_checked\";s:3:\"3.1\";}','yes'),(3598,0,'_site_transient_timeout_theme_roots','1324254176','yes'),(3599,0,'_site_transient_theme_roots','a:3:{s:17:\"parallelus-mingle\";s:7:\"/themes\";s:12:\"twentyeleven\";s:7:\"/themes\";s:9:\"twentyten\";s:7:\"/themes\";}','yes'),(151,0,'_site_transient_update_themes','O:8:\"stdClass\":3:{s:12:\"last_checked\";i:1324204659;s:7:\"checked\";a:3:{s:17:\"parallelus-mingle\";s:5:\"1.3.1\";s:12:\"twentyeleven\";s:3:\"1.2\";s:9:\"twentyten\";s:3:\"1.2\";}s:8:\"response\";a:2:{s:12:\"twentyeleven\";a:3:{s:11:\"new_version\";s:3:\"1.3\";s:3:\"url\";s:47:\"http://wordpress.org/extend/themes/twentyeleven\";s:7:\"package\";s:64:\"http://wordpress.org/extend/themes/download/twentyeleven.1.3.zip\";}s:9:\"twentyten\";a:3:{s:11:\"new_version\";s:3:\"1.3\";s:3:\"url\";s:44:\"http://wordpress.org/extend/themes/twentyten\";s:7:\"package\";s:61:\"http://wordpress.org/extend/themes/download/twentyten.1.3.zip\";}}}','yes'),(152,0,'dashboard_widget_options','a:4:{s:25:\"dashboard_recent_comments\";a:1:{s:5:\"items\";i:5;}s:24:\"dashboard_incoming_links\";a:5:{s:4:\"home\";s:27:\"http://www.webdesign-uk.org\";s:4:\"link\";s:103:\"http://blogsearch.google.com/blogsearch?scoring=d&partner=wordpress&q=link:http://www.webdesign-uk.org/\";s:3:\"url\";s:136:\"http://blogsearch.google.com/blogsearch_feeds?scoring=d&ie=utf-8&num=10&output=rss&partner=wordpress&q=link:http://bestecommerce-uk.com/\";s:5:\"items\";i:10;s:9:\"show_date\";b:0;}s:17:\"dashboard_primary\";a:7:{s:4:\"link\";s:26:\"http://wordpress.org/news/\";s:3:\"url\";s:31:\"http://wordpress.org/news/feed/\";s:5:\"title\";s:14:\"WordPress Blog\";s:5:\"items\";i:2;s:12:\"show_summary\";i:1;s:11:\"show_author\";i:0;s:9:\"show_date\";i:1;}s:19:\"dashboard_secondary\";a:7:{s:4:\"link\";s:28:\"http://planet.wordpress.org/\";s:3:\"url\";s:33:\"http://planet.wordpress.org/feed/\";s:5:\"title\";s:20:\"Other WordPress News\";s:5:\"items\";i:5;s:12:\"show_summary\";i:0;s:11:\"show_author\";i:0;s:9:\"show_date\";i:0;}}','yes'),(157,0,'can_compress_scripts','1','yes'),(3558,0,'_transient_timeout_feed_mod_57bc725ad6568758915363af670fd8bc','1324070672','no'),(3559,0,'_transient_feed_mod_57bc725ad6568758915363af670fd8bc','1324027472','no'),(3549,0,'_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1324070671','no'),(3550,0,'_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1324027471','no'),(3555,0,'_transient_timeout_feed_867bd5c64f85878d03a060509cd2f92c','1324070672','no'),(3556,0,'_transient_timeout_feed_57bc725ad6568758915363af670fd8bc','1324070672','no'),(3562,0,'_transient_feed_mod_867bd5c64f85878d03a060509cd2f92c','1324027472','no'),(3557,0,'_transient_feed_57bc725ad6568758915363af670fd8bc','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:72:\"\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:33:\"WordPress Plugins » View: Newest\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"http://wordpress.org/extend/plugins/browse/new/\";s: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:33:\"WordPress Plugins » View: Newest\";s: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:\"Fri, 16 Dec 2011 09:15: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: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:15:{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:32:\"jakob42 on \"SWTOR Server Status\"\";s:7:\"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:\"http://wordpress.org/extend/plugins/swtor-server-status/#post-32993\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 15 Dec 2011 17:20:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"32993@http://wordpress.org/extend/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:99:\"Shows the population, queue size and type (PvP, PvE, RP) of a shard (server) from the MMORPG SWTOR.\";s: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:\"jakob42\";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:33:\"igoseonet on \"Sitemap Navigation\"\";s:7:\"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:\"http://wordpress.org/extend/plugins/sitemap-navigation/#post-32929\";s: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, 14 Dec 2011 06:55: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:42:\"32929@http://wordpress.org/extend/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:\"Sitemap Navigation plugin can generate simple Archives/Sitemap based on your website posts and pages. This is not another XML sitemap plugin, but rath\";s: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:\"igoseonet\";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:43:\"igoseonet on \"Nofollow Home Internal Links\"\";s:7:\"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:\"http://wordpress.org/extend/plugins/nofollow-home-internal-links/#post-32928\";s: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, 14 Dec 2011 06:39:00 +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:42:\"32928@http://wordpress.org/extend/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:\"This plugin will add the &#34;nofollow&#34; rel attribute to unimportant internal link in the homepage ,including: read more, tag cloud links,post 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:9:\"igoseonet\";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:27:\"gn_themes on \"Power slider\"\";s:7:\"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:\"http://wordpress.org/extend/plugins/power-slider/#post-32968\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 15 Dec 2011 04:00: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"32968@http://wordpress.org/extend/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:47:\"Content slider by posts from specified category\";s: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:\"gn_themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}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:19:\"trizzi on \"MoShare\"\";s:7:\"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:\"http://wordpress.org/extend/plugins/moshare/#post-32962\";s: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, 14 Dec 2011 23:49: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"32962@http://wordpress.org/extend/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:99:\"The MoShare plugin enables users to share your content via MMS using the Mogreet Messaging Platform\";s: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:6:\"trizzi\";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:41:\"ChrisHurst on \"WP Developer Plugin Stats\"\";s:7:\"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:73:\"http://wordpress.org/extend/plugins/wp-developer-plugin-stats/#post-32998\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 15 Dec 2011 19:57: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:42:\"32998@http://wordpress.org/extend/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:310:\"<p>Plugin creates widgets to display a WordPress Developers Top Plugin Stats on their website.<br />\nIncludes both a Public and Admin widget.<br />\nFeatures a simple caching feature to reduce requests and increase plugin speed and efficiency.<br />\nWidgets have links to the plugins page on WordPress.org.\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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"ChrisHurst\";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:31:\"JorgenScott on \"WP Resolutions\"\";s:7:\"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:\"http://wordpress.org/extend/plugins/wp-resolutions/#post-32838\";s: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, 11 Dec 2011 05:52: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:42:\"32838@http://wordpress.org/extend/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:\"Resolutions will make sure that image files are never bigger than what a device can use.\";s: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:\"JorgenScott\";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:26:\"d3wp on \"Christmas Ligths\"\";s:7:\"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:\"http://wordpress.org/extend/plugins/christmas-lights/#post-32999\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 15 Dec 2011 20:29:02 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"32999@http://wordpress.org/extend/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:87:\"Add nice looking animated Christmas lights to the top of your WP site and enjoy winter.\";s: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:\"d3wp\";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:55:\"Michael Adams (mdawaffe) on \"wp_rand() for Entropy PHP\"\";s:7:\"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:\"http://wordpress.org/extend/plugins/wp-rand-for-entropy-php/#post-33000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 15 Dec 2011 20:50: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:42:\"33000@http://wordpress.org/extend/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:\"The Entropy builds of PHP can truncate ints instead of overflowing as floats. That misbehavior breaks wp_rand(), wp_generate_password(), and 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:24:\"Michael Adams (mdawaffe)\";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:30:\"Will Anderson on \"WP SendGrid\"\";s:7:\"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:\"http://wordpress.org/extend/plugins/wp-sendgrid/#post-32986\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 15 Dec 2011 15:12: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:42:\"32986@http://wordpress.org/extend/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:69:\"Extends the wp_mail() function to use the SendGrid API to send emails\";s: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:\"Will 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: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:47:\"complex_ntrsctn on \"NTRSCTN Content Aggregator\"\";s:7:\"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:\"http://wordpress.org/extend/plugins/ntrsctn-content-aggregator/#post-32573\";s: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 2011 20:08: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:42:\"32573@http://wordpress.org/extend/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:95:\"Required plugin to participate in the NTRSCTN Mobile / Social platform, powered by Treemo Labs.\";s: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:\"complex_ntrsctn\";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:54:\"Vladimir Prelovac on \"What should we write about next\"\";s:7:\"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:79:\"http://wordpress.org/extend/plugins/what-should-we-write-about-next/#post-32990\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 15 Dec 2011 15:45: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"32990@http://wordpress.org/extend/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:\"What should we write about next allows your users to quickly leave feedback at the end of your posts.\";s: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:\"Vladimir Prelovac\";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:31:\"dkukral on \"Extended User Info\"\";s:7:\"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:\"http://wordpress.org/extend/plugins/extended-user-info/#post-31800\";s: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 2011 14:47: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"31800@http://wordpress.org/extend/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:57:\"Plugin for WordPress that adds fields to the user profile\";s: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:\"dkukral\";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:39:\"Eli on \"ELI\'s Custom SQL Reports Admin\"\";s:7:\"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:61:\"http://wordpress.org/extend/plugins/elisqlreports/#post-32924\";s: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, 14 Dec 2011 00:18: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"32924@http://wordpress.org/extend/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:70:\"This plugin allows you to creat reports simply by entering in the SQL.\";s: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:3:\"Eli\";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:20:\"mmoo on \"FORUM-MMOO\"\";s:7:\"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:\"http://wordpress.org/extend/plugins/forum-mmoo/#post-32953\";s: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, 14 Dec 2011 18:55: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"32953@http://wordpress.org/extend/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:102:\"???????????????????? Insert a simple code and you get a forum!\";s: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:\"mmoo\";s: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:48:\"http://wordpress.org/extend/plugins/rss/view/new\";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\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Fri, 16 Dec 2011 09:24:28 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:19:\"2011-12-15 17:20:08\";s:14:\"content-length\";s:4:\"7990\";s:4:\"x-nc\";s:11:\"HIT luv 138\";}s:5:\"build\";s:14:\"20090627192103\";}','no'),(3545,0,'_transient_timeout_feed_mod_b0916a3e9aaf473633d3ed3ce2a3a504','1324070670','no'),(3242,0,'_worker_public_key','LS0tLS1CRUdJTiBQVUJMSUMgS0VZLS0tLS0KTUlHZk1BMEdDU3FHU0liM0RRRUJBUVVBQTRHTkFEQ0JpUUtCZ1FEYzVHZDF6VjI2Tlo0ZzV5Wm44UGF1OHNmMApqZ1JaNXZIMU43Z1VtVHVSV2JXQ2FlMEVIRGFMMFphSkZsc1dkMmVxQ2duUVlNUGs0NGp0MVUxNUllcmx5V0pDCmlwbzZxT2RHdnp1YkwyT1pGM3A1TWh3c0lLY04wR3JBNjEvQmRsS1NZQUFPY21OQzZiNWFmc1FIdkg0SHdIY0sKdGFpSjh6cXhpZFBKOGV6bG13SURBUUFCCi0tLS0tRU5EIFBVQkxJQyBLRVktLS0tLQo=','yes'),(1167,0,'user_hit_count','a:14:{s:10:\"2011-12-06\";i:241;s:10:\"2011-12-07\";i:198;s:10:\"2011-12-08\";i:134;s:10:\"2011-12-09\";i:328;i:0;i:0;s:10:\"2011-12-11\";i:59;s:10:\"2011-12-12\";i:150;s:10:\"2011-12-13\";i:85;s:10:\"2011-12-14\";i:313;s:10:\"2011-12-15\";i:398;s:10:\"2011-12-16\";i:232;s:10:\"2011-12-17\";i:20;s:10:\"2011-12-18\";i:53;s:10:\"2011-12-19\";i:41;}','yes'),(2426,0,'lacands-html-widget-margin-right','0','yes'),(3560,0,'_transient_feed_867bd5c64f85878d03a060509cd2f92c','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:50:\"WPTavern: Master List Of Issues With WordPress 3.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:31:\"http://www.wptavern.com/?p=5994\";s:7:\"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:\"http://feedproxy.google.com/~r/WordpressTavern/~3/YN67KAI2Lb0/master-list-of-issues-with-wordpress-3-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:1235:\"<p>WordPress community member Ipstenu has started a <a href=\"http://wordpress.org/support/topic/troubleshooting-wordpress-33-master-list\">master list within the WordPress.org support forum</a> highlighting some of the most frequently asked questions as well as listing numerous issues that folks have reported along with solutions. If you are having trouble with WordPress 3.3, please read through the posts within this forum thread before creating a new thread. There is a good chance that your support query has already been answered with a working solution.</p>\n<p>Related posts:<ol>\n<li><a href=\"http://www.wptavern.com/improving-the-wordpress-support-forum\" rel=\"bookmark\" title=\"Improving The WordPress Support Forum\">Improving The WordPress Support Forum</a></li>\n<li><a href=\"http://www.wptavern.com/free-support-woo-menus-abcs-of-wordpress\" rel=\"bookmark\" title=\"Free Support, Woo Menus, ABCs Of WordPress\">Free Support, Woo Menus, ABCs Of WordPress</a></li>\n<li><a href=\"http://www.wptavern.com/is-wordpress-porn-a-good-idea\" rel=\"bookmark\" title=\"Is WordPress Porn A Good Idea?\">Is WordPress Porn A Good Idea?</a></li>\n</ol></p><img src=\"http://feeds.feedburner.com/~r/WordpressTavern/~4/YN67KAI2Lb0\" height=\"1\" width=\"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, 15 Dec 2011 18:00:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Jeffro\";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:35:\"WPTavern: BuddyPress 1.5.2 Released\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://www.wptavern.com/?p=5991\";s:7:\"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:87:\"http://feedproxy.google.com/~r/WordpressTavern/~3/cKXWtLKsuDM/buddypress-1-5-2-released\";s: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:1128:\"<p>Shortly after the release of WordPress 3.3, <a href=\"http://buddypress.org/2011/12/buddypress-1-5-2/\">BuddyPress 1.5.2 was released</a> and is simply a compatibility release intended to fix some cosmetic issues with the new WP 3.3 toolbar. If you experience any issues with WordPress 3.3 and BuddyPress 1.5.2, you should <a href=\"http://buddypress.org/community/groups/miscellaneous/forum/topic/important-some-notes-about-wordpress-3-3-and-buddypress/\">participate in the following support thread</a> on the official BuddyPress forum.</p>\n<p>Related posts:<ol>\n<li><a href=\"http://www.wptavern.com/buddypress-1-2-released\" rel=\"bookmark\" title=\"BuddyPress 1.2 Released\">BuddyPress 1.2 Released</a></li>\n<li><a href=\"http://www.wptavern.com/buddypress-1-2-2-released\" rel=\"bookmark\" title=\"BuddyPress 1.2.2 Released\">BuddyPress 1.2.2 Released</a></li>\n<li><a href=\"http://www.wptavern.com/buddypress-dev-chat-for-10-06-10\" rel=\"bookmark\" title=\"BuddyPress Dev Chat For 10-06-10\">BuddyPress Dev Chat For 10-06-10</a></li>\n</ol></p><img src=\"http://feeds.feedburner.com/~r/WordpressTavern/~4/cKXWtLKsuDM\" height=\"1\" width=\"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, 15 Dec 2011 14:00:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Jeffro\";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:59:\"Weblog Tools Collection: WordPress Theme Releases for 12/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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://weblogtoolscollection.com/?p=10829\";s:7:\"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:73:\"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/8t-MBIQN3CI/\";s: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:1987:\"<p><img class=\"alignnone size-full wp-image-10830\" title=\"blackwithorange\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2011/12/blackwithorange.jpg\" alt=\"\" width=\"150\" height=\"113\" /></p>\n<p><a href=\"http://wordpress.org/extend/themes/black-with-orange\"><strong>Black with Orange</strong></a> is a detail oriented theme with modern and decent design.</p>\n<p>The following themes are not new, but have been updated for <a href=\"http://wordpress.org/\">WordPress</a> 3.3.</p>\n<p><img class=\"alignnone size-full wp-image-10833\" title=\"droidpress\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2011/12/droidpress.jpg\" alt=\"\" width=\"150\" height=\"113\" /></p>\n<p><a href=\"http://wordpress.org/extend/themes/droidpress\"><strong>DroidPress</strong></a> is inspired by the popular Android mobile phone operating system by Google.</p>\n<p><img class=\"alignnone size-full wp-image-10831\" title=\"suffusion\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2011/12/suffusion.jpg\" alt=\"\" width=\"150\" height=\"77\" /></p>\n<p><a href=\"http://wordpress.org/extend/themes/suffusion\"><strong>Suffusion</strong></a> is an elegant, versatile and browser-safe theme with a power-packed set of options.</p>\n<p><img class=\"alignnone size-full wp-image-10832\" title=\"twentyeleven\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2011/12/twentyeleven.jpg\" alt=\"\" width=\"150\" height=\"113\" /></p>\n<p><a href=\"http://wordpress.org/extend/themes/twentyeleven\"><strong>Twenty Eleven</strong></a> is sophisticated, lightweight, and adaptable.</p>\n<p><img class=\"alignnone size-full wp-image-10834\" title=\"twentyten\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2011/12/twentyten.jpg\" alt=\"\" width=\"150\" height=\"113\" /></p>\n<p><a href=\"http://wordpress.org/extend/themes/twentyten\"><strong>Twenty Ten</strong></a> is stylish, customizable, simple, and readable.</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/8t-MBIQN3CI\" height=\"1\" width=\"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, 15 Dec 2011 13:00: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:5:\"James\";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:70:\"WPTavern: Lorelle VanFossen To Teach 4 Credit WordPress College Course\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://www.wptavern.com/?p=5988\";s:7:\"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:122:\"http://feedproxy.google.com/~r/WordpressTavern/~3/6yjaD_CkmdE/lorelle-vanfossen-to-teach-4-credit-wordpress-college-course\";s: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:2290:\"<p>Huge congratulations goes out to Lorelle VanFossen for <a href=\"http://lorelle.wordpress.com/2011/12/05/wordpress-credit-course-at-clark-college-in-vancouver-washington/\">being selected to teach at Clark College in Vancouver, Washington</a>. Lorelle will be teaching an <em>Introduction To WordPress</em> course that will reward students with four college credits. While WordPress in the classroom has become more common across the world, very few are actually awarding students college credits. Here is the information regarding the course:</p>\n<blockquote><p>Beginning January 10 through March 20 on Tuesdays and Thursdays, this 10 week class (20 hours) is from 6-8PM. Registration is through <a href=\"http://clark.edu/\">Clark College</a>. Contact the Clark College Computer Technology Office (CTEC), <a href=\"mailto:rmcallister@clark.edu\">Reesa McAllister</a> at 360-992-2106 for details. You will need the following when you call: Item Number 4538 and Course ID CTEC 280. </p></blockquote>\n<p>I&#8217;ve been lucky enough to meet Lorelle in person a few times within my lifespan and the one consistent quality that she has is her enthusiastic ability to teach. She loves teaching people about WordPress and I think she loves seeing that glow in peoples eyes when they <em>Get It</em>. Again, congrats Lorelle. Be sure to tell us about your experience with teaching WordPress at the college level. </p>\n<p>Related posts:<ol>\n<li><a href=\"http://www.wptavern.com/opencamp-lorelle-vanfossen-plugins-that-blow-your-mind\" rel=\"bookmark\" title=\"OpenCamp &#8211; Lorelle VanFossen &#8211; Plugins That Blow Your Mind\">OpenCamp &#8211; Lorelle VanFossen &#8211; Plugins That Blow Your Mind</a></li>\n<li><a href=\"http://www.wptavern.com/msu-extended-university-offers-advanced-wordpress-course\" rel=\"bookmark\" title=\"MSU Extended University Offers Advanced WordPress Course\">MSU Extended University Offers Advanced WordPress Course</a></li>\n<li><a href=\"http://www.wptavern.com/which-opencamp-wordpress-presentation-do-you-want-to-hear\" rel=\"bookmark\" title=\"Which OpenCamp WordPress Presentation Do You Want To Hear?\">Which OpenCamp WordPress Presentation Do You Want To Hear?</a></li>\n</ol></p><img src=\"http://feeds.feedburner.com/~r/WordpressTavern/~4/6yjaD_CkmdE\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 14 Dec 2011 18:00: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Jeffro\";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:64:\"WPTavern: Small Potato /Tung Do Gets Second Chance With DevPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://www.wptavern.com/?p=5983\";s:7:\"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:115:\"http://feedproxy.google.com/~r/WordpressTavern/~3/E2012BghDeU/small-potato-tung-do-gets-second-chance-with-devpress\";s: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:3006:\"<p><a href=\"http://www.wptavern.com/wp-content/uploads/2011/11/devpresslogo.png\" rel=\"thumbnail\"><img src=\"http://www.wptavern.com/wp-content/uploads/2011/11/devpresslogo.png\" alt=\"devpress logo\" title=\"devpresslogo\" width=\"218\" height=\"51\" class=\"alignright size-full wp-image-5778\" /></a>DevPress, a team of highly skilled WordPress developers <a href=\"http://devpress.com/blog/a-step-back-for-the-team-a-step-forward-for-devpress/\">has announced</a> that Tung Do has become to the sole owner of the business. The quote being published all over the place by Tung Do sums up the situation the best:</p>\n<blockquote><p>After months of inconsistent collaboration, DevPress is left with one remaining co-founder, me — Tung Do. Justin Tadlock, Patrick Daly, and Ptah Dunbar are going to pursue personal projects. </p></blockquote>\n<p>No one man to lead the charge with all individuals having an equal share and no personal responsibility for anything were some of the causes listed for this major change in direction. </p>\n<p>It&#8217;s too bad really. With the talent that DevPress possessed, (Tung Do, Ptah Dunbar, Justin Tadlock, Patrick Daly) they could have turned so many of their cool ideas into awesome parts of the business. However, all of this translates into a second chance for Tung Do as he now holds the reigns of DevPress. I remember when Small Potato (Tung Do) was one of the first to <a href=\"http://www.wpdesigner.com/2008/01/24/launching-themes-club-happy-5-year/\">launch a WordPress theme club</a> shortly before the sale of WPDesigner.com. According to him, the DevPress club will continue and not surprisingly, will focus on just themes for the time being. This shouldn&#8217;t bother users in the least considering the designing talent that Tung has. Out of all the WordPress designs/themes that I&#8217;ve seen in the past few years, Tung Do still has that something extra that makes his designs/themes stand above the rest. </p>\n<p>I&#8217;m personally wishing you the best of luck Tung Do and hope you take serious advantage of this second chance. </p>\n<p>Justin Tadlock has <a href=\"http://justintadlock.com/archives/2011/12/13/whats-going-on-with-devpress\">since published his thoughts</a> on his personal site. </p>\n<p>Related posts:<ol>\n<li><a href=\"http://www.wptavern.com/devpress-plans-to-launch-plugintheme-review-service\" rel=\"bookmark\" title=\"DevPress Plans To Launch Plugin/Theme Review Service\">DevPress Plans To Launch Plugin/Theme Review Service</a></li>\n<li><a href=\"http://www.wptavern.com/small-potato-emerges-from-the-darkness\" rel=\"bookmark\" title=\"Small Potato Emerges From The Darkness\">Small Potato Emerges From The Darkness</a></li>\n<li><a href=\"http://www.wptavern.com/want-small-potato-to-create-a-new-design-for-you\" rel=\"bookmark\" title=\"Want Small Potato To Create A New Design For You?\">Want Small Potato To Create A New Design For You?</a></li>\n</ol></p><img src=\"http://feeds.feedburner.com/~r/WordpressTavern/~4/E2012BghDeU\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 14 Dec 2011 14:00:02 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Jeffro\";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:67:\"Weblog Tools Collection: WordPress 3.3 Plugin Compatibility Updates\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://weblogtoolscollection.com/?p=10824\";s:7:\"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:73:\"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/Lw3ok5T9Zu0/\";s: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:2204:\"<p><a href=\"http://wordpress.org/\">WordPress</a> 3.3 <a href=\"http://weblogtoolscollection.com/archives/2011/12/12/wordpress-3-3-released/\">was released</a> just two days ago, and several plugins have been updated since then to correct compatibility issues with the latest WordPress release. Considering this, today is probably a good day to check for plugin updates on your WordPress installation, even if you haven&#8217;t upgraded to WordPress 3.3 yet.</p>\n<p>There are too many to list overall, but here are some of the more popular plugins which have received compatibility updates for WordPress 3.3 since its release:</p>\n<p><a href=\"http://wordpress.org/extend/plugins/all-in-one-seo-pack/\"><strong>All in One SEO Pack</strong></a> &#8211; Support for WordPress 3.3.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/buddypress/\"><strong>BuddyPress</strong></a> &#8211; Intended to fix some cosmetic issues with the new WordPress 3.3 toolbar, and is a recommended update for all existing BuddyPress 1.5/1.5.1 and WordPress 3.3 installations.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/login-logo/\"><strong>Login Logo</strong></a> &#8211; Support for WordPress 3.3.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/postie/\"><strong>Postie</strong></a> &#8211; Removed get_user_by function to make compatible with wp 3.3 &#8211; now requires 2.8+.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/si-captcha-for-wordpress/\"><strong>SI CAPTCHA Anti-Spam</strong></a> &#8211; WP 3.3 compatibility fix as wp_enqueue_script was called incorrectly.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/wordpress-seo/\"><strong>WordPress SEO</strong></a> &#8211; Fixed a notice in 3.3 which was caused by wp_reset_query being called too early.</p>\n<p>Not necessarily a plugin, but a fully featured theme, <a href=\"http://wordpress.org/extend/themes/suffusion\"><strong>Suffusion</strong></a> &#8211; Added support for a good number of WP 3.3 features.</p>\n<p>As mentioned, these are just the most popular of the updated plugins, so check your plugins for available updates today.</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/Lw3ok5T9Zu0\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 14 Dec 2011 13:00: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:5:\"James\";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:60:\"Weblog Tools Collection: WordPress Plugin Releases for 12/13\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://weblogtoolscollection.com/?p=10821\";s:7:\"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:73:\"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/S6sieZO-cUU/\";s: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:1509:\"<h3>New plugins</h3>\n<p><a href=\"http://wordpress.org/extend/plugins/admin-bar-backend-search/\"><strong>Admin Bar Backend Search</strong></a> provides various search forms in the Dashboard.</p>\n<p><a href=\"http://tempspace.net/plugins/?page_id=74\"><strong>WP-ImageZoom</strong></a> enables you to view details of large images.</p>\n<h3>Updated plugins</h3>\n<p><a href=\"http://www.fastsecurecontactform.com/\"><strong>Fast Secure Contact Form</strong></a> lets your visitors send you a quick e-mail message and blocks all common spammer tactics. Additionally, the plugin has a multi-form feature, optional extra fields, and an option to redirect visitors to any URL after the message is sent.</p>\n<p><a href=\"http://www.foxy-press.com/\"><strong>FoxyPress</strong></a> is a custom plugin made to integrate FoxyCart e-commerce functionality into your WordPress website.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/scripts-n-styles/\"><strong>Scripts n Styles</strong></a> allows Admin users the ability to add custom CSS (at the bottom of the head tag) and JavaScript (at the bottom of the body tag) directly into individual Post, Pages or any other registered custom post types.</p>\n<p><a href=\"http://yoast.com/wordpress/seo/\"><strong>WordPress SEO</strong></a> is an all in one solution to search engine optimize your WordPress blog: SEO titles, meta descriptions, XML sitemaps and much more.</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/S6sieZO-cUU\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 13 Dec 2011 14:00: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:5:\"James\";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:50:\"WPTavern: Merry Christmas: WordPress 3.3. Released\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://www.wptavern.com/?p=5977\";s:7:\"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:\"http://feedproxy.google.com/~r/WordpressTavern/~3/I0AIguisHyg/merry-christmas-wordpress-3-3-released\";s: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:1446:\"<p>The time has finally arrived. <a href=\"http://wordpress.org/news/2011/12/sonny/\">WordPress 3.3. was released early this morning</a> to the masses. Codenamed &#8216;Sonny&#8217; which at a glance looks like sorry, 3.3 has a couple of great user oriented features with a ton of polish. While my WordPress upgrade experience went smoothly, I was immediately impressed with the welcome screen which in my opinion, is better at explaining new features in WordPress than most of the official release posts on the WordPress.org blog, minus the ones with published videos. Kudos goes out to all involved for the welcome screen as well as every other improvement that made it into WordPress 3.3. Let me know in the comments what you think of the new user experience polish that made it into this version.</p>\n<p>Related posts:<ol>\n<li><a href=\"http://www.wptavern.com/wordpress-2-9-2-released-security-fix\" rel=\"bookmark\" title=\"WordPress 2.9.2 Released &#8211; Security Fix\">WordPress 2.9.2 Released &#8211; Security Fix</a></li>\n<li><a href=\"http://www.wptavern.com/wordpress-271-beta-released\" rel=\"bookmark\" title=\"WordPress 2.7.1 Beta Released\">WordPress 2.7.1 Beta Released</a></li>\n<li><a href=\"http://www.wptavern.com/wordpress-271-rc-1-released\" rel=\"bookmark\" title=\"WordPress 2.7.1 RC 1 Released\">WordPress 2.7.1 RC 1 Released</a></li>\n</ol></p><img src=\"http://feeds.feedburner.com/~r/WordpressTavern/~4/I0AIguisHyg\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 13 Dec 2011 14:00: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:6:\"Jeffro\";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:47:\"Weblog Tools Collection: WordPress 3.3 Released\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://weblogtoolscollection.com/?p=10817\";s:7:\"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:73:\"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/OQNyepz_bgU/\";s: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:1449:\"<p><a href=\"http://wordpress.org/\">WordPress</a> 3.3 <a href=\"http://wordpress.org/news/2011/12/sonny/\">is finally here</a> and ready to be <a href=\"http://wordpress.org/download/\">downloaded</a> or upgraded to from the Updates section of your blog&#8217;s Dashboard.</p>\n<p>Of <a href=\"http://codex.wordpress.org/Version_3.3\">all the changes</a>, the most noticeable are the simplified toolbar (formerly known as the admin bar), the new drag and drop media uploader with support for multiple files, hover-powered Dashboard menus (no more wasted clicks), better help menus, a new <a href=\"http://www.tumblr.com/\">Tumblr</a> importer, and a complete introductory welcome page for new users.</p>\n<p>For developers, there&#8217;s a new version of jQuery, better help screen hooks, and <a href=\"http://codex.wordpress.org/Function_Reference/wp_editor\">a new editor API</a>.</p>\n<p>If you&#8217;re running into trouble after upgrading to WordPress 3.3, there is <a href=\"http://wordpress.org/support/topic/troubleshooting-wordpress-33-master-list\">a master list of known issues and FAQs</a> on the forums which will be updated regularly, and the kind volunteers in <a href=\"http://wordpress.org/support/\">the support forums</a> will be more than happy to help you with any of your troubles.</p>\n<div id=\"v-I7NAw9Zk-1\" class=\"video-player\"></div>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/OQNyepz_bgU\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 13 Dec 2011 02:15: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"James\";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:35:\"Dev Blog: WordPress 3.3 “Sonny”\";s:7:\"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:\"http://wordpress.org/news/?p=2135\";s:7:\"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:\"http://wordpress.org/news/2011/12/sonny/\";s: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:16680:\"<p>The latest and greatest version of the WordPress software &#8212; 3.3, named &#8220;Sonny&#8221; in honor of the great jazz saxophonist Sonny Stitt &#8212; is <a href=\"http://wordpress.org/download/\">immediately available for download</a> or update inside your WordPress dashboard.</p>\n<p>WordPress has had over 65 million downloads since version 3.0 was released, and in this third major iteration we&#8217;ve added significant polish around the new user experience, navigation, uploading, and imports. Check out this short video that summarizes the things we think you&#8217;ll find are the cat&#8217;s pajamas:</p>\n<div id=\"v-I7NAw9Zk\" class=\"video-player\"></div>\n<h3>For Users</h3>\n<p>Experienced users will appreciate the new <strong>drag-and-drop uploader</strong>, hover menus for the navigation, the new toolbar, improved co-editing support, and the new Tumblr importer. We&#8217;ve also been thinking a ton about what the WordPress experience is like for people completely new to the software. Version 3.3 has significant improvements there with<strong> pointer tips</strong> for new features included in each update, a friendly welcome message for first-time users, and revamped help tabs throughout the interface. Finally we&#8217;ve improved the dashboard experience on the iPad and other tablets with better touch support.</p>\n<h3>For Developers</h3>\n<p>There is a ton of candy for developers as well. I&#8217;d recommend starting your exploration with the <a href=\"http://codex.wordpress.org/Function_Reference/wp_editor\">new editor API</a>, new jQuery version, better ways to hook into the help screens, more performant post-slug-only permalinks, and of course the entire list of improvements <a href=\"http://codex.wordpress.org/Version_3.3\">on the Codex</a> and <a href=\"http://core.trac.wordpress.org/milestone/3.3\">in Trac</a>.</p>\n<h3>Roll the Credits</h3>\n<p>The Credits tab on the new About WordPress screen in the WordPress dashboard provides recognition for contributors to each release, but we like to thank them here as well.</p>\n<p><a href=\"http://profiles.wordpress.org/users/aaroncampbell\">Aaron D. Campbell</a>, <a href=\"http://profiles.wordpress.org/users/jorbin\">Aaron Jorbin</a>, <a href=\"http://profiles.wordpress.org/users/adambackstrom\">Adam Backstrom</a>, <a href=\"http://profiles.wordpress.org/users/kawauso\">Adam Harley</a>, <a href=\"http://profiles.wordpress.org/users/xknown\">Alex Concha</a>, <a href=\"http://profiles.wordpress.org/users/alexkingorg\">Alex King</a>, <a href=\"http://profiles.wordpress.org/users/viper007bond\">Alex Mills (Viper007Bond)</a>, <a href=\"http://profiles.wordpress.org/users/amereservant\">amereservant</a>, <a href=\"http://profiles.wordpress.org/users/ampt\">ampt</a>, <a href=\"http://profiles.wordpress.org/users/lordandrei\">Andrei Freeman</a>, <a href=\"http://profiles.wordpress.org/users/arena\">Andre Renaut</a>, <a href=\"http://profiles.wordpress.org/users/andrewfrazier\">andrewfrazier</a>, <a href=\"http://profiles.wordpress.org/users/nacin\">Andrew Nacin</a>, <a href=\"http://profiles.wordpress.org/users/azaozz\">Andrew Ozz</a>, <a href=\"http://profiles.wordpress.org/users/andrewryno\">Andrew Ryno</a>, <a href=\"http://profiles.wordpress.org/users/andy\">Andy Skelton</a>, <a href=\"http://profiles.wordpress.org/users/lumination\">Anthony Atkinson</a>, <a href=\"http://profiles.wordpress.org/users/filosofo\">Austin Matzko</a>, <a href=\"http://profiles.wordpress.org/users/simek\">Bartosz Kaszubowski</a>, <a href=\"http://profiles.wordpress.org/users/benbalter\">Benjamin J. Balter</a>, <a href=\"http://profiles.wordpress.org/users/brandondove\">Brandon Dove</a>, <a href=\"http://profiles.wordpress.org/users/carlospaulino\">carlospaulino</a>, <a href=\"http://profiles.wordpress.org/users/caspie\">Caspie</a>, <a href=\"http://profiles.wordpress.org/users/cebradesign\">cebradesign</a>, <a href=\"http://profiles.wordpress.org/users/chexee\">Chelsea Otakan</a>, <a href=\"http://profiles.wordpress.org/users/chipbennett\">Chip Bennett</a>, <a href=\"http://profiles.wordpress.org/users/chrisbliss18\">Chris Jean</a>, <a href=\"http://profiles.wordpress.org/users/coenjacobs\">Coen Jacobs</a>, <a href=\"http://profiles.wordpress.org/users/cgrymala\">Curtiss Grymala</a>, <a href=\"http://profiles.wordpress.org/users/danielbachhuber\">Daniel Bachhuber</a>, <a href=\"http://profiles.wordpress.org/users/koopersmith\">Daryl Koopersmith</a>, <a href=\"http://profiles.wordpress.org/users/dllh\">Daryl L. L. Houston</a>, <a href=\"http://profiles.wordpress.org/users/davecpage\">David</a>, <a href=\"http://profiles.wordpress.org/users/dcowgill\">David Cowgill</a>, <a href=\"http://profiles.wordpress.org/users/dgwyer\">David Gwyer</a>, <a href=\"http://profiles.wordpress.org/users/damst\">Da^MsT</a>, <a href=\"http://profiles.wordpress.org/users/deltafactory\">deltafactory</a>, <a href=\"http://profiles.wordpress.org/users/demetris\">demetris</a>, <a href=\"http://profiles.wordpress.org/users/valendesigns\">Derek Herman</a>, <a href=\"http://profiles.wordpress.org/users/devinreams\">Devin Reams</a>, <a href=\"http://profiles.wordpress.org/users/adeptris\">Digital Raindrops</a>, <a href=\"http://profiles.wordpress.org/users/dd32\">Dion Hulse (@dd32)</a>, <a href=\"http://profiles.wordpress.org/users/ocean90\">Dominik Schilling (ocean90)</a>, <a href=\"http://profiles.wordpress.org/users/dougwrites\">Doug Provencio</a>, <a href=\"http://profiles.wordpress.org/users/dragoonis\">dragoonis</a>, <a href=\"http://profiles.wordpress.org/users/drewapicture\">DrewAPicture</a>, <a href=\"http://profiles.wordpress.org/users/cyberhobo\">Dylan Kuhn</a>, <a href=\"http://profiles.wordpress.org/users/eduplessis\">eduplessis</a>, <a href=\"http://profiles.wordpress.org/users/eightamrock\">Eightamrock</a>, <a href=\"http://profiles.wordpress.org/users/eko-fr\">eko-fr</a>, <a href=\"http://profiles.wordpress.org/users/elpie\">Elpie</a>, <a href=\"http://profiles.wordpress.org/users/elyobo\">elyobo</a>, <a href=\"http://profiles.wordpress.org/users/empireoflight\">Empireoflight</a>, <a href=\"http://profiles.wordpress.org/users/ethitter\">Erick Hitter</a>, <a href=\"http://profiles.wordpress.org/users/ericmann\">Eric Mann</a>, <a href=\"http://profiles.wordpress.org/users/ejdanderson\">Evan Anderson</a>, <a href=\"http://profiles.wordpress.org/users/evansolomon\">Evan Solomon</a>, <a href=\"http://profiles.wordpress.org/users/fonglh\">fonglh</a>, <a href=\"http://profiles.wordpress.org/users/garyc40\">garyc40</a>, <a href=\"http://profiles.wordpress.org/users/garyj\">Gary Jones</a>, <a href=\"http://profiles.wordpress.org/users/logiclord\">Gaurav Aggarwal</a>, <a href=\"http://profiles.wordpress.org/users/georgestephanis\">George Stephanis</a>, <a href=\"http://profiles.wordpress.org/users/goldenapples\">goldenapples</a>, <a href=\"http://profiles.wordpress.org/users/goto10\">goto10</a>, <a href=\"http://profiles.wordpress.org/users/hakre\">hakre</a>, <a href=\"http://profiles.wordpress.org/users/helenyhou\">Helen Hou-Sandi</a>, <a href=\"http://profiles.wordpress.org/users/iandstewart\">Ian Stewart</a>, <a href=\"http://profiles.wordpress.org/users/ipstenu\">Ipstenu</a>, <a href=\"http://profiles.wordpress.org/users/madjax\">Jackson</a>, <a href=\"http://profiles.wordpress.org/users/jacobwg\">Jacob Gillespie</a>, <a href=\"http://profiles.wordpress.org/users/jakemgold\">Jake Goldman</a>, <a href=\"http://profiles.wordpress.org/users/jamescollins\">James Collins</a>, <a href=\"http://profiles.wordpress.org/users/jane\">Jane Wells</a>, <a href=\"http://profiles.wordpress.org/users/jeremyclarke\">jeremyclarke</a>, <a href=\"http://profiles.wordpress.org/users/jayjdk\">Jesper Johansen (Jayjdk)</a>, <a href=\"http://profiles.wordpress.org/users/jgadbois\">jgadbois</a>, <a href=\"http://profiles.wordpress.org/users/jick\">Jick</a>, <a href=\"http://profiles.wordpress.org/users/joehoyle\">Joe Hoyle</a>, <a href=\"http://profiles.wordpress.org/users/johnbillion\">John Blackbourn</a>, <a href=\"http://profiles.wordpress.org/users/vegasgeek\">John Hawkins</a>, <a href=\"http://profiles.wordpress.org/users/johnonolan\">JohnONolan</a>, <a href=\"http://profiles.wordpress.org/users/johnpbloch\">John P. Bloch</a>, <a href=\"http://profiles.wordpress.org/users/duck_\">Jon Cave</a>, <a href=\"http://profiles.wordpress.org/users/koke\">Jorge Bernal</a>, <a href=\"http://profiles.wordpress.org/users/josephscott\">Joseph Scott</a>, <a href=\"http://profiles.wordpress.org/users/jtclarke\">jtclarke</a>, <a href=\"http://profiles.wordpress.org/users/yuraz\">Jurica Zuanovic</a>, <a href=\"http://profiles.wordpress.org/users/justindgivens\">Justin Givens</a>, <a href=\"http://profiles.wordpress.org/users/justinsainton\">Justin Sainton</a>, <a href=\"http://profiles.wordpress.org/users/trepmal\">Kailey Lampert (trepmal)</a>, <a href=\"http://profiles.wordpress.org/users/kevinb\">kevinB</a>, <a href=\"http://profiles.wordpress.org/users/kitchin\">kitchin</a>, <a href=\"http://profiles.wordpress.org/users/kovshenin\">Konstantin Kovshenin</a>, <a href=\"http://profiles.wordpress.org/users/tenpura\">Kuraishi</a>, <a href=\"http://profiles.wordpress.org/users/kurtpayne\">Kurt Payne</a>, <a href=\"http://profiles.wordpress.org/users/lancewillett\">Lance Willett</a>, <a href=\"http://profiles.wordpress.org/users/latz\">Latz</a>, <a href=\"http://profiles.wordpress.org/users/linuxologos\">linuxologos</a>, <a href=\"http://profiles.wordpress.org/users/lloydbudd\">Lloyd Budd</a>, <a href=\"http://profiles.wordpress.org/users/ldebrouwer\">Luc De Brouwer</a>, <a href=\"http://profiles.wordpress.org/users/lukeschlather\">lukeschlather</a>, <a href=\"http://profiles.wordpress.org/users/mako09\">Mako</a>, <a href=\"http://profiles.wordpress.org/users/settle\">Mantas Malcius</a>, <a href=\"http://profiles.wordpress.org/users/marcuspope\">MarcusPope</a>, <a href=\"http://profiles.wordpress.org/users/mark-k\">mark-k</a>, <a href=\"http://profiles.wordpress.org/users/markjaquith\">Mark Jaquith</a>, <a href=\"http://profiles.wordpress.org/users/markmcwilliams\">Mark McWilliams</a>, <a href=\"http://profiles.wordpress.org/users/markoheijnen\">Marko Heijnen</a>, <a href=\"http://profiles.wordpress.org/users/tfnab\">Martin Lormes</a>, <a href=\"http://profiles.wordpress.org/users/masonjames\">masonjames</a>, <a href=\"http://profiles.wordpress.org/users/matveb\">Matias Ventura</a>, <a href=\"http://profiles.wordpress.org/users/matt\">Matt Mullenweg</a>, <a href=\"http://profiles.wordpress.org/users/iammattthomas\">Matt Thomas</a>, <a href=\"http://profiles.wordpress.org/users/mattwiebe\">Matt Wiebe</a>, <a href=\"http://profiles.wordpress.org/users/mattyrob\">MattyRob</a>, <a href=\"http://profiles.wordpress.org/users/merty\">Mert Yazicioglu</a>, <a href=\"http://profiles.wordpress.org/users/mdawaffe\">Michael Adams (mdawaffe)</a>, <a href=\"http://profiles.wordpress.org/users/mfields\">Michael Fields</a>, <a href=\"http://profiles.wordpress.org/users/mau\">Michal &#8220;Mau&#8221; Pliska</a>, <a href=\"http://profiles.wordpress.org/users/mbijon\">Mike Bijon</a>, <a href=\"http://profiles.wordpress.org/users/dh-shredder\">Mike Schroder</a>, <a href=\"http://profiles.wordpress.org/users/dimadin\">Milan Dinic</a>, <a href=\"http://profiles.wordpress.org/users/mitchoyoshitaka\">mitchoyoshitaka</a>, <a href=\"http://profiles.wordpress.org/users/batmoo\">Mohammad Jangda</a>, <a href=\"http://profiles.wordpress.org/users/mhauan\">Morten Hauan</a>, <a href=\"http://profiles.wordpress.org/users/usermrpapa\">Mr Papa</a>, <a href=\"http://profiles.wordpress.org/users/mrtorrent\">mrtorrent</a>, <a href=\"http://profiles.wordpress.org/users/Nao\">Naoko McCracken</a>, <a href=\"http://profiles.wordpress.org/users/natebedortha\">natebedortha</a>, <a href=\"http://profiles.wordpress.org/users/nbachiyski\">Nikolay Bachiyski</a>, <a href=\"http://profiles.wordpress.org/users/olivm\">olivM</a>, <a href=\"http://profiles.wordpress.org/users/olleicua\">olleicua</a>, <a href=\"http://profiles.wordpress.org/users/otto42\">Otto</a>, <a href=\"http://profiles.wordpress.org/users/pagesimplify\">pagesimplify</a>, <a href=\"http://profiles.wordpress.org/users/paulhastings0\">paulhastings0</a>, <a href=\"http://profiles.wordpress.org/users/pavelevap\">pavelevap</a>, <a href=\"http://profiles.wordpress.org/users/petemall\">pete.mall</a>, <a href=\"http://profiles.wordpress.org/users/westi\">Peter Westwood</a>, <a href=\"http://profiles.wordpress.org/users/peterwilsoncc\">peterwilsoncc</a>, <a href=\"http://profiles.wordpress.org/users/ppaire\">ppaire</a>, <a href=\"http://profiles.wordpress.org/users/ptahdunbar\">Ptah Dunbar</a>, <a href=\"http://profiles.wordpress.org/users/r-a-y\">r-a-y</a>, <a href=\"http://profiles.wordpress.org/users/ramiy\">Rami Y</a>, <a href=\"http://profiles.wordpress.org/users/rasheed\">Rasheed Bydousi</a>, <a href=\"http://profiles.wordpress.org/users/miqrogroove\">Robert Chapin (miqrogroove)</a>, <a href=\"http://profiles.wordpress.org/users/wpmuguru\">Ron Rennick</a>, <a href=\"http://profiles.wordpress.org/users/rosshanney\">Ross Hanney</a>, <a href=\"http://profiles.wordpress.org/users/ruslany\">ruslany</a>, <a href=\"http://profiles.wordpress.org/users/ryan\">Ryan Boren</a>, <a href=\"http://profiles.wordpress.org/users/ryanhellyer\">ryanhellyer</a>, <a href=\"http://profiles.wordpress.org/users/ryanimel\">Ryan Imel</a>, <a href=\"http://profiles.wordpress.org/users/zeo\">Safirul Alredha</a>, <a href=\"http://profiles.wordpress.org/users/solarissmoke\">Samir Shah</a>, <a href=\"http://profiles.wordpress.org/users/gluten\">Sam Margulies</a>, <a href=\"http://profiles.wordpress.org/users/saracannon\">saracannon</a>, <a href=\"http://profiles.wordpress.org/users/scottbasgaard\">Scott Basgaard</a>, <a href=\"http://profiles.wordpress.org/users/sbressler\">Scott Bressler</a>, <a href=\"http://profiles.wordpress.org/users/l3rady\">Scott Cariss</a>, <a href=\"http://profiles.wordpress.org/users/scottconnerly\">scottconnerly</a>, <a href=\"http://profiles.wordpress.org/users/coffee2code\">Scott Reilly</a>, <a href=\"http://profiles.wordpress.org/users/wonderboymusic\">Scott Taylor</a>, <a href=\"http://profiles.wordpress.org/users/scribu\">scribu</a>, <a href=\"http://profiles.wordpress.org/users/sergeybiryukov\">Sergey Biryukov</a>, <a href=\"http://profiles.wordpress.org/users/designsimply\">Sheri Bigelow</a>, <a href=\"http://profiles.wordpress.org/users/simonwheatley\">Simon Wheatley</a>, <a href=\"http://profiles.wordpress.org/users/sirzooro\">sirzooro</a>, <a href=\"http://profiles.wordpress.org/users/sillybean\">Stephanie Leary</a>, <a href=\"http://profiles.wordpress.org/users/tech163\">tech163</a>, <a href=\"http://profiles.wordpress.org/users/thedeadmedic\">TheDeadMedic</a>, <a href=\"http://profiles.wordpress.org/users/tmoorewp\">Tim Moore</a>, <a href=\"http://profiles.wordpress.org/users/tomauger\">Tom Auger</a>, <a href=\"http://profiles.wordpress.org/users/ansimation\">Travis Ballard</a>, <a href=\"http://profiles.wordpress.org/users/sorich87\">Ulrich Sossou</a>, <a href=\"http://profiles.wordpress.org/users/vnsavage\">vnsavage</a>, <a href=\"http://profiles.wordpress.org/users/wpweaver\">wpweaver</a>, <a href=\"http://profiles.wordpress.org/users/wraithkenny\">WraithKenny</a>, <a href=\"http://profiles.wordpress.org/users/yoavf\">Yoav Farhi</a>, and <a href=\"http://profiles.wordpress.org/users/vanillalounge\">Ze Fontainhas</a>.</p>\n<p>As well, we&#8217;d like to give a shout out to these users who have been particularly active <a href=\"http://wordpress.org/support/\">on the support forums</a> since the release of 3.2:</p>\n<p><a href=\"http://profiles.wordpress.org/users/alchymyth\">alchymyth</a>, <a href=\"http://profiles.wordpress.org/users/andrea_r\">Andrea_r</a>, <a href=\"http://profiles.wordpress.org/users/claytonjames\">ClaytonJames</a>, <a href=\"http://profiles.wordpress.org/users/numeeja\">cubecolour</a>, <a href=\"http://profiles.wordpress.org/users/eranmiller\">Eran Miller</a>, <a href=\"http://profiles.wordpress.org/users/esmi\">esmi</a>, <a href=\"http://profiles.wordpress.org/users/fredericktownes\">Frederick Townes</a>, <a href=\"http://profiles.wordpress.org/users/govpatel\">govpatel</a>, <a href=\"http://profiles.wordpress.org/users/ipstenu\">Ipstenu</a>, <a href=\"http://profiles.wordpress.org/users/keesiemeijer\">keesiemeijer</a>, <a href=\"http://profiles.wordpress.org/users/kmessinger\">kmessinger</a>, <a href=\"http://profiles.wordpress.org/users/netweblogic\">Marcus</a>, <a href=\"http://profiles.wordpress.org/users/otto42\">Otto</a>, <a href=\"http://profiles.wordpress.org/users/peredur\">peredur</a>, <a href=\"http://profiles.wordpress.org/users/rvoodoo\">Rev. Voodoo</a>, <a href=\"http://profiles.wordpress.org/users/samboll\">Samuel B</a>, <a href=\"http://profiles.wordpress.org/users/tobiasbg\">Tobias</a>, <a href=\"http://profiles.wordpress.org/users/vtxyzzy\">vtxyzzy</a>, and <a href=\"http://profiles.wordpress.org/users/zoonini\">zoonini</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, 12 Dec 2011 22:58: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: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: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:53:\"WPTavern: Is Your WordPress Install Selling Handbags?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://www.wptavern.com/?p=5974\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:104:\"http://feedproxy.google.com/~r/WordpressTavern/~3/NqrCavQxFmc/is-your-wordpress-install-selling-handbags\";s: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:987:\"<p>If you administer a WordPress powered website, you might want to check the directory structure, especially the WP-Content/Upgrade and WP-Content/Uploads to see if you notice a folder called Tall. <a href=\"http://wpmu.org/hacked-is-your-wordpress-site-being-turned-into-a-cheap-luxury-store/\">According to the folks at WPMU.org</a>, one of their co-workers websites became a victim to an attack that involved an entirely new WordPress installation being installed along with an e-commerce system. While Google is reporting a ton of results, most of them appear to be sub-pages within the hacked domains and not individual sites. I&#8217;ve checked my own installs and everything seems to be fine. It needs to be stated that this is not known to be an exploit specifically with the WordPress software although the project team is aware of the findings by WPMU. </p>\n<p>No related posts.</p><img src=\"http://feeds.feedburner.com/~r/WordpressTavern/~4/NqrCavQxFmc\" height=\"1\" width=\"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:\"Mon, 12 Dec 2011 18:00: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:6:\"Jeffro\";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:67:\"WPTavern: Seven Things Not To Do When Localizing Themes And Plugins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://www.wptavern.com/?p=5971\";s:7:\"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:119:\"http://feedproxy.google.com/~r/WordpressTavern/~3/hJQ4W0QJ1E0/seven-things-not-to-do-when-localizing-themes-and-plugins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1319:\"<p>David Decker <a href=\"http://genesisthemes.de/en/2011-12/seven-cardinal-sins-localizing-wordpress-plugins-themes/\">has published his list</a> of seven cardinal sins that he&#8217;s run into when diving into the localization/internationalization of plugins and themes. For beginners who want to start making it easy for others to localize their code, you should read this article on the Codex entitled, <a href=\"http://codex.wordpress.org/Translating_WordPress\">Translating WordPress</a>. While David didn&#8217;t chastise developers for their code, <a href=\"http://genesisthemes.de/en/2011-12/seven-cardinal-sins-localizing-wordpress-plugins-themes/#comment-15\">Eric Mann weighed in</a> from a plugin authors point of view that I think many other developers can relate to. </p>\n<p>Related posts:<ol>\n<li><a href=\"http://www.wptavern.com/plugins-and-commericial-wordpress-sites\" rel=\"bookmark\" title=\"Plugins And Commercial WordPress Sites\">Plugins And Commercial WordPress Sites</a></li>\n<li><a href=\"http://www.wptavern.com/naughty-plugins-caught-and-removed-from-repository\" rel=\"bookmark\" title=\"Naughty Plugins Caught And Removed From Repository\">Naughty Plugins Caught And Removed From Repository</a></li>\n</ol></p><img src=\"http://feeds.feedburner.com/~r/WordpressTavern/~4/hJQ4W0QJ1E0\" height=\"1\" width=\"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:\"Mon, 12 Dec 2011 14:00:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Jeffro\";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:52:\"Weblog Tools Collection: WordPress 3.3 RC 3 Released\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://weblogtoolscollection.com/?p=10815\";s:7:\"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:73:\"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/dIrh8OrTzqo/\";s: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:1228:\"<p><a href=\"http://wordpress.org/\">WordPress</a> 3.3 RC 3 <a href=\"http://wordpress.org/news/2011/12/wordpress-3-3-rc3/\">has been released</a>. There were <a href=\"http://core.trac.wordpress.org/log/trunk/?action=stop_on_copy&mode=stop_on_copy&rev=19587&stop_rev=19568&limit=100\">just a few things to fix</a>, so the final 3.3 release should be right around the corner.</p>\n<p>If you&#8217;re a plugin or theme developer, and you haven&#8217;t tested your products against WordPress 3.3 yet, you my have just a few days (if not hours) left before the final release is public.</p>\n<p>Andrew Nacin has provided an outstanding <a href=\"http://nacin.com/2011/12/07/wordpress-3-3-field-guide-for-developers/\">WordPress 3.3 field guide for developers</a> and Mika Epstein has provided an awesome <a href=\"http://tech.ipstenu.org/master-list/\">WordPress 3.3 known issue and FAQ master list</a>.</p>\n<p>As always, feel free to <a href=\"http://codex.wordpress.org/Reporting_Bugs\">report any bugs</a> that you find and contact <a href=\"http://wordpress.org/support/forum/alphabeta\">the support forums</a> if you need any help.</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/dIrh8OrTzqo\" height=\"1\" width=\"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:\"Mon, 12 Dec 2011 07:28: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:5:\"James\";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:59:\"Weblog Tools Collection: WordPress Theme Releases for 12/11\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://weblogtoolscollection.com/?p=10810\";s:7:\"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:73:\"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/vIgSabXvQio/\";s: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:1191:\"<p><img class=\"alignnone size-full wp-image-10811\" title=\"bluewithgrey\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2011/12/bluewithgrey.jpg\" alt=\"\" width=\"150\" height=\"113\" /></p>\n<p><a href=\"http://wordpress.org/extend/themes/blue-with-grey\"><strong>Blue with Grey</strong></a> is a details-oriented theme with modern and decent design.</p>\n<p><img class=\"alignnone size-full wp-image-10812\" title=\"simplygraphic\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2011/12/simplygraphic.jpg\" alt=\"\" width=\"150\" height=\"113\" /></p>\n<p><a href=\"http://emptynestthemes.com/2011/12/08/simply-graphic/\"><strong>Simply Graphic</strong></a> is a clean, crisp theme using graphic elements and sharp lines.</p>\n<p><img class=\"alignnone size-full wp-image-10813\" title=\"terminally\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2011/12/terminally.jpg\" alt=\"\" width=\"150\" height=\"113\" /></p>\n<p><a href=\"http://wordpress.org/extend/themes/terminally\"><strong>Terminally</strong></a> is a HTML5 and CSS3 theme inspired by the popular Mac SSH client, Terminal.</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/vIgSabXvQio\" height=\"1\" width=\"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:\"Sun, 11 Dec 2011 14:00: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"James\";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:43:\"Dev Blog: WordPress 3.3 Release Candidate 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:33:\"http://wordpress.org/news/?p=2130\";s:7:\"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:\"http://wordpress.org/news/2011/12/wordpress-3-3-rc3/\";s: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:1709:\"<p>The third (and hopefully final!) release candidate for WordPress 3.3 is now available. Since RC2, we&#8217;ve done <a href=\"http://core.trac.wordpress.org/log/trunk/?action=stop_on_copy&mode=stop_on_copy&rev=19587&stop_rev=19568&limit=100\">a handful of last-minute tweaks and bugfixes</a> that we felt were necessary.</p>\n<p>Our goal is to release version 3.3 early next week, so <strong>plugin and theme authors, this is your last pre-release chance to  test your plugins and themes </strong> to find any compatibility issues before the final release. We&#8217;ve published <a href=\"http://wpdevel.wordpress.com/tag/3-3-dev-notes/\">a number of posts</a> on the development blog that explain important things you need to know as you prepare for WordPress 3.3. Please review this information immediately if you have not done so already.</p>\n<p>If you think you&#8217;ve found a bug, you can post to the <a href=\"http://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. Or, if you&#8217;re comfortable writing a reproducible bug report, file one on <a href=\"http://core.trac.wordpress.org/\">WordPress Trac</a>. Known issues that crop up will be listed <a href=\"http://core.trac.wordpress.org/report/6\">here</a>, but let&#8217;s all keep our fingers crossed for a quiet Sunday so we can get these new features into your hands early next week!</p>\n<p><em>To test WordPress 3.3, try the <a href=\"http://wordpress.org/extend/plugins/wordpress-beta-tester/\">WordPress Beta Tester plugin</a> (you’ll want &#8220;bleeding edge nightlies&#8221;). Or you can <a href=\"http://wordpress.org/wordpress-3.3-RC3.zip\">download the release candidate here</a> (zip).</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:\"Sun, 11 Dec 2011 00:27:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Jane Wells\";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:31:\"Dev Blog: Core Team Meetup Time\";s:7:\"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:\"http://wordpress.org/news/?p=2127\";s:7:\"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:\"http://wordpress.org/news/2011/12/core-team-meetup-time/\";s: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:2151:\"<p>It&#8217;s almost that time again, when the WordPress core development team gets together in person to review the year&#8217;s progress and talk about priorities for the coming year. Next week <a href=\"http://profiles.wordpress.org/users/matt\">Matt Mullenweg</a>, <a href=\"http://profiles.wordpress.org/users/markjaquith\">Mark Jaquith</a>, <a href=\"http://profiles.wordpress.org/users/westi\">Peter Westwood</a>, <a href=\"http://profiles.wordpress.org/users/azaozz\">Andrew Ozz</a>, <a href=\"http://profiles.wordpress.org/users/nacin\">Andrew Nacin</a>, <a href=\"http://profiles.wordpress.org/users/dd32\">Dion Hulse</a>, <a href=\"http://profiles.wordpress.org/users/koopersmith\">Daryl Koopersmith</a>, <a href=\"http://profiles.wordpress.org/users/duck_\">Jon Cave</a>, and <a href=\"http://profiles.wordpress.org/users/jane\">I</a> will meet at Tybee Island, GA, the same location as the last meetup.</p>\n<p>Last year we wanted to do a video town hall, but ran into technical and scheduling difficulties. This year we&#8217;re planning ahead, and will definitely make it happen. <a title=\"Questions thread\" href=\"http://wordpress.org/support/topic/core-dev-team-meetup-qa\">We&#8217;re currently taking questions</a>, and will record a series of town hall-style videos where we answer your questions. Ask about the roadmap, code, community, contributing, WordCamps, meetups, themes, plugins, features, you name it. No topic (as long as it is about WordPress) is off limits, and we&#8217;ll do our best to answer as many questions as we can while we are together. The videos will be posted to this blog and archived at <a href=\"http://wordpress.tv\">WordPress.tv</a>.</p>\n<p>Last year the people who were in attendance also posted pictures and updates to Twitter using the <a title=\"#wptybee on Twitter\" href=\"https://twitter.com/#!/search?q=%23wptybee\">#wptybee</a> tag. We&#8217;ll use the same tag this year, so if you&#8217;re interested in following along, add it to your Twitter client as a search.</p>\n<p>What do you want to know from us? <a title=\"Questions thread\" href=\"http://wordpress.org/support/topic/core-dev-team-meetup-qa\">Ask away</a>!</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 11 Dec 2011 00:06: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:10:\"Jane Wells\";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:45:\"Andrew Nacin: Credits page for WordPress 3.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:24:\"http://nacin.com/?p=3776\";s:7:\"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:\"http://nacin.com/2011/12/09/credits-page-for-wordpress-3-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:2372:\"<p><a href=\"http://nacin.com/wp-content/uploads/2011/12/Screen-Shot-2011-12-09-at-6.27.46-PM.png\"><img class=\"alignright size-full wp-image-3778\" title=\"Screen Shot 2011-12-09 at 6.27.46 PM\" src=\"http://nacin.com/wp-content/uploads/2011/12/Screen-Shot-2011-12-09-at-6.27.46-PM.png\" alt=\"\" width=\"650\" height=\"272\" /></a></p>\n<p>The WordPress 3.3 credits page was updated today, for likely the final time. In five months, there were nearly 1,200 individual changes to WordPress (and counting).</p>\n<p>The credits page lists every individual who contributed to the latest release. A few stood out for their contributions, not just of high quantity, but of tremendous quality: <strong>Dominik Schilling</strong> (ocean90), <strong>Cristi Burc?</strong> (scribu), and <strong>Sergey Biryukov</strong>. The three are listed as contributing developers to 3.3. The core team — including guest committers Jon Cave (duck_) and Daryl Koopersmith — worked with these three daily, and they had a collective hand in nearly every major task this release.*</p>\n<p>There were also three individuals added to the &#8216;Recent Rockstars&#8217; group for their recent contributions to core development. This release we chose <strong>Chelsea Otakan</strong> (chexee), <strong>Helen Hou-Sandi</strong>, and <strong>John Blackbourn</strong> (johnbillion). All together, the six contributing  developers and rockstars we&#8217;ve recognized contributed more than a fourth of all Trac comments and two-fifths of all props.</p>\n<p>If you want to see the full list, click the WordPress icon in the 3.3 toolbar and head on over to the credits page, or wait for the release post (coming soon!). Maybe I&#8217;ll also experiment with a word cloud again as <a href=\"http://nacin.com/2010/04/30/visualizing-the-wordpress-3-0-contributors/\">I&#8217;ve done in the past</a>.</p>\n<p>In WordPress 3.4, we plan to recognize first-time contributors on the page, so if want to see your name in lights on the credits page, <a href=\"http://codex.wordpress.org/Contributing_to_WordPress\">contribute to WordPress</a>.</p>\n<p>* Fun fact: Average age of the five mentioned in this paragraph: 23.</p>\n<p class=\"share-sfc-stc\"><a href=\"http://twitter.com/share?url=http%3A%2F%2Fwp.me%2FpQEdq-YU&count=horizontal&related=nacin&text=Credits%20page%20for%20WordPress%203.3\" class=\"twitter-share-button\"></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, 10 Dec 2011 00:00:24 +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:12:\"Andrew Nacin\";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:49:\"WPTavern: Limiting The Amount Of Text In 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://www.wptavern.com/?p=5968\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"http://feedproxy.google.com/~r/WordpressTavern/~3/RqmQW4klzxw/limiting-the-amount-of-text-in-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1149:\"<p>Eric Teubert over at WPEngineer has <a href=\"http://wpengineer.com/2321/comment-length-limiter/\">shared some Javascipt code</a> that can be used to limit the amount of text that users can place within the comments field or any text field for that matter. Could be used to combat those comment spammers that like to post a bazillion words but the negative side is that lengthy, legitimate commentators will need to be cut short. </p>\n<p>Related posts:<ol>\n<li><a href=\"http://www.wptavern.com/approve-delete-spam-how-do-you-treat-specific-comments\" rel=\"bookmark\" title=\"Approve, Delete, Spam &#8211; How Do You Treat Specific Comments?\">Approve, Delete, Spam &#8211; How Do You Treat Specific Comments?</a></li>\n<li><a href=\"http://www.wptavern.com/easy-editable-text-regions\" rel=\"bookmark\" title=\"Easy Editable Text Regions\">Easy Editable Text Regions</a></li>\n<li><a href=\"http://www.wptavern.com/wp-ajax-edit-comments-needs-new-dev\" rel=\"bookmark\" title=\"WP AJax Edit Comments Needs New Dev\">WP AJax Edit Comments Needs New Dev</a></li>\n</ol></p><img src=\"http://feeds.feedburner.com/~r/WordpressTavern/~4/RqmQW4klzxw\" height=\"1\" width=\"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, 09 Dec 2011 18:00:55 +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:6:\"Jeffro\";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:61:\"WPTavern: WPShout Releases Results Of Their Webhosting 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:31:\"http://www.wptavern.com/?p=5961\";s:7:\"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:113:\"http://feedproxy.google.com/~r/WordpressTavern/~3/xr-_CdP3aaI/wpshout-releases-results-of-their-webhosting-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:2719:\"<p><a href=\"http://www.wptavern.com/wp-content/uploads/2011/12/wpshoutlogo.png\" rel=\"thumbnail\"><img src=\"http://www.wptavern.com/wp-content/uploads/2011/12/wpshoutlogo.png\" alt=\"WPshout Logo\" title=\"wpshoutlogo\" width=\"346\" height=\"70\" class=\"alignright size-full wp-image-5962\" /></a>WPshout which is one of many sites devoted to WordPress has <a href=\"http://wpshout.com/wordpress-hosting-review/\">published the results</a> of their early 2011 survey that asked readers to review their webhosting company. The results are from 252 independent reviews. In the grand scheme of things, this is a miniscule number but it&#8217;s cool to see so many independent reviews from WordPress centric customers in one place. WPTavern is running on HostGator and so far, I don&#8217;t have anything to complain about. When I&#8217;ve needed it, support has been great. The live chat actually works and for the most part, gets my issue settles without it being escalated. Unfortunately, it looks like many people who reviewed HostGator didn&#8217;t like the performance of their site. I&#8217;m on the opposite side of the spectrum where HostGator performs very well for me out of all the previous hosting providers I&#8217;ve used. </p>\n<blockquote><p>Hostgator had 23 reviews and, impressively for such a large number, everyone rated their experience and support as “good”. A couple of people had had “some” problem with downtime, but comments gave the impression support was quick and friendly. However, a number of people had moved away from Hostgator to another host and commented that their new hosting was much faster, suggesting Hostgator’s a bit slow, just you don’t really notice when you’re hosting with them. For this reason, I’d consider the other hosts with more solid performance across the board.</p></blockquote>\n<p>It&#8217;s no surprise to me that GoDaddy ends up in last place with most of the reviewers mentioning that they switched hosts. Just as everyone has an opinion, they also have their choice of which webhosting provider to go with. Ask 100 people in a room which place should host your website and 75% of the answers will be different. With that said, you can add these independent reviews from WPShout to your list of legitimate researching material when it comes time to decide on a webhosting provider. </p>\n<p>By the way, for those that have an opinion on which host to go with, <a href=\"http://wpshout.com/hosting-survey/\">WPShout is still conducting the survey</a> and has plans at some point to release more detailed information regarding the reviews. </p>\n<p>No related posts.</p><img src=\"http://feeds.feedburner.com/~r/WordpressTavern/~4/xr-_CdP3aaI\" height=\"1\" width=\"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, 09 Dec 2011 14:00:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Jeffro\";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:59:\"Weblog Tools Collection: WordPress Plugin Releases for 12/9\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://weblogtoolscollection.com/?p=10807\";s:7:\"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:73:\"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/kpVR03B_vas/\";s: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:1619:\"<h3>New plugins</h3>\n<p><a href=\"http://wordpress.org/extend/plugins/benchmark-email-lite/\"><strong>Benchmark Email Lite</strong></a> creates a newsletter signup form widget.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/custom-category-templates/\"><strong>Custom Category Templates</strong></a> allows you to define custom templates for category views.</p>\n<h3>Updated plugins</h3>\n<p><a href=\"http://www.foxy-press.com/\"><strong>FoxyPress</strong></a> is a custom plugin made to integrate FoxyCart e-commerce functionality into your WordPress website.</p>\n<p><a href=\"http://intensedebate.com/\"><strong>IntenseDebate</strong></a> is a feature-rich comment system for WordPress, Blogger, Tumblr and many other blogging/CMS platforms.</p>\n<p><a href=\"http://jetpack.me/\"><strong>Jetpack</strong></a> supercharges your self-hosted WordPress site with the awesome cloud power of WordPress.com.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/joemobi/\"><strong>Joemobi</strong></a> allows you to create native Android and BlackBerry applications from your WordPress site.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/social/\"><strong>Social</strong></a> allows you to broadcast posts to Twitter and/or Facebook, pull in items from each as comments, and allow commenters to use their Twitter/Facebook identities.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/wp-super-cache/\"><strong>WP Super Cache</strong></a> is a very fast caching engine for WordPress that produces static html files.</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/kpVR03B_vas\" height=\"1\" width=\"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, 09 Dec 2011 14:00: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:5:\"James\";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:51:\"WPTavern: WordPress Optimization Guide By Dreamhost\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://www.wptavern.com/?p=5958\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"http://feedproxy.google.com/~r/WordpressTavern/~3/J6IkXUGU69Y/wordpress-optimization-guide-by-dreamhost\";s: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:860:\"<p>Dreamhost has a section on their Wiki <a href=\"http://wiki.dreamhost.com/WordPress_Optimization\">explaining detailed ways</a> on how to optimize WordPress using such tools as WP Super Cache, Nocache, Fcgi, and various combinations of the latter. I don&#8217;t understand the gobbily gook presented within the document but if you&#8217;re using your own dedicated server or VPS, these tips might be of interest to you. An aside but <a href=\"http://digwp.com/2009/06/wordpress-configuration-tricks/\">also interesting article</a> regarding WordPress configuration tricks was published by Jeff Star on the Digging Into WordPress site back in 2009. Lesson learned is that the WPConfig file that is apart of WordPress is pretty powerful. </p>\n<p>No related posts.</p><img src=\"http://feeds.feedburner.com/~r/WordpressTavern/~4/J6IkXUGU69Y\" height=\"1\" width=\"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, 08 Dec 2011 18:00: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:6:\"Jeffro\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"WPTavern: Extensive Checklist For WordPress 3.3 That All Developers Should Check\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://www.wptavern.com/?p=5955\";s:7:\"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:132:\"http://feedproxy.google.com/~r/WordpressTavern/~3/sHixOaIMhXA/extensive-checklist-for-wordpress-3-3-that-all-developers-should-check\";s: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:1310:\"<p>Andrew Nacin who is one of the core developers of WordPress has published an <a href=\"http://nacin.com/2011/12/07/wordpress-3-3-field-guide-for-developers/\">extensive field guide for developers</a> regarding WordPress 3.3. The guide contains links to relevant articles and discussions on the WordPress developers blog such as admin bar API changes, Javascript and editor changes, Help screen along with API changes, etc. All developers should take note of the links published by Andrew so you&#8217;re well prepared for the release. </p>\n<p>Related posts:<ol>\n<li><a href=\"http://www.wptavern.com/checklist-of-things-to-do-before-switching-themes\" rel=\"bookmark\" title=\"Checklist Of Things To Do Before Switching Themes\">Checklist Of Things To Do Before Switching Themes</a></li>\n<li><a href=\"http://www.wptavern.com/andrew-nacin-previews-wordpress-3-3-at-wordpressnyc-meetup\" rel=\"bookmark\" title=\"Andrew Nacin Previews WordPress 3.3 At WordPressNYC Meetup\">Andrew Nacin Previews WordPress 3.3 At WordPressNYC Meetup</a></li>\n<li><a href=\"http://www.wptavern.com/validation-and-sanitization-primer\" rel=\"bookmark\" title=\"Validation And Sanitization Primer\">Validation And Sanitization Primer</a></li>\n</ol></p><img src=\"http://feeds.feedburner.com/~r/WordpressTavern/~4/sHixOaIMhXA\" height=\"1\" width=\"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, 08 Dec 2011 14:00: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:6:\"Jeffro\";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:52:\"Weblog Tools Collection: WordPress 3.3 RC 2 Released\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://weblogtoolscollection.com/?p=10802\";s:7:\"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:73:\"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/3EgeD6M0_0A/\";s: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:1129:\"<p><a href=\"http://wordpress.org/\">WordPress</a> 3.3 RC 2 <a href=\"http://wordpress.org/news/2011/12/wordpress-3-3-release-candidate-2/\">has been released</a>. The team feels that WordPress 3.3 is just about ready to be released, so this could very well be the last release candidate before 3.3 is officially released.</p>\n<p>If you&#8217;re a plugin or theme developer, it&#8217;s time to test your products against WordPress 3.3 before the rest of the world gets their hands on it. Andrew Nacin has provided an outstanding <a href=\"http://nacin.com/2011/12/07/wordpress-3-3-field-guide-for-developers/\">WordPress 3.3 field guide for developers</a> and Mika Epstein has provided an awesome <a href=\"http://tech.ipstenu.org/master-list/\">WordPress 3.3 known issue and FAQ master list</a>.</p>\n<p>As always, feel free to <a href=\"http://codex.wordpress.org/Reporting_Bugs\">report any bugs</a> that you find and contact <a href=\"http://wordpress.org/support/forum/alphabeta\">the support forums</a> if you need any help.</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/3EgeD6M0_0A\" height=\"1\" width=\"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, 08 Dec 2011 14:00: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"James\";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:55:\"Andrew Nacin: WordPress 3.3 Field Guide 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:24:\"http://nacin.com/?p=3762\";s:7:\"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:\"http://nacin.com/2011/12/07/wordpress-3-3-field-guide-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:3160:\"<p>Last night, WordPress 3.3 Release Candidate 2 was released. As written in <a href=\"http://wordpress.org/news/2011/12/wordpress-3-3-release-candidate-2/\">the release post</a>, I think we&#8217;re really close to a final release.</p>\n<p>In preparation for that, I went on a tear yesterday and contributed to six posts for developers on our main development blog. The posts were a mixture of tutorials and API documentation what&#8217;s new and what&#8217;s changed in 3.3:</p>\n<ul class=\"paragraphs\">\n<li><a href=\"http://wpdevel.wordpress.com/2011/12/07/admin-bar-api-changes-in-3-3/\"><strong>Admin Bar API changes in 3.3</strong></a>. An overview of what changes might break your plugin, how we&#8217;ve tweaked the terminology and APIs for 3.3, the new Groups concept, and how to move and modify menu items.</li>\n<li><a href=\"http://wpdevel.wordpress.com/2011/12/07/whats-new-javascript-in-3-3/\"><strong>What to watch for: Javascript and Editor changes</strong></a>. There were quite a bit of changes here. jQuery was updated to 1.7.1, the current version. The full jQuery UI is now included, and was updated to 1.8.16, also the current version. And then there&#8217;s an example for <code>wp_editor()</code>. The QuickTags API (the HTML editor toolbar buttons) was rewritten, and we&#8217;ve improved both <code>wp_localize_script()</code> and <code>wp_enqueue_script()</code>.</li>\n<li><a href=\"http://wpdevel.wordpress.com/2011/12/07/new-api-in-3-3-is_main_query/\"><strong>New API: is_main_query()</strong></a>. I introduced this function and <code>WP_Query</code> method during my &#8216;You Don&#8217;t Know Query&#8217; talk in WordCamp Portland in September.</li>\n<li><a href=\"http://wpdevel.wordpress.com/2011/12/07/do-not-include-wp-adminincludestemplate-php-to-get-add_meta_box/\"><strong>Do not include wp-admin/includes/template.php to get add_meta_box()</strong></a>. I&#8217;m not even sure where to start with this one. When developing 3.3, we found that some plugins were doing something wrong when trying to call <code>add_meta_box()</code>. (Really, really wrong.) So consider this post a protip.</li>\n<li><a href=\"http://wpdevel.wordpress.com/2011/12/07/admin_user_info_links/\"><strong>The admin_user_info_links filter is gone</strong></a>. This needed to happen since we combined the admin bar with the admin header. Not too many plugins were using it. This comes after we dropped favorite actions in 3.2 as the UI continues to be refined.</li>\n<li><a href=\"http://wpdevel.wordpress.com/2011/12/06/help-and-screen-api-changes-in-3-3/\"><strong>Help and screen API changes</strong></a>. This post goes through the process of adding new help tabs, as well as how to use the screen object to determine the context of the current page. I spent a lot of time fleshing out WP_Screen in 3.3, so it was nice to see it all summed up in just a few hundred words.</li>\n</ul>\n<p>WordPress 3.3 — coming soon to a site near you.</p>\n<p class=\"share-sfc-stc\"><a href=\"http://twitter.com/share?url=http%3A%2F%2Fwp.me%2FpQEdq-YG&count=horizontal&related=nacin&text=WordPress%203.3%20Field%20Guide%20for%20Developers\" class=\"twitter-share-button\"></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, 07 Dec 2011 18:40: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Andrew Nacin\";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:34:\"WPTavern: Using Sidebars As Menus?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://www.wptavern.com/?p=5952\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"http://feedproxy.google.com/~r/WordpressTavern/~3/JI5dQ7p--U8/using-sidebars-as-menus\";s: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:1351:\"<p>It&#8217;s an idea <a href=\"http://tech.ipstenu.org/2011/wordpress-sidebars-as-menus-part-2/\">proposed by Ipstenu</a> that might just work. The gist of her suggestion is to manage widgets similar to how we manage menus. Instead of all that fancy drag and drop stuff, we switch to a check box approach where users can check which widgets they want to have added to a particular sidebar. Judging by the comments left on that post, a number of people feel that her concept is a great idea and should be considered when the time to rework the widget management area arrives. Drag and drop was cool when it arrived but having 3-5 sidebars with 30 available widgets makes drag and drop not so cool anymore. </p>\n<p>Related posts:<ol>\n<li><a href=\"http://www.wptavern.com/first-look-at-new-widget-interface\" rel=\"bookmark\" title=\"First Look At New Widget Interface\">First Look At New Widget Interface</a></li>\n<li><a href=\"http://www.wptavern.com/a-theme-with-70-different-widget-spots\" rel=\"bookmark\" title=\"A Theme With 70 Different Widget Spots\">A Theme With 70 Different Widget Spots</a></li>\n<li><a href=\"http://www.wptavern.com/custom-widgets-20-released\" rel=\"bookmark\" title=\"Custom Widgets 2.0 Released\">Custom Widgets 2.0 Released</a></li>\n</ol></p><img src=\"http://feeds.feedburner.com/~r/WordpressTavern/~4/JI5dQ7p--U8\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 07 Dec 2011 18:00: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Jeffro\";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:58:\"Weblog Tools Collection: WordPress Theme Releases for 12/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:41:\"http://weblogtoolscollection.com/?p=10795\";s:7:\"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:73:\"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/7AO3B0rUNMU/\";s: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:1102:\"<p><img class=\"alignnone size-full wp-image-10796\" title=\"colorway\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2011/12/colorway.jpg\" alt=\"\" width=\"150\" height=\"113\" /></p>\n<p><a href=\"http://wordpress.org/extend/themes/colorway\"><strong>ColorWay</strong></a> is a simple, elegant and beautiful theme with easy customization options.</p>\n<p><img class=\"alignnone size-full wp-image-10797\" title=\"jeans\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2011/12/jeans.jpg\" alt=\"\" width=\"150\" height=\"113\" /></p>\n<p><a href=\"http://wordpress.org/extend/themes/jeans\"><strong>jeans</strong></a> is visually rich and interesting.</p>\n<p><img class=\"alignnone size-full wp-image-10798\" title=\"write\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2011/12/write.jpg\" alt=\"\" width=\"150\" height=\"113\" /></p>\n<p><a href=\"http://emptynestthemes.com/2011/12/05/write/\"><strong>Write</strong></a> is a vintage looking, simple, one-column theme featuring old, foxed paper.</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/7AO3B0rUNMU\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 07 Dec 2011 14:00:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"James\";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:39:\"WPTavern: Michael Fields Media Wishlist\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://www.wptavern.com/?p=5950\";s:7:\"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:\"http://feedproxy.google.com/~r/WordpressTavern/~3/QtuStrKNJLo/michael-fields-media-wishlist\";s: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:1219:\"<p>Michael Fields, one of the many theme wranglers for Automattic has <a href=\"http://wordpress.mfields.org/2011/wordpress-wishlist-media/\">published his wishlist</a> of items he&#8217;d like to see implemented into the WordPress media manager. Of the things he mentioned, <em>The ability for a theme to define multiple types of images like Logo, Custom Header, Body Background, Content Background, etc. We have two of these already, but IMHO it would be awesome if themes could define more than these two</em> sounds like a really cool idea. What&#8217;s on your wishlist? </p>\n<p>Related posts:<ol>\n<li><a href=\"http://www.wptavern.com/media-management-in-wordpress-29\" rel=\"bookmark\" title=\"Media Management In WordPress 2.9\">Media Management In WordPress 2.9</a></li>\n<li><a href=\"http://www.wptavern.com/use-the-media-library-or-hand-code\" rel=\"bookmark\" title=\"Use The Media Library Or Hand Code?\">Use The Media Library Or Hand Code?</a></li>\n<li><a href=\"http://www.wptavern.com/whats-in-store-with-wp-3-0\" rel=\"bookmark\" title=\"What&#8217;s In Store With WP 3.0\">What&#8217;s In Store With WP 3.0</a></li>\n</ol></p><img src=\"http://feeds.feedburner.com/~r/WordpressTavern/~4/QtuStrKNJLo\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 07 Dec 2011 14:00:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Jeffro\";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:90:\"WordPress.tv: Cotton Rohrscheib: Making WordPress Profitable for Agencies and Design Firms\";s:7:\"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:27:\"http://wordpress.tv/?p=6762\";s:7:\"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:129:\"http://wordpress.tv/2011/12/07/cotton-rohrscheib-making-wordpress-profitable-for-agencies-and-design-firms-wordcamp-fayetteville/\";s: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:2560:\"<p>WordCamp Fayetteville #wcfay 2011 Blogger Track video 07 -</p>\n<p>Cotton Rohrscheib, Making WordPress Profitable for Agencies and Design Firms &#8211; WordCamp Fayetteville 2011, July 30.</p>\n<p>This presentation discusses the various advantages of using WordPress from an agency, or design firm perspective. In this presentation we will do comparisons between WordPress and other Content Management Solutions as well as demonstrate several methods that can help you deliver a better product to your clients and maximize your profits w/ less time and effort.</p>\n<div id=\"v-kP6AbYKS-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/6762/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/6762/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godelicious/wptv.wordpress.com/6762/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/delicious/wptv.wordpress.com/6762/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gofacebook/wptv.wordpress.com/6762/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/facebook/wptv.wordpress.com/6762/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gotwitter/wptv.wordpress.com/6762/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/twitter/wptv.wordpress.com/6762/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gostumble/wptv.wordpress.com/6762/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/stumble/wptv.wordpress.com/6762/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godigg/wptv.wordpress.com/6762/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/digg/wptv.wordpress.com/6762/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/goreddit/wptv.wordpress.com/6762/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/reddit/wptv.wordpress.com/6762/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=6762&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2011/12/07/cotton-rohrscheib-making-wordpress-profitable-for-agencies-and-design-firms-wordcamp-fayetteville/\"><img alt=\"Cotton Rohrscheib, Making WordPress Profitable for Agencies and Design Firms &#8211; WordCamp Fayetteville\" src=\"http://videos.videopress.com/kP6AbYKS/wordcamp-wcfay-11-fayetteville-blog-t007-cottonrohrscheibwpprofitableforagencies-hd720p_std.original.jpg\" width=\"160\" height=\"120\" /></a></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, 07 Dec 2011 13:02: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:14:\"wcfayetteville\";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:43:\"Dev Blog: WordPress 3.3 Release Candidate 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:33:\"http://wordpress.org/news/?p=2119\";s:7:\"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:\"http://wordpress.org/news/2011/12/wordpress-3-3-release-candidate-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:2102:\"<p>The second release candidate for WordPress 3.3 is now available!</p>\n<p>As the first release candidate was well-received, we think we&#8217;re <em>really</em> close to a final release. Primarily, we&#8217;ve ensured that new toolbar (the admin bar in 3.2) has a consistent appearance across all browsers, and the API for developers is now final. You can check our bug tracker for the <a href=\"http://core.trac.wordpress.org/log/trunk?action=stop_on_copy&mode=stop_on_copy&rev=19567&stop_rev=19531&limit=100&verbose=on\">complete list of changes</a>.</p>\n<p><strong>Plugin and theme authors, please test your plugins and themes now</strong>, so that if there is a compatibility issue, we can figure it out before the final release. On our development blog, we&#8217;ve published <a href=\"http://wpdevel.wordpress.com/tag/3-3-dev-notes/\">a number of posts</a> that explain important things you need to know as you prepare for WordPress 3.3.</p>\n<p>If you haven’t tested WordPress 3.3 yet, now is the time — please though, not on your live site unless you’re adventurous. Once you install RC2, you can visit About WordPress page (hover over the WordPress logo in the top left) to see an overview of what&#8217;s to come in WordPress 3.3 (and what to test, of course).</p>\n<p>If you think you&#8217;ve found a bug, you can post to the <a href=\"http://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. Or, if you&#8217;re comfortable writing a reproducible bug report, file one on <a href=\"http://core.trac.wordpress.org/\">WordPress Trac</a>. Known issues that crop up will be listed <a href=\"http://core.trac.wordpress.org/report/6\">here</a>.</p>\n<p>Enjoy!</p>\n<p><em>To test WordPress 3.3, try the <a href=\"http://wordpress.org/extend/plugins/wordpress-beta-tester/\">WordPress Beta Tester plugin</a> (you’ll want &#8220;bleeding edge nightlies&#8221;). Or you can <a href=\"http://wordpress.org/wordpress-3.3-RC2.zip\">download the release candidate here</a> (zip).</em></p>\n<p>Sometimes time slows down<br />\nbetween releases &#8211; like now<br />\nThis is RC2</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, 07 Dec 2011 06:26: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:12:\"Andrew Nacin\";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:111:\"WordPress.tv: Forum with Michael Tilley, Kevin Kinder, Shannon Magsam, Alexa McGriff: Finding Your Niche Online\";s:7:\"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:27:\"http://wordpress.tv/?p=6755\";s:7:\"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:\"http://wordpress.tv/2011/12/06/forum-finding-your-niche-online/\";s: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:3793:\"<p>WordCamp Fayetteville #wcfay 2011 Blogger Track video 05 -</p>\n<p>WordCamp Fayetteville Forum: Finding Your Niche Online, Moderator Jon Schleuss</p>\n<p><a href=\"http://www.thecitywire.com/\">TheCityWire.com’s</a> Michael Tilley, <a href=\"http://www.nwatunedin.com/\">NWATunedIn.com’s</a> Kevin Kinder, <a href=\"http://nwamotherlode.com/\">NWAMotherlode.com’s</a> Shannon Magsam and <a href=\"http://www.ozarknaturalfoods.com/onfblog/\">OzarkNaturalFoods.com’s</a> Alexa McGriff will discuss their relatively new online publications, the challenges they face and how they measure success in their rapidly competitive markets.</p>\n<p>Michael Tilley represents the the City Wire, an online publication focused on business, politics and culture in Northwest Arkansas. The site began in 2006 as a community forum and emerged in 2008 as a news site. Tilley says they don’t compete with anyone, offering focused content driven to the business elite of the Fort Smith area.</p>\n<p>Kevin Kinder covers the music scene of Northwest Arkansas at TunedIn. The blog started in 2007 as a compliment to the newspaper publication What’s Up from Northwest Arkansas Newspapers. It has since evolved into a place with live music reviews, show times and general music news.</p>\n<p>Shannon Magsam is the co-creator of NWA Motherlode, a website with helpful information for Northwest Arkansas mothers. She says she and her co-creator Gwen Rockwood decided the area needed a website for moms. Magsam said their website gives transitioning moms an “instant community.”</p>\n<p>Alexa McGriff is part of Ozark Natural foods, a Fayetteville food co-op. She says they started blogging last November to provide another avenue for the company to connect with their customers. McGriff says they use the blog to educate customers on different products, give recipes and news updates on the organic food industry.</p>\n<div id=\"v-5KfzlH5X-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/6755/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/6755/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godelicious/wptv.wordpress.com/6755/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/delicious/wptv.wordpress.com/6755/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gofacebook/wptv.wordpress.com/6755/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/facebook/wptv.wordpress.com/6755/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gotwitter/wptv.wordpress.com/6755/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/twitter/wptv.wordpress.com/6755/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gostumble/wptv.wordpress.com/6755/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/stumble/wptv.wordpress.com/6755/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godigg/wptv.wordpress.com/6755/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/digg/wptv.wordpress.com/6755/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/goreddit/wptv.wordpress.com/6755/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/reddit/wptv.wordpress.com/6755/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=6755&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2011/12/06/forum-finding-your-niche-online/\"><img alt=\"WordCamp Fayetteville #wcfay Forum: Finding Your Niche Online, Moderator Jon Schleuss\" src=\"http://videos.videopress.com/5KfzlH5X/wordcamp-wcfay-11-fayetteville-blog-t005-jonschleusspanelfindingniche-hd720p_std.original.jpg\" width=\"160\" height=\"120\" /></a></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, 07 Dec 2011 03:04: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:14:\"wcfayetteville\";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:62:\"WordPress.tv: Jane Wells: WordCamp Fayetteville 2011 Town Hall\";s:7:\"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:27:\"http://wordpress.tv/?p=6751\";s:7:\"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:79:\"http://wordpress.tv/2011/12/06/jane-wells-wordcamp-fayetteville-2011-town-hall/\";s: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:2782:\"<p>WordCamp Fayetteville 2001 WordPress Video 04 -</p>\n<p>WordPress Town Hall presented by Jane Wells.  She answers questions from the #wcfay audience.</p>\n<p>Jane Wells wrote: &#8220;I wear a lot of hats when it comes to WordPress: I’m the user experience lead, I project manage the open source core development, I handle community initiatives under the aegis of the WordPress Foundation, and I’m the team lead for Automattic’s “Dot Org” team, which is a group of employees who work full-time on open source contributions. In the keynote session I’ll give you an idea of what we’re working on and what’s coming up in the near future, but hope to spend most of the allotted time taking questions. What do you want to know about WordPress, tho community, contributing to WordPress, WordCamps, or anything else that falls in this general topic? Bring your questions!&#8221;</p>\n<div id=\"v-bSIjEL4Q-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/6751/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/6751/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godelicious/wptv.wordpress.com/6751/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/delicious/wptv.wordpress.com/6751/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gofacebook/wptv.wordpress.com/6751/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/facebook/wptv.wordpress.com/6751/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gotwitter/wptv.wordpress.com/6751/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/twitter/wptv.wordpress.com/6751/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gostumble/wptv.wordpress.com/6751/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/stumble/wptv.wordpress.com/6751/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godigg/wptv.wordpress.com/6751/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/digg/wptv.wordpress.com/6751/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/goreddit/wptv.wordpress.com/6751/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/reddit/wptv.wordpress.com/6751/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=6751&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2011/12/06/jane-wells-wordcamp-fayetteville-2011-town-hall/\"><img alt=\"Jane Wells, WordPress Town Hall &#8211; WordCamp Fayetteville 2011\" src=\"http://videos.videopress.com/bSIjEL4Q/wordcamp-wcfay-11-fayetteville-blog-t004-janewellsanswerquestions-hd720p_std.original.jpg\" width=\"160\" height=\"120\" /></a></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, 06 Dec 2011 19:02: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:\"wcfayetteville\";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:51:\"WPTavern: Removing The Browser Nag Bar In 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:31:\"http://www.wptavern.com/?p=5943\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"http://feedproxy.google.com/~r/WordpressTavern/~3/q84w-kO0S6M/removing-the-browser-nag-bar-in-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:1835:\"<p>Scott Reilley who also goes by <a href=\"http://profiles.wordpress.org/users/coffee2code/\">Coffee2Code</a> is continuing his trend of releasing small but useful plugins for niche audiences. This time, he has released a plugin called <a href=\"http://wordpress.org/extend/plugins/no-browser-nag/\">No Browser Nag</a> that removes the Outdated Browser nag found within newer versions of WordPress. </p>\n<p><a href=\"http://www.wptavern.com/wp-content/uploads/2011/12/WPbrowsernag.png\" rel=\"thumbnail\"><img src=\"http://www.wptavern.com/wp-content/uploads/2011/12/WPbrowsernag.png\" alt=\"WordPress Browser Nag\" title=\"WPbrowsernag\" width=\"482\" height=\"211\" class=\"aligncenter size-full wp-image-5946\" /></a></p>\n<p>While it&#8217;s a bit foolish to condone the use of outdated browsers, sometimes users don&#8217;t have a choice. At least with this plugin, that user group will be able to remove the constant nag and allow WordPress to get off their backs about a situation they may not be able to control. However, if possible, you should upgrade to the newest versions of your browser of choice as they often contain important security updates, performance improvements, etc. </p>\n<p>Related posts:<ol>\n<li><a href=\"http://www.wptavern.com/wp-super-cache-1-0-released\" rel=\"bookmark\" title=\"WP Super Cache 1.0 Released\">WP Super Cache 1.0 Released</a></li>\n<li><a href=\"http://www.wptavern.com/share-your-wordpress-security-nightmare\" rel=\"bookmark\" title=\"Share Your WordPress Security Nightmare\">Share Your WordPress Security Nightmare</a></li>\n<li><a href=\"http://www.wptavern.com/plugin-authors-and-the-activation-hook\" rel=\"bookmark\" title=\"Plugin Authors And The Activation Hook\">Plugin Authors And The Activation Hook</a></li>\n</ol></p><img src=\"http://feeds.feedburner.com/~r/WordpressTavern/~4/q84w-kO0S6M\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 06 Dec 2011 18:00: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:6:\"Jeffro\";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:57:\"Weblog Tools Collection: The Rise in WordPress Popularity\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://weblogtoolscollection.com/?p=10783\";s:7:\"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:73:\"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/jKmbMvceZdk/\";s: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:2341:\"<p>It&#8217;s no doubt that the popularity of <a href=\"http://wordpress.org/\">WordPress</a> has soared as of late, even surpassing giants such as <a href=\"http://www.joomla.org/\">Joomla</a> and <a href=\"http://drupal.org/\">Drupal</a> in general usage. <a href=\"http://wp.smashingmagazine.com/2011/11/29/wordpress-cms-crown-drupal-joomla/\">A recent article</a> from <a href=\"http://www.smashingmagazine.com/\">Smashing Magazine</a> highlights some interesting points along WordPress&#8217;s climb to greatness, with some rather spot-on speculation for how WordPress has managed to surpass its assumed competition.</p>\n<p><a href=\"http://www.google.com/trends?q=WordPress%2C+Joomla%2C+Drupal\"><img class=\"aligncenter size-full wp-image-10790\" title=\"WordPress vs Joomla vs Drupal\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2011/12/wordpressvs2.jpg\" alt=\"WordPress vs Joomla vs Drupal\" width=\"400\" height=\"198\" /></a></p>\n<p>Of course, there&#8217;s the obvious factor of WordPress&#8217;s ease of use and development that have propelled it forward significantly, but its focus on blogging is what has really set it apart. WordPress has certainly grown into a rather capable CMS, but it&#8217;s a blogging platform first and foremost, and you&#8217;ll be hard-pressed to find a single feature in WordPress that can&#8217;t be used by a general blogger. When you focus on a specific direction, you can use all of your creative talent and energy to build a solid product that does exactly what it&#8217;s supposed to do, empower a blogger to do something great, like <a href=\"http://en.blog.wordpress.com/2011/12/05/biggest-news-2011/\">cover some of the biggest news stories of 2011</a> with more details and more facts than most major news companies.</p>\n<p>Without a doubt, every platform has its purpose and there are certainly folks out there who will find one platform to be of more use to them than the other (as the founders of Drupal and WordPress <a href=\"http://weblogtoolscollection.com/archives/2011/10/17/wordpress-vs-drupal-on-stage/\">have already discussed</a>), but it&#8217;s WordPress&#8217;s focus on blogging and slow growth into the CMS-sphere that is really propelling it as the platform of choice.</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/jKmbMvceZdk\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 06 Dec 2011 14:00: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"James\";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:37:\"WPTavern: WP Super Cache 1.0 Released\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://www.wptavern.com/?p=5940\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"http://feedproxy.google.com/~r/WordpressTavern/~3/LSiD6EMVqdE/wp-super-cache-1-0-released\";s: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:1402:\"<p>Congrats to Donncha O Caoimh for <a href=\"http://ocaoimh.ie/2011/12/05/wp-super-cache-1-0/\">releasing version 1.0</a> of his popular caching plugin, WP Super Cache. The release is an incremental improvement over previous versions but contains a number of bugfixes and new features such as a &#8220;<em>Delete Cache</em>&#8221; link within the admin bar. Back in 2009 when the plugin was first released, it was <strong>THE</strong> plugin that everyone suggested using if you wanted to increase performance on your site due to caching. Now a days, it seems as though W3 Total Cache has taken over that position. However, it&#8217;s nice to see Donncha still improving the plugin to provide users an alternate choice in caching solutions. </p>\n\n\n<p>Related posts:<ol><li><a href=\"http://www.wptavern.com/gravityforms-1-5-released-tons-of-new-stuff\" rel=\"bookmark\" title=\"GravityForms 1.5 Released &#8211; Tons Of New Stuff\">GravityForms 1.5 Released &#8211; Tons Of New Stuff</a></li>\n<li><a href=\"http://www.wptavern.com/gravityforms-1-1-released\" rel=\"bookmark\" title=\"GravityForms 1.1 Released\">GravityForms 1.1 Released</a></li>\n<li><a href=\"http://www.wptavern.com/custom-meta-boxes-0-7-released\" rel=\"bookmark\" title=\"Custom Meta Boxes 0.7 Released\">Custom Meta Boxes 0.7 Released</a></li>\n</ol></p><img src=\"http://feeds.feedburner.com/~r/WordpressTavern/~4/LSiD6EMVqdE\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 06 Dec 2011 14:00: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Jeffro\";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:135:\"WordPress.tv: Lela Davidson: Social Media Consistency – Skip the Overwhelm and Create a Schedule That Works – WordCamp Fayetteville\";s:7:\"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:27:\"http://wordpress.tv/?p=6769\";s:7:\"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:144:\"http://wordpress.tv/2011/12/06/lela-davidson-social-media-consistency-skip-the-overwhelm-and-create-a-schedule-that-works-wordcamp-fayetteville/\";s: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:2822:\"<p>WordCamp Fayetteville #wcfay 2011 Blogger Track video 06 -</p>\n<p>Lela Davidson, Social Media Consistency: Skip the Overwhelm and Create a Schedule That Works</p>\n<p>One of the keys to a successful social media campaign is consistency. However, like a lot of other business development actions, blogging and social network updates are often pushed to the bottom of the to-do list to make time for more urgent matters. Even worse, they are often avoided altogether out of fear they will become overwhelming. Social media is always on, but you don’t have to be. In this session, attendees decide what social media can and cannot do for their particular business or project. They then go through a process of defining an objective for their blog or social media site and then craft an updating schedule that moves them toward achieving that goal.</p>\n<div id=\"v-AEPDXYVz-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/6769/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/6769/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godelicious/wptv.wordpress.com/6769/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/delicious/wptv.wordpress.com/6769/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gofacebook/wptv.wordpress.com/6769/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/facebook/wptv.wordpress.com/6769/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gotwitter/wptv.wordpress.com/6769/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/twitter/wptv.wordpress.com/6769/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gostumble/wptv.wordpress.com/6769/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/stumble/wptv.wordpress.com/6769/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godigg/wptv.wordpress.com/6769/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/digg/wptv.wordpress.com/6769/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/goreddit/wptv.wordpress.com/6769/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/reddit/wptv.wordpress.com/6769/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=6769&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2011/12/06/lela-davidson-social-media-consistency-skip-the-overwhelm-and-create-a-schedule-that-works-wordcamp-fayetteville/\"><img alt=\"WordCamp Fayetteville Lela Davidson, Social Media Consistency\" src=\"http://videos.videopress.com/AEPDXYVz/wordcamp-wcfay-11-fayetteville-blog-t006b-edited-leladavidsonsocialmedia-hd720p-smaller650mb_std.original.jpg\" width=\"160\" height=\"120\" /></a></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, 06 Dec 2011 12:55:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"wcfayetteville\";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:54:\"WordPress.tv: Keith Crawford: Getting Things Published\";s:7:\"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:27:\"http://wordpress.tv/?p=6807\";s:7:\"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:\"http://wordpress.tv/2011/12/05/keith-crawford-getting-things-published/\";s: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:2398:\"<p>WordCamp Fayetteville video 08 -</p>\n<p>Keith Crawford Geting Things Published presentation, excerpt of Evernote tips intro section.</p>\n<p>This presentation will discuss tips and tools for creating content in the midst of a hectic schedule. Expect practical and actionable advice to make capturing ideas and publishing more effective and efficient. We’ll cover specific WordPress tools and how to improve the process of blogging. This is a survival guide for blogging while busy.</p>\n<div id=\"v-qqKON31t-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/6807/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/6807/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godelicious/wptv.wordpress.com/6807/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/delicious/wptv.wordpress.com/6807/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gofacebook/wptv.wordpress.com/6807/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/facebook/wptv.wordpress.com/6807/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gotwitter/wptv.wordpress.com/6807/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/twitter/wptv.wordpress.com/6807/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gostumble/wptv.wordpress.com/6807/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/stumble/wptv.wordpress.com/6807/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godigg/wptv.wordpress.com/6807/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/digg/wptv.wordpress.com/6807/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/goreddit/wptv.wordpress.com/6807/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/reddit/wptv.wordpress.com/6807/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=6807&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2011/12/05/keith-crawford-getting-things-published/\"><img alt=\"WordCamp Fayetteville Keith Crawford Geting Things Published Evernote tips\" src=\"http://videos.videopress.com/qqKON31t/wordcamp-wcfay-11-fayetteville-blog-t008-keithcrawfordgettingthingspublishedevernote-hd720p_std.original.jpg\" width=\"160\" height=\"120\" /></a></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, 06 Dec 2011 03:07:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"wcfayetteville\";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:27:\"Donncha: WP Super Cache 1.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"http://ocaoimh.ie/?p=89496606\";s:7:\"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:\"http://ocaoimh.ie/2011/12/05/wp-super-cache-1-0/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3494:\"<p><a href=\"http://wordpress.org/extend/plugins/wp-super-cache/\">WP Super Cache</a> is a fast page caching plugin for WordPress that can significantly speed up websites.</p>\n<p>The first release of this plugin was in September 2009 so this has been a bit too long in the making. Back then the main caching plugin was WP Cache, which this plugin is based on, but now there are quite a few including W3 Total Cache, Hypercache, Quick Cache and <a href=\"http://wordpress.org/extend/plugins/search.php?q=caching\">many more</a>.</p>\n<p>Version 1.0 is an incremental upgrade from the previous release but it has a number of bugfixes and new features:</p>\n<ol>\n<li> The all new <a href=\"http://ocaoimh.ie/2011/11/29/wp-super-cache-scheduler-and-admin-bar-link/\">scheduler and admin bar link</a> should please many people, especially those who want to clear the cache on their site at particular times. The &#8220;Delete Cache&#8221; admin bar link is something people have been asking about for as long as WordPress has had that bar!</li>\n<li> You can preload <a href=\"http://ocaoimh.ie/2011/10/19/preload-categories-and-custom-post-content/\">categories and taxonomies</a> although this hasn&#8217;t really been tested as well as I&#8217;d like. It works for me but YMMV.</li>\n<li> There&#8217;s <a href=\"http://ocaoimh.ie/2011/07/11/get-a-sneak-preview-of-wp-super-cache-before-1-0/\">better support for mobile and https users</a> now. Mobile support should scale a lot more than previously.</li>\n<li> The cache tester is fixed now and the plugin traps as many errors as possible. It&#8217;ll also spit out some helpful text if there is a problem. 99% of the time it&#8217;s because the server can&#8217;t request a page from itself.</li>\n<li> At the risk of annoying users who comment on your site you can make them appear to be anonymous users which will drastically help your server if they like commenting a lot. Unfortunately it stops the comment form populating with their details so it might be worth using an external comment system like Intense Debate or Disqus!</li>\n<li> The Advanced Settings page now lists a &#8220;do not cache page&#8221; secret key. Use this key to view any page of your site uncached.</li>\n<li> The cache file listing and delete links should work again now.</li>\n<li> And many many more bug fixes.</li>\n</ol>\n<p>Once you upgrade go visit the settings page and check out what&#8217;s new there. The upgrade worked fine for me, but there&#8217;s no harm looking. Pay close attention to the new garbage collector. The scheduler is rather powerful and flexible so it&#8217;s worth setting up right.</p>\n<p>If you have any problems please leave a comment here or use <a href=\"http://wordpress.org/tags/wp-super-cache?forum_id=10\">the support forum</a>.</p>\n <img src=\"http://ocaoimh.ie/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=89496606\" width=\"1\" height=\"1\" />\n<p><strong>Related Posts</strong><ul><li> <a href=\"http://ocaoimh.ie/2008/10/24/wp-super-cache-084-the-garbage-collector/\" rel=\"bookmark\" title=\"Permanent Link: WP Super Cache 0.8.4, the garbage collector\">WP Super Cache 0.8.4, the garbage collector</a></li><li> <a href=\"http://ocaoimh.ie/2009/01/09/wp-super-cache-087/\" rel=\"bookmark\" title=\"Permanent Link: WP Super Cache 0.8.7\">WP Super Cache 0.8.7</a></li><li> <a href=\"http://ocaoimh.ie/2010/02/08/wp-super-cache-099/\" rel=\"bookmark\" title=\"Permanent Link: WP Super Cache 0.9.9\">WP Super Cache 0.9.9</a></li></ul></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, 05 Dec 2011 18:10: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: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: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:52:\"Andrew Nacin: When Did You Last Blog? A Fresh Start\";s:7:\"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:24:\"http://nacin.com/?p=3691\";s:7:\"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:\"http://nacin.com/2011/12/05/when-did-you-last-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4292:\"<p>You know it&#8217;s bad when the most influential people in your life have all ganged up on you.</p>\n<p>My best friend Ben Balter wrote a script called <a href=\"http://ben.balter.com/sandbox/when-did-nacin-last-blog/\">When Did Nacin Last Blog</a> (don&#8217;t worry, <a href=\"https://github.com/benbalter/When-Did-Nacin-Last-Blog\">it&#8217;s on Github</a>).</p>\n<p>My girlfriend planted the &#8220;When did you last blog?&#8221; question at WordCamp Richmond last month.</p>\n<p>My own father called me in October while I was in Seattle to quiz me on when my last blog post was (&#8220;April 16,&#8221; I knew off the top of my head), after which he pointed out I was also in Seattle then.</p>\n<p>My boss recently sent me a friendly reminder letting me know it&#8217;s been 229 days since my last post. I wouldn&#8217;t be surprised if Matt used Ben&#8217;s tool.</p>\n<p>It&#8217;s not that I don&#8217;t post to blogs. In the last 233 days, I&#8217;ve posted 19 times to the <a href=\"http://wpdevel.wordpress.com/author/nacin/\">WordPress development P2</a>, 16 times to <a href=\"http://wppolyglots.wordpress.com/author/nacin/\">our translators blog</a>, and three times to the <a href=\"http://wordpress.org/news/author/nacin/\">WordPress Blog</a>.</p>\n<p>And it&#8217;s not that I don&#8217;t write. I use <a href=\"http://twitter.com/nacin\">Twitter</a> as a microblogging tool to share links and ideas. And since April 16, I&#8217;ve posted more than 2,600 comments on the WordPress bug tracker, and opened 81 tickets. (Exactly one-third remain open.)</p>\n<p>I think the problem is two-fold. I don&#8217;t make time to blog, even though posting to a personal blog might as well be a job responsibility for me. I truly love blogging and web publishing, it&#8217;s just that after spending 60 hours a week on building, testing, and using web publishing software, I typically want to take a break. Second, I find other ways to publish most of the content I would publish, whether it&#8217;s on our bug tracker or on Twitter.</p>\n<p>I&#8217;d like to change both of those things. So I&#8217;ve done some things to prepare for a change in routine.</p>\n<p>I&#8217;ve switched to the Twenty Eleven theme using the one-column layout. I probably prefer Twenty Ten visually, but Twenty Eleven supports a number of post formats that I hope to leverage while microblogging. I have a feeling I&#8217;ll continue to tinker with this blog&#8217;s appearance — I&#8217;ve liked the designs and blogging styles of a <a title=\"Andrew Spittle\" href=\"http://andrewspittle.net/\">few</a> <a title=\"Alex Byers\" href=\"http://byersalex.com/\">good</a> <a title=\"Daniel Bachhuber\" href=\"http://danielbachhuber.com/\">friends</a>.</p>\n<p>Just a month ago, I finally acquired the nacin.com domain, which I&#8217;ve wanted for many years. Until this weekend, the site resided at andrewnacin.com, but given that nacin is my identity both online and in real life (I&#8217;m called Nacin more than Andy or Andrew), it was symbolically important to me. (Thanks Pete Mall for being my proxy for negotiations.)</p>\n<p>I have been keeping a list of potential essays to write, and started to draft a number of future posts. With the final release of WordPress 3.3 is just around the corner, there are a number of tutorials for cool new APIs I could probably cover. There&#8217;s a lot more I can write about — in the last nine months, I&#8217;ve worked on both coasts to get open source in newsrooms and government agencies. I&#8217;ve attended meetups in New York, Seattle, and of course D.C. I&#8217;ve evangelized WordPress at nine WordCamps, a PHP conference, and a BBQ festival.</p>\n<p>I&#8217;ll also be posting links, quotes, and ideas that would normally go straight to Twitter. Lots of WordPress, yes, but you&#8217;ll likely see an infusion of non-WordPress things I find interesting, particularly in the areas and intersections of technology, open source, journalism, and politics (based on some of my recent tweets). I last blogged 233 days ago. It&#8217;s time this has changed.</p>\n<p class=\"share-sfc-stc\"><a href=\"http://twitter.com/share?url=http%3A%2F%2Fwp.me%2FpQEdq-Xx&count=horizontal&related=nacin&text=When%20Did%20You%20Last%20Blog%3F%20A%20Fresh%20Start\" class=\"twitter-share-button\"></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, 05 Dec 2011 15:39: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Andrew Nacin\";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:59:\"Weblog Tools Collection: WordPress Plugin Releases for 12/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:41:\"http://weblogtoolscollection.com/?p=10780\";s:7:\"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:73:\"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/GjtUBTdPqsY/\";s: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:1043:\"<h3>New plugins</h3>\n<p><a href=\"http://wordpress.org/extend/plugins/pricing-table/\"><strong>Pricing Table</strong></a> comes with very flexible and dynamic options for creating a pricing table just in a few seconds.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/quick-notice/\"><strong>Quick Notice Bar</strong></a> will help the admin to publish highlighted notices on the site header.</p>\n<h3>Updated plugins</h3>\n<p><a href=\"http://wordpress.org/extend/plugins/download-manager/\"><strong>Download Manager</strong></a> will help you to manage, track and control file downloads from your site.</p>\n<p><a href=\"http://scribu.net/wordpress/posts-to-posts\"><strong>Posts 2 Posts</strong></a> allows you to create many-to-many connections between posts of all kinds.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/wpstorecart/\"><strong>wpStoreCart</strong></a> is a free, open source, and full featured e-commerce platform.</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/GjtUBTdPqsY\" height=\"1\" width=\"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:\"Mon, 05 Dec 2011 15:15: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:5:\"James\";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:51:\"WPTavern: Case Study On How WordPress Won The Crown\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://www.wptavern.com/?p=5934\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"http://feedproxy.google.com/~r/WordpressTavern/~3/FKS4lDTfXTg/case-study-on-how-wordpress-won-the-crown\";s: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:2085:\"<p><a href=\"http://wp.smashingmagazine.com/2011/11/29/wordpress-cms-crown-drupal-joomla/\">Interesting case study</a> using a number of cool data points that shows how WordPress has won the crown amongst Joomla and Drupal for being the most widely used CMS in the world. One things for sure, it certainly paid off for WordPress to be focused on making the democratization of content publishing as easy as possible first, then making WordPress incredibly extensible later. There is an entire laundry list of reasons of why WordPress is at the top of the mountain right now, the success of the platform can not be traced back to one thing. The comments in the article contain a couple of those reasons while the others are spread amongst the various comment and forum threads on the web. </p>\n<p>The past 7-8 years is very interesting to look back upon to figure out how WordPress ended up in it&#8217;s current spot of being the <del datetime=\"2011-12-06T18:38:55+00:00\">best in breed within the content management space</del>. But, what I find even more interesting is if whether or not the things that made WordPress successful in the past will continue to stick around so that the platform is equally or more successful in the future. Focus, ease of use, extensibility, etc. Be right back, I&#8217;m going to go  ask my magic 8 ball. </p>\n\n\n<p>Related posts:<ol><li><a href=\"http://www.wptavern.com/from-the-other-side-of-the-fence-how-wordpress-won\" rel=\"bookmark\" title=\"From The Other Side Of The Fence &#8211; How WordPress Won\">From The Other Side Of The Fence &#8211; How WordPress Won</a></li>\n<li><a href=\"http://www.wptavern.com/joomla-against-drupal-against-wordpress\" rel=\"bookmark\" title=\"Joomla Against Drupal Against WordPress\">Joomla Against Drupal Against WordPress</a></li>\n<li><a href=\"http://www.wptavern.com/the-header-wont-be-changing-in-28\" rel=\"bookmark\" title=\"The Header Won&#8217;t Be Changing In 2.8\">The Header Won&#8217;t Be Changing In 2.8</a></li>\n</ol></p><img src=\"http://feeds.feedburner.com/~r/WordpressTavern/~4/FKS4lDTfXTg\" height=\"1\" width=\"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:\"Mon, 05 Dec 2011 14:00:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Jeffro\";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:58:\"Weblog Tools Collection: WordPress Theme Releases for 12/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:41:\"http://weblogtoolscollection.com/?p=10775\";s:7:\"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:73:\"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/pK4KLqOjEMw/\";s: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:986:\"<p><img class=\"alignnone size-full wp-image-10776\" title=\"mixinstyles\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2011/12/mixinstyles.jpg\" alt=\"\" width=\"150\" height=\"113\" /></p>\n<p><a href=\"http://www.jasong-designs.com/2011/11/30/mixin-styles/\"><strong>Mixin&#8217; Styles</strong></a> makes use of advanced CSS 3 features such as rounded corners, text shadow and font embedding, but renders just fine in browsers that do not support CSS 3. You can change several color schemes and backgrounds from the Styling theme options page.</p>\n<p><img class=\"alignnone size-full wp-image-10777\" title=\"wpeden\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2011/12/wpeden.jpg\" alt=\"\" width=\"150\" height=\"109\" /></p>\n<p><a href=\"http://wpeden.com/product/wp-eden-wordpress-theme/\"><strong>WP Eden</strong></a> is a fast-loading CSS-based theme with no images.</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/pK4KLqOjEMw\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 03 Dec 2011 14:00:46 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"James\";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:85:\"WordPress.tv: Jonathan Wondrusch: Turning WordPress into a CMS with Custom Post Types\";s:7:\"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:27:\"http://wordpress.tv/?p=8645\";s:7:\"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:\"http://wordpress.tv/2011/12/03/jonathan-wondrusch-turning-wordpress-into-a-cms-with-custom-post-types/\";s: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:1884:\"<div id=\"v-o3nAtEL0-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/8645/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/8645/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godelicious/wptv.wordpress.com/8645/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/delicious/wptv.wordpress.com/8645/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gofacebook/wptv.wordpress.com/8645/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/facebook/wptv.wordpress.com/8645/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gotwitter/wptv.wordpress.com/8645/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/twitter/wptv.wordpress.com/8645/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gostumble/wptv.wordpress.com/8645/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/stumble/wptv.wordpress.com/8645/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godigg/wptv.wordpress.com/8645/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/digg/wptv.wordpress.com/8645/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/goreddit/wptv.wordpress.com/8645/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/reddit/wptv.wordpress.com/8645/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=8645&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2011/12/03/jonathan-wondrusch-turning-wordpress-into-a-cms-with-custom-post-types/\"><img alt=\"Developer: Jonathan Wondrusch: Turning WordPress into a CMS with Custom Post Types\" src=\"http://videos.videopress.com/o3nAtEL0/developer-wordpress-into-cms_std.original.jpg\" width=\"160\" height=\"120\" /></a></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 2011 11:03: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:12:\"wckansascity\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:42;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"WordPress.tv: Tom Jenkins: Understanding the Relationship Between Parent & Child Themes in 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:27:\"http://wordpress.tv/?p=8637\";s:7:\"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:115:\"http://wordpress.tv/2011/12/02/tom-jenkins-understanding-the-relationship-between-parent-child-themes-in-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:1921:\"<div id=\"v-vfMamwqr-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/8637/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/8637/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godelicious/wptv.wordpress.com/8637/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/delicious/wptv.wordpress.com/8637/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gofacebook/wptv.wordpress.com/8637/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/facebook/wptv.wordpress.com/8637/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gotwitter/wptv.wordpress.com/8637/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/twitter/wptv.wordpress.com/8637/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gostumble/wptv.wordpress.com/8637/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/stumble/wptv.wordpress.com/8637/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godigg/wptv.wordpress.com/8637/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/digg/wptv.wordpress.com/8637/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/goreddit/wptv.wordpress.com/8637/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/reddit/wptv.wordpress.com/8637/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=8637&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2011/12/02/tom-jenkins-understanding-the-relationship-between-parent-child-themes-in-wordpress/\"><img alt=\"Developer: Tom Jenkins: Understanding the Relationship Between Parent & Child Themes in WordPress.\" src=\"http://videos.videopress.com/vfMamwqr/developer-02-parent-and-child-themes_std.original.jpg\" width=\"160\" height=\"120\" /></a></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 2011 03:01:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"wckansascity\";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:67:\"WordPress.tv: David Tufts: Beyond the Theme – WordPress as an API\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"http://wordpress.tv/?p=8074\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"http://wordpress.tv/2011/12/02/david-tufts-beyond-the-theme-wordpress-as-an-api/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1888:\"<div id=\"v-3spTv8ns-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/8074/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/8074/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godelicious/wptv.wordpress.com/8074/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/delicious/wptv.wordpress.com/8074/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gofacebook/wptv.wordpress.com/8074/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/facebook/wptv.wordpress.com/8074/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gotwitter/wptv.wordpress.com/8074/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/twitter/wptv.wordpress.com/8074/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gostumble/wptv.wordpress.com/8074/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/stumble/wptv.wordpress.com/8074/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godigg/wptv.wordpress.com/8074/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/digg/wptv.wordpress.com/8074/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/goreddit/wptv.wordpress.com/8074/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/reddit/wptv.wordpress.com/8074/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=8074&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2011/12/02/david-tufts-beyond-the-theme-wordpress-as-an-api/\"><img alt=\"chi-tufts-beyond-the-theme-073011-SD 24 No Gamma Correction 800kbits\" src=\"http://videos.videopress.com/3spTv8ns/chi-tufts-beyond-the-theme-073011-sd-24-no-gamma-correction-800kbits_std.original.jpg\" width=\"160\" height=\"120\" /></a></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, 02 Dec 2011 19:04: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:15:\"wordcampchicago\";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:51:\"WPTavern: Dre Armeda On WordPress End-User Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://www.wptavern.com/?p=5930\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"http://feedproxy.google.com/~r/WordpressTavern/~3/pgRCaIBVm4A/dre-armeda-on-wordpress-end-user-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1241:\"<p>From WordCamp Chicago 2011, Dre Armeda who is one of the guys behind the awesome security <a href=\"http://blog.sucuri.net/\">service/site Securi</a>. His presentation contains a ton of information that all end users should take note of. </p>\n<div class=\"aligncenter\"></div>\n\n\n<p>Related posts:<ol><li><a href=\"http://www.wptavern.com/four-common-sense-ways-to-improve-security-on-your-wordpress-powered-site\" rel=\"bookmark\" title=\"Four Common Sense Ways To Improve Security On Your WordPress Powered Site\">Four Common Sense Ways To Improve Security On Your WordPress Powered Site</a></li>\n<li><a href=\"http://www.wptavern.com/top-5-wordpress-security-tips-you-most-likely-dont-follow\" rel=\"bookmark\" title=\"Top 5 WordPress Security Tips You Most Likely Don&#8217;t Follow\">Top 5 WordPress Security Tips You Most Likely Don&#8217;t Follow</a></li>\n<li><a href=\"http://www.wptavern.com/wpweekly-episode-72-end-user-responsibility-and-wordpress-security\" rel=\"bookmark\" title=\"WPWeekly Episode 72 &#8211; End User Responsibility And WordPress Security\">WPWeekly Episode 72 &#8211; End User Responsibility And WordPress Security</a></li>\n</ol></p><img src=\"http://feeds.feedburner.com/~r/WordpressTavern/~4/pgRCaIBVm4A\" height=\"1\" width=\"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, 02 Dec 2011 18:00: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:6:\"Jeffro\";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:47:\"WPTavern: Feature Filled Comment Administration\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://www.wptavern.com/?p=5926\";s:7:\"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:99:\"http://feedproxy.google.com/~r/WordpressTavern/~3/dCNkTgb-TmQ/feature-filled-comment-administration\";s: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:2538:\"<p>Comment administration within WordPress has come a long way. <a href=\"http://lorelle.wordpress.com/2011/11/28/18-things-you-can-do-on-the-wordpress-comments-panel/\">As illustrated by Lorelle VanFossen</a>, the comment administration panel these days has 18 different features for comment management. While the current iteration of comment management features are great, there is one particular quick link that I hope gets added in a future version of WordPress. It&#8217;s called &#8216;<em>De-Link</em>&#8216; and it&#8217;s one of my favorite features of the <a href=\"http://wordpress.org/extend/plugins/wp-ajax-edit-comments/\">WP Ajax Edit comments plugin</a>. </p>\n<div id=\"attachment_5927\" class=\"wp-caption aligncenter\"><a href=\"http://www.wptavern.com/wp-content/uploads/2011/12/delinkInAjaxEditComments.png\" rel=\"thumbnail\"><img src=\"http://www.wptavern.com/wp-content/uploads/2011/12/delinkInAjaxEditComments.png\" alt=\"\" title=\"delinkInAjaxEditComments\" width=\"284\" height=\"155\" class=\"size-full wp-image-5927\" /></a><p class=\"wp-caption-text\">Delinking Feature Within WP Ajax Edit Comments</p></div>\n<p>I&#8217;ve noticed that a large amount of comments that I have deleted or trashed in the past can now be approved after I de-link them as the content is usually related to the post. It&#8217;s their way of trying to get a link on the site. I have my own rules for which sites are allowed to be linked to and which are not but if the comment is relevant to the post at hand but contains a bad link, I&#8217;ll simply de-link, then approve it. Sure, I could go into the Quick Edit mode within the comment management area and manually remove the links but the method of clicking once sure seems a lot easier to me then clicking the mouse button a few times. </p>\n\n\n<p>Related posts:<ol><li><a href=\"http://www.wptavern.com/wp-ajax-edit-comments-needs-new-dev\" rel=\"bookmark\" title=\"WP AJax Edit Comments Needs New Dev\">WP AJax Edit Comments Needs New Dev</a></li>\n<li><a href=\"http://www.wptavern.com/please-adopt-this-plugin-comment-quicktags-reloaded\" rel=\"bookmark\" title=\"Please Adopt This Plugin &#8211; Comment Quicktags Reloaded\">Please Adopt This Plugin &#8211; Comment Quicktags Reloaded</a></li>\n<li><a href=\"http://www.wptavern.com/request-deletion-now-part-of-ajax-edit-comments\" rel=\"bookmark\" title=\"Request Deletion Now Part Of Ajax Edit Comments\">Request Deletion Now Part Of Ajax Edit Comments</a></li>\n</ol></p><img src=\"http://feeds.feedburner.com/~r/WordpressTavern/~4/dCNkTgb-TmQ\" height=\"1\" width=\"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, 02 Dec 2011 14:00:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Jeffro\";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:66:\"WordPress.tv: Justin Sainton: Roll Your Own Groupon with 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:27:\"http://wordpress.tv/?p=8649\";s:7:\"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:83:\"http://wordpress.tv/2011/12/02/justin-sainton-roll-your-own-groupon-with-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:1844:\"<div id=\"v-K6g6NurK-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/8649/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/8649/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godelicious/wptv.wordpress.com/8649/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/delicious/wptv.wordpress.com/8649/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gofacebook/wptv.wordpress.com/8649/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/facebook/wptv.wordpress.com/8649/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gotwitter/wptv.wordpress.com/8649/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/twitter/wptv.wordpress.com/8649/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gostumble/wptv.wordpress.com/8649/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/stumble/wptv.wordpress.com/8649/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godigg/wptv.wordpress.com/8649/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/digg/wptv.wordpress.com/8649/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/goreddit/wptv.wordpress.com/8649/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/reddit/wptv.wordpress.com/8649/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=8649&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2011/12/02/justin-sainton-roll-your-own-groupon-with-wordpress/\"><img alt=\"Developer: Justin Sainton: Roll Your Own Groupon with WordPress\" src=\"http://videos.videopress.com/K6g6NurK/developer-your-own-groupon_std.original.jpg\" width=\"160\" height=\"120\" /></a></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, 02 Dec 2011 11: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"wckansascity\";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:48:\"WordPress.tv: Eric Biven: Plugin Development 101\";s:7:\"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:27:\"http://wordpress.tv/?p=8641\";s:7:\"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:\"http://wordpress.tv/2011/12/01/eric-biven-plugin-development-101/\";s: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:1814:\"<div id=\"v-juT2rJ1K-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/8641/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/8641/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godelicious/wptv.wordpress.com/8641/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/delicious/wptv.wordpress.com/8641/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gofacebook/wptv.wordpress.com/8641/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/facebook/wptv.wordpress.com/8641/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gotwitter/wptv.wordpress.com/8641/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/twitter/wptv.wordpress.com/8641/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gostumble/wptv.wordpress.com/8641/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/stumble/wptv.wordpress.com/8641/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godigg/wptv.wordpress.com/8641/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/digg/wptv.wordpress.com/8641/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/goreddit/wptv.wordpress.com/8641/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/reddit/wptv.wordpress.com/8641/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=8641&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2011/12/01/eric-biven-plugin-development-101/\"><img alt=\"Developer: Tom Jenkins: Plugin Development 101\" src=\"http://videos.videopress.com/juT2rJ1K/developer-03-plugin-development_std.original.jpg\" width=\"160\" height=\"120\" /></a></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, 02 Dec 2011 03:15:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"wckansascity\";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:50:\"WordPress.tv: Ben Metcalfe: WordPress Optimization\";s:7:\"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:27:\"http://wordpress.tv/?p=8532\";s:7:\"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:\"http://wordpress.tv/2011/12/01/ben-metcalfe-wordpress-optimization/\";s: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:1784:\"<div id=\"v-XSnXh7Ny-1\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/8532/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/8532/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godelicious/wptv.wordpress.com/8532/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/delicious/wptv.wordpress.com/8532/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gofacebook/wptv.wordpress.com/8532/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/facebook/wptv.wordpress.com/8532/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gotwitter/wptv.wordpress.com/8532/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/twitter/wptv.wordpress.com/8532/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gostumble/wptv.wordpress.com/8532/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/stumble/wptv.wordpress.com/8532/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godigg/wptv.wordpress.com/8532/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/digg/wptv.wordpress.com/8532/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/goreddit/wptv.wordpress.com/8532/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/reddit/wptv.wordpress.com/8532/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=8532&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2011/12/01/ben-metcalfe-wordpress-optimization/\"><img alt=\"WordPress Optimization\" src=\"http://videos.videopress.com/XSnXh7Ny/wordpress-optimization2_std.original.jpg\" width=\"160\" height=\"120\" /></a></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, 02 Dec 2011 03:08: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"wordcampphilly\";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:23:\"Lloyd: You Do Not Scale\";s:7:\"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:30:\"http://foolswisdom.com/?p=3079\";s:7:\"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:\"http://foolswisdom.com/you-do-not-scale/\";s: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:1718:\"<blockquote cite=\"http://geemus.com/blog/2011/11/27/less-is-more/\"><p>&#8220;Most developers are itching to be a part of their favorite projects. You do not scale, but by giving developers tools and getting out of their way, your project can. So please remember that when issues are reported on your open source project, you should not fix them. I hope this serves you well and would love to hear about your experiences and help any way I can.&#8221;<br />\n<cite>By <a href=\"http://geemus.com\">Wesley Bear</a>y in &#8220;<a href=\"http://geemus.com/blog/2011/11/27/less-is-more/\">Less is More</a> published Nov 27, 2011. Hat tip <a href=\"http://hyperboledesign.com/\">Jake Dahn</a>.</cite></p></blockquote>\n<p>A leader will always lead by being prepared to do the work themselves, but I&#8217;m really feeling what <a href=\"https://twitter.com/geemus\">@geemus</a> wrote.</p>\n<p>It is in the ethos of the WordPress community, and the company, my former employer, <a href=\"http://ma.tt/\">Matt Mullenweg</a> formed to support it. Here is my favorite part of <a href=\"http://ma.tt/2011/09/automattic-creed/\">the Automattic Creed</a>:</p>\n<blockquote><p>&#8220;I will never pass up an opportunity to help out a colleague, and I’ll remember the days before I knew everything.&#8221;</p></blockquote>\n<p>I&#8217;m excited by the help I&#8217;m receiving from my new colleagues at <a href=\"http://www.pistoncloud.com/\">Piston Cloud</a> and the <a href=\"http://www.openstack.org/\">OpenStack community</a>.</p>\n<p>Pistoneers are kindred spirits of Automatticians. Before joining the Piston Cloud team I noted automation being a regular theme on &#8220;<a href=\"http://www.pistoncloud.com/category/team/\">Our Team</a>&#8220;.</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 2011 19:57: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:5:\"Lloyd\";s:7:\"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\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Fri, 16 Dec 2011 09:24:27 GMT\";s:12:\"content-type\";s:15:\"application/xml\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Fri, 16 Dec 2011 09:15:26 GMT\";s:14:\"content-length\";s:6:\"153566\";s:4:\"x-nc\";s:11:\"HIT luv 139\";s:13:\"accept-ranges\";s:5:\"bytes\";}s:5:\"build\";s:14:\"20090627192103\";}','no'),(3488,0,'_transient_timeout_plugin_slugs','1324030523','no'),(3489,0,'_transient_plugin_slugs','a:7:{i:0;s:33:\"addthis/addthis_social_widget.php\";i:1;s:19:\"akismet/akismet.php\";i:2;s:43:\"all-in-one-seo-pack/all_in_one_seo_pack.php\";i:3;s:35:\"si-contact-form/si-contact-form.php\";i:4;s:9:\"hello.php\";i:5;s:15:\"worker/init.php\";i:6;s:31:\"wp-socializer/wp-socializer.php\";}','no'),(3269,0,'_site_transient_timeout_wporg_theme_feature_list','1323716209','yes'),(3270,0,'_site_transient_wporg_theme_feature_list','a:5:{s:6:\"Colors\";a:15:{i:0;s:5:\"black\";i:1;s:4:\"blue\";i:2;s:5:\"brown\";i:3;s:4:\"gray\";i:4;s:5:\"green\";i:5;s:6:\"orange\";i:6;s:4:\"pink\";i:7;s:6:\"purple\";i:8;s:3:\"red\";i:9;s:6:\"silver\";i:10;s:3:\"tan\";i:11;s:5:\"white\";i:12;s:6:\"yellow\";i:13;s:4:\"dark\";i:14;s:5:\"light\";}s:7:\"Columns\";a:6:{i:0;s:10:\"one-column\";i:1;s:11:\"two-columns\";i:2;s:13:\"three-columns\";i:3;s:12:\"four-columns\";i:4;s:12:\"left-sidebar\";i:5;s:13:\"right-sidebar\";}s:5:\"Width\";a:2:{i:0;s:11:\"fixed-width\";i:1;s:14:\"flexible-width\";}s:8:\"Features\";a:18:{i:0;s:8:\"blavatar\";i:1;s:10:\"buddypress\";i:2;s:17:\"custom-background\";i:3;s:13:\"custom-colors\";i:4;s:13:\"custom-header\";i:5;s:11:\"custom-menu\";i:6;s:12:\"editor-style\";i:7;s:21:\"featured-image-header\";i:8;s:15:\"featured-images\";i:9;s:20:\"front-page-post-form\";i:10;s:19:\"full-width-template\";i:11;s:12:\"microformats\";i:12;s:12:\"post-formats\";i:13;s:20:\"rtl-language-support\";i:14;s:11:\"sticky-post\";i:15;s:13:\"theme-options\";i:16;s:17:\"threaded-comments\";i:17;s:17:\"translation-ready\";}s:7:\"Subject\";a:3:{i:0;s:7:\"holiday\";i:1;s:13:\"photoblogging\";i:2;s:8:\"seasonal\";}}','yes'),(278,0,'category_children','a:0:{}','yes'),(192,0,'theme_mods_parallelus-mingle','a:2:{i:0;b:0;s:18:\"nav_menu_locations\";a:2:{s:12:\"MainMenuLeft\";i:3;s:13:\"MainMenuRight\";i:4;}}','yes'),(193,0,'mingle_design_settings','a:6:{s:14:\"design_setting\";a:15:{s:5:\"label\";s:0:\"\";s:4:\"logo\";s:80:\"http://www.webdesign-uk.org/wp-content/uploads/2011/12/webdesign-uk.org_logo.png\";s:10:\"logo_width\";s:3:\"312\";s:11:\"logo_height\";s:2:\"70\";s:4:\"skin\";s:16:\"style-skin-1.css\";s:11:\"skin_custom\";s:0:\"\";s:7:\"sidebar\";s:12:\"3nkd4qxpuack\";s:10:\"css_custom\";s:0:\"\";s:9:\"js_custom\";s:0:\"\";s:5:\"index\";s:14:\"design_setting\";s:12:\"ancestor_key\";s:0:\"\";s:11:\"version_key\";s:20:\"id_jwtjk2wk2lgskt8nb\";s:10:\"import_key\";s:0:\"\";s:5:\"fonts\";a:4:{s:7:\"heading\";s:11:\"cufon:cabin\";s:13:\"heading_cufon\";s:0:\"\";s:16:\"heading_standard\";s:0:\"\";s:4:\"body\";s:42:\"standard:Arial|Helvetica|Garuda|sans-serif\";}s:6:\"layout\";a:13:{s:6:\"header\";s:12:\"2icv78uj1pyc\";s:6:\"footer\";s:11:\"u2x0ehy11o0\";s:7:\"default\";s:16:\"home-page-layout\";s:4:\"home\";s:16:\"home-page-layout\";s:4:\"page\";s:20:\"right-sidebar-layout\";s:4:\"post\";s:20:\"right-sidebar-layout\";s:4:\"blog\";s:20:\"right-sidebar-layout\";s:8:\"category\";s:20:\"right-sidebar-layout\";s:6:\"author\";s:20:\"right-sidebar-layout\";s:3:\"tag\";s:20:\"right-sidebar-layout\";s:4:\"date\";s:20:\"right-sidebar-layout\";s:6:\"search\";s:20:\"right-sidebar-layout\";s:5:\"error\";s:17:\"full-width-layout\";}}s:10:\"slideshows\";a:3:{s:18:\"default-slide-show\";a:14:{s:5:\"label\";s:18:\"Default Slide Show\";s:3:\"key\";s:18:\"default-slide-show\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:3:\"400\";s:6:\"timing\";s:1:\"6\";s:10:\"transition\";s:4:\"fade\";s:5:\"speed\";s:0:\"\";s:14:\"pause_on_hover\";s:1:\"0\";s:7:\"columns\";s:1:\"1\";s:5:\"index\";s:18:\"default-slide-show\";s:12:\"ancestor_key\";s:10:\"slideshows\";s:11:\"version_key\";s:20:\"id_un5x45vwsl6y5c69v\";s:10:\"import_key\";s:0:\"\";s:8:\"slides_1\";a:3:{s:12:\"1v68ilfehx5w\";a:12:{s:3:\"key\";s:12:\"1v68ilfehx5w\";s:5:\"media\";s:67:\"http://bestecommerce-uk.com/wp-content/uploads/2011/07/slider1a.jpg\";s:4:\"link\";s:0:\"\";s:12:\"target_blank\";s:1:\"0\";s:6:\"format\";s:5:\"image\";s:8:\"position\";s:4:\"left\";s:10:\"transition\";s:0:\"\";s:7:\"content\";s:0:\"\";s:5:\"index\";s:12:\"1v68ilfehx5w\";s:12:\"ancestor_key\";s:0:\"\";s:11:\"version_key\";s:19:\"id_lla1x4efs7yetomc\";s:10:\"import_key\";s:0:\"\";}s:11:\"r1n3jojwj6o\";a:12:{s:3:\"key\";s:11:\"r1n3jojwj6o\";s:5:\"media\";s:67:\"http://bestecommerce-uk.com/wp-content/uploads/2011/07/slider2a.jpg\";s:4:\"link\";s:0:\"\";s:12:\"target_blank\";s:1:\"0\";s:6:\"format\";s:5:\"image\";s:8:\"position\";s:4:\"left\";s:10:\"transition\";s:10:\"scrollVert\";s:7:\"content\";s:0:\"\";s:5:\"index\";s:11:\"r1n3jojwj6o\";s:12:\"ancestor_key\";s:0:\"\";s:11:\"version_key\";s:19:\"id_l1ewqg8ogc0hgqch\";s:10:\"import_key\";s:0:\"\";}s:12:\"4jgvmhe13wxi\";a:12:{s:3:\"key\";s:12:\"4jgvmhe13wxi\";s:5:\"media\";s:67:\"http://bestecommerce-uk.com/wp-content/uploads/2011/07/slider3a.jpg\";s:4:\"link\";s:0:\"\";s:12:\"target_blank\";s:1:\"0\";s:6:\"format\";s:5:\"image\";s:8:\"position\";s:4:\"left\";s:10:\"transition\";s:10:\"scrollHorz\";s:7:\"content\";s:0:\"\";s:5:\"index\";s:12:\"4jgvmhe13wxi\";s:12:\"ancestor_key\";s:0:\"\";s:11:\"version_key\";s:20:\"id_q88is2yha62tchbcj\";s:10:\"import_key\";s:0:\"\";}}}s:18:\"ecommerce_examples\";a:14:{s:5:\"label\";s:18:\"ecommerce examples\";s:3:\"key\";s:18:\"ecommerce_examples\";s:5:\"width\";s:3:\"975\";s:6:\"height\";s:3:\"475\";s:6:\"timing\";s:1:\"6\";s:10:\"transition\";s:8:\"fadeZoom\";s:5:\"speed\";s:0:\"\";s:14:\"pause_on_hover\";s:1:\"1\";s:7:\"columns\";s:1:\"1\";s:5:\"index\";s:18:\"ecommerce_examples\";s:12:\"ancestor_key\";s:0:\"\";s:11:\"version_key\";s:20:\"id_wrk703321vkadamey\";s:10:\"import_key\";s:0:\"\";s:8:\"slides_1\";a:4:{s:12:\"27oqlngtivu1\";a:12:{s:3:\"key\";s:12:\"27oqlngtivu1\";s:5:\"media\";s:73:\"http://bestecommerce-uk.com/wp-content/uploads/2011/08/ex_annbrownlie.jpg\";s:4:\"link\";s:0:\"\";s:12:\"target_blank\";s:1:\"0\";s:6:\"format\";s:12:\"framed-image\";s:8:\"position\";s:4:\"left\";s:10:\"transition\";s:0:\"\";s:7:\"content\";s:535:\"&lt;h3&gt;Ann Brownlie Shoes&lt;/h3&gt;\r\n&lt;p&gt;www.annbrownlieshoes.co.uk - A leading Women&#039;s shoe specialist based in Edinburgh.&lt;/p&gt;\r\n&lt;p&gt;Ann Brownlie hired us to make a corporate e-commerce site to sell theirvast range of ladies&#039; shoes.&lt;/p&gt;\r\n&lt;p&gt;We aimed for easy navigation and clean design, including a search and filter function to find the right pair with ease.&lt;/p&gt;\r\n&lt;a href=&quot;/contact-form-2&quot; class=&quot;btn impactBtn&quot;&gt;&lt;span&gt;Contact Form&lt;/span&gt;&lt;/a&gt;\";s:5:\"index\";s:12:\"27oqlngtivu1\";s:12:\"ancestor_key\";s:0:\"\";s:11:\"version_key\";s:20:\"id_e89uw4d1k1u6sria4\";s:10:\"import_key\";s:0:\"\";}s:12:\"444t6drw6fqw\";a:12:{s:3:\"key\";s:12:\"444t6drw6fqw\";s:5:\"media\";s:68:\"http://bestecommerce-uk.com/wp-content/uploads/2011/08/ex_castle.jpg\";s:4:\"link\";s:0:\"\";s:12:\"target_blank\";s:1:\"0\";s:6:\"format\";s:12:\"framed-image\";s:8:\"position\";s:4:\"left\";s:10:\"transition\";s:0:\"\";s:7:\"content\";s:774:\"&lt;h3&gt;Castle Warehouse&lt;/h3&gt;\r\n&lt;p&gt;www.castlewarehouse.com - Castle Warehouse underwent a full rebranding and web marketing exercise with a new e-commerce site. The primary focus of the site was web sales for their ranges of kitchen and cookware.&lt;/p&gt;\r\n&lt;p&gt;Their web strategy centered on a strong, scalable, high performance eCommerce hub. The site at first targetted a niche market of a select range of products but it was allowed to later expand to support sales of some thousands of products across their full range of goods.&lt;/p&gt;\r\n&lt;p&gt;The solution was delivered ahead of time, all requirements fulfilled.&lt;/p&gt;\r\n&lt;a href=&quot;/contact-form-2&quot; class=&quot;btn impactBtn&quot;&gt;&lt;span&gt;Contact Form&lt;/span&gt;&lt;/a&gt;\";s:5:\"index\";s:12:\"444t6drw6fqw\";s:12:\"ancestor_key\";s:0:\"\";s:11:\"version_key\";s:20:\"id_prohk3wywj7p1k4oa\";s:10:\"import_key\";s:0:\"\";}s:12:\"43i9sloweoxp\";a:12:{s:3:\"key\";s:12:\"43i9sloweoxp\";s:5:\"media\";s:71:\"http://bestecommerce-uk.com/wp-content/uploads/2011/08/ex_woodstock.jpg\";s:4:\"link\";s:0:\"\";s:12:\"target_blank\";s:1:\"0\";s:6:\"format\";s:12:\"framed-image\";s:8:\"position\";s:4:\"left\";s:10:\"transition\";s:0:\"\";s:7:\"content\";s:700:\"&lt;h3&gt;Woodstock Timber&lt;/h3&gt;\r\n&lt;p&gt;www.woodstocktimber.com - Woodstock Timber, based in Inverness, approached us to develop a scalable eCommerce website enabling them to sell and deliver their timber, housebuilding, joinery and homeware products to the wider UK market.&lt;/p&gt;\r\n&lt;p&gt;Since one requirement was to support wholesale ordering, the system also had to be the management&#039;s interface to the stock, and make it easy for customers to do repeat orders.&lt;/p&gt;\r\n&lt;p&gt;Our work was completed ahead of time, filling all requirements.&lt;/p&gt;\r\n&lt;a href=&quot;/contact-form-2&quot; class=&quot;btn impactBtn&quot;&gt;&lt;span&gt;Contact Form&lt;/span&gt;&lt;/a&gt;\";s:5:\"index\";s:12:\"43i9sloweoxp\";s:12:\"ancestor_key\";s:0:\"\";s:11:\"version_key\";s:20:\"id_v3n9c3vmpefqmppew\";s:10:\"import_key\";s:0:\"\";}s:11:\"um96vnbjerw\";a:12:{s:3:\"key\";s:11:\"um96vnbjerw\";s:5:\"media\";s:69:\"http://bestecommerce-uk.com/wp-content/uploads/2011/08/ex_garland.jpg\";s:4:\"link\";s:0:\"\";s:12:\"target_blank\";s:1:\"0\";s:6:\"format\";s:12:\"framed-image\";s:8:\"position\";s:4:\"left\";s:10:\"transition\";s:0:\"\";s:7:\"content\";s:621:\"&lt;h3&gt;Garlands Florists&lt;/h3&gt;\r\n&lt;p&gt;www.garlandsflorist.co.uk - Edinburgh based Garlands Florists wanted a simple and easy to manage eCommerce website to sell their flowers and bouquets. Those specifications were enough for us to design a tailored website.&lt;/p&gt;\r\n&lt;p&gt;Their elegant on-line store now enables them to sell flowers with add-ons such as Champagne and Chocolates, whilst retaining customer data for re-use through their newsletter and promotional offers.&lt;/p&gt;\r\n&lt;a href=&quot;/contact-form-2&quot; class=&quot;btn impactBtn&quot;&gt;&lt;span&gt;Contact Form&lt;/span&gt;&lt;/a&gt;\";s:5:\"index\";s:11:\"um96vnbjerw\";s:12:\"ancestor_key\";s:0:\"\";s:11:\"version_key\";s:20:\"id_kwvlr5bpxkz492jxj\";s:10:\"import_key\";s:0:\"\";}}}s:19:\"web_design-examples\";a:14:{s:5:\"label\";s:19:\"web design examples\";s:3:\"key\";s:19:\"web_design-examples\";s:5:\"width\";s:3:\"975\";s:6:\"height\";s:3:\"475\";s:6:\"timing\";s:1:\"6\";s:10:\"transition\";s:4:\"fade\";s:5:\"speed\";s:0:\"\";s:14:\"pause_on_hover\";s:1:\"0\";s:7:\"columns\";s:1:\"1\";s:5:\"index\";s:19:\"web_design-examples\";s:12:\"ancestor_key\";s:0:\"\";s:11:\"version_key\";s:20:\"id_snk785hzyszxhua38\";s:10:\"import_key\";s:0:\"\";s:8:\"slides_1\";a:7:{s:12:\"4i0fczdnnpdj\";a:12:{s:3:\"key\";s:12:\"4i0fczdnnpdj\";s:5:\"media\";s:81:\"http://bestecommerce-uk.com/wp-content/uploads/2011/11/danielgalmiche.co_.uk_.png\";s:4:\"link\";s:0:\"\";s:12:\"target_blank\";s:1:\"0\";s:6:\"format\";s:12:\"framed-image\";s:8:\"position\";s:4:\"left\";s:10:\"transition\";s:0:\"\";s:7:\"content\";s:517:\"&lt;h3&gt;Daniel Galmiche&lt;/h3&gt;\r\n&lt;p&gt;www.danielgalmiche.co.uk - Daniel Galmiche is a chef recommended by Michelin and famous for his special cooking style.&lt;/p&gt;\r\n&lt;p&gt;We designed a distinctive website in Flash that accompanied Daniel&#039;s new book. Galmiche&#039;s signature dishes are prominent, and his forthcoming events and public appearances are available.&lt;/p&gt;\r\n\r\n&lt;a href=&quot;/contact-form-2&quot; class=&quot;btn impactBtn&quot;&gt;&lt;span&gt;Contact Form&lt;/span&gt;&lt;/a&gt;\";s:5:\"index\";s:12:\"4i0fczdnnpdj\";s:12:\"ancestor_key\";s:0:\"\";s:11:\"version_key\";s:20:\"id_ncqxd79ee401am21z\";s:10:\"import_key\";s:0:\"\";}s:12:\"24fa4giwgjtv\";a:12:{s:3:\"key\";s:12:\"24fa4giwgjtv\";s:5:\"media\";s:73:\"http://bestecommerce-uk.com/wp-content/uploads/2011/08/ex_annbrownlie.jpg\";s:4:\"link\";s:0:\"\";s:12:\"target_blank\";s:1:\"0\";s:6:\"format\";s:12:\"framed-image\";s:8:\"position\";s:4:\"left\";s:10:\"transition\";s:0:\"\";s:7:\"content\";s:535:\"&lt;h3&gt;Ann Brownlie Shoes&lt;/h3&gt;\r\n&lt;p&gt;www.annbrownlieshoes.co.uk - A leading Women&#039;s shoe specialist based in Edinburgh.&lt;/p&gt;\r\n&lt;p&gt;Ann Brownlie hired us to make a corporate e-commerce site to sell theirvast range of ladies&#039; shoes.&lt;/p&gt;\r\n&lt;p&gt;We aimed for easy navigation and clean design, including a search and filter function to find the right pair with ease.&lt;/p&gt;\r\n&lt;a href=&quot;/contact-form-2&quot; class=&quot;btn impactBtn&quot;&gt;&lt;span&gt;Contact Form&lt;/span&gt;&lt;/a&gt;\";s:5:\"index\";s:12:\"24fa4giwgjtv\";s:12:\"ancestor_key\";s:0:\"\";s:11:\"version_key\";s:20:\"id_i6bwr1hry78ob2z4n\";s:10:\"import_key\";s:0:\"\";}s:12:\"6f2ivxasotqk\";a:12:{s:3:\"key\";s:12:\"6f2ivxasotqk\";s:5:\"media\";s:83:\"http://bestecommerce-uk.com/wp-content/uploads/2011/11/edinburghhearing.co_.uk_.png\";s:4:\"link\";s:0:\"\";s:12:\"target_blank\";s:1:\"0\";s:6:\"format\";s:12:\"framed-image\";s:8:\"position\";s:4:\"left\";s:10:\"transition\";s:0:\"\";s:7:\"content\";s:517:\"&lt;h3&gt;Edinburgh Hearing&lt;/h3&gt;\r\n&lt;p&gt;www.edinburghhearing.co.uk - &lt;/p&gt;\r\n\r\n&lt;p&gt;Edinburgh Hearing Solutions provides audiology and hearing services to customers in the Edinburgh, Lothians and Borders areas. In 2011 they asked us to develop their new website, putting first web marketing (SEO) and design. Their new site design and layout has been well received.&lt;/p&gt;\r\n\r\n&lt;a href=&quot;/contact-form-2&quot; class=&quot;btn impactBtn&quot;&gt;&lt;span&gt;Contact Form&lt;/span&gt;&lt;/a&gt;\";s:5:\"index\";s:12:\"6f2ivxasotqk\";s:12:\"ancestor_key\";s:0:\"\";s:11:\"version_key\";s:20:\"id_ggzk31gu60h18ruim\";s:10:\"import_key\";s:0:\"\";}s:12:\"2qgnksinlz6x\";a:12:{s:3:\"key\";s:12:\"2qgnksinlz6x\";s:5:\"media\";s:68:\"http://bestecommerce-uk.com/wp-content/uploads/2011/08/ex_castle.jpg\";s:4:\"link\";s:0:\"\";s:12:\"target_blank\";s:1:\"0\";s:6:\"format\";s:12:\"framed-image\";s:8:\"position\";s:4:\"left\";s:10:\"transition\";s:0:\"\";s:7:\"content\";s:774:\"&lt;h3&gt;Castle Warehouse&lt;/h3&gt;\r\n&lt;p&gt;www.castlewarehouse.com - Castle Warehouse underwent a full rebranding and web marketing exercise with a new e-commerce site. The primary focus of the site was web sales for their ranges of kitchen and cookware.&lt;/p&gt;\r\n&lt;p&gt;Their web strategy centered on a strong, scalable, high performance eCommerce hub. The site at first targetted a niche market of a select range of products but it was allowed to later expand to support sales of some thousands of products across their full range of goods.&lt;/p&gt;\r\n&lt;p&gt;The solution was delivered ahead of time, all requirements fulfilled.&lt;/p&gt;\r\n&lt;a href=&quot;/contact-form-2&quot; class=&quot;btn impactBtn&quot;&gt;&lt;span&gt;Contact Form&lt;/span&gt;&lt;/a&gt;\";s:5:\"index\";s:12:\"2qgnksinlz6x\";s:12:\"ancestor_key\";s:0:\"\";s:11:\"version_key\";s:20:\"id_jfpzu1h2vd510o9f3\";s:10:\"import_key\";s:0:\"\";}s:12:\"5app4qgezakh\";a:12:{s:3:\"key\";s:12:\"5app4qgezakh\";s:5:\"media\";s:79:\"http://bestecommerce-uk.com/wp-content/uploads/2011/11/panpanbridal.co_.uk_.png\";s:4:\"link\";s:0:\"\";s:12:\"target_blank\";s:1:\"0\";s:6:\"format\";s:12:\"framed-image\";s:8:\"position\";s:4:\"left\";s:10:\"transition\";s:0:\"\";s:7:\"content\";s:616:\"&lt;h3&gt;PanPan Bridal&lt;/h3&gt;\r\n&lt;p&gt;www.panpanbridal.co.uk -&lt;/p&gt;\r\n\r\n&lt;p&gt;The aim of the Pan Pan design was to make a website that stood out from the competition and to help their market position in making luxury wedding dress and outfitting weddings. The company decided to build the website in Flash to be visually distinctive, and with suiting music.&lt;/p&gt;\r\n\r\n&lt;p&gt;Our web marketing also helped traffic to their site grow 15-fold since we started work.&lt;/p&gt;\r\n\r\n&lt;a href=&quot;/contact-form-2&quot; class=&quot;btn impactBtn&quot;&gt;&lt;span&gt;Contact Form&lt;/span&gt;&lt;/a&gt;\";s:5:\"index\";s:12:\"5app4qgezakh\";s:12:\"ancestor_key\";s:0:\"\";s:11:\"version_key\";s:20:\"id_f2c2q56zj48h0n8z6\";s:10:\"import_key\";s:0:\"\";}s:12:\"3x84bg5pvpej\";a:12:{s:3:\"key\";s:12:\"3x84bg5pvpej\";s:5:\"media\";s:69:\"http://bestecommerce-uk.com/wp-content/uploads/2011/08/ex_garland.jpg\";s:4:\"link\";s:0:\"\";s:12:\"target_blank\";s:1:\"0\";s:6:\"format\";s:12:\"framed-image\";s:8:\"position\";s:4:\"left\";s:10:\"transition\";s:0:\"\";s:7:\"content\";s:621:\"&lt;h3&gt;Garlands Florists&lt;/h3&gt;\r\n&lt;p&gt;www.garlandsflorist.co.uk - Edinburgh based Garlands Florists wanted a simple and easy to manage eCommerce website to sell their flowers and bouquets. Those specifications were enough for us to design a tailored website.&lt;/p&gt;\r\n&lt;p&gt;Their elegant on-line store now enables them to sell flowers with add-ons such as Champagne and Chocolates, whilst retaining customer data for re-use through their newsletter and promotional offers.&lt;/p&gt;\r\n&lt;a href=&quot;/contact-form-2&quot; class=&quot;btn impactBtn&quot;&gt;&lt;span&gt;Contact Form&lt;/span&gt;&lt;/a&gt;\";s:5:\"index\";s:12:\"3x84bg5pvpej\";s:12:\"ancestor_key\";s:0:\"\";s:11:\"version_key\";s:20:\"id_na9u348dercovu6az\";s:10:\"import_key\";s:0:\"\";}s:12:\"5siq7vrtbz6e\";a:12:{s:3:\"key\";s:12:\"5siq7vrtbz6e\";s:5:\"media\";s:82:\"http://bestecommerce-uk.com/wp-content/uploads/2011/11/violetbankhouse.co_.uk_.png\";s:4:\"link\";s:0:\"\";s:12:\"target_blank\";s:1:\"0\";s:6:\"format\";s:12:\"framed-image\";s:8:\"position\";s:4:\"left\";s:10:\"transition\";s:0:\"\";s:7:\"content\";s:553:\"&lt;h3&gt;Violet Bank House&lt;/h3&gt;\r\n&lt;p&gt;www.violetbankhouse.co.uk - A 5 Star Bed and Breakfast on the outsirts of Edinburgh.&lt;/p&gt;\r\n&lt;p&gt;Violet Bank House asked us for a website suited to their small business running a bed &amp; breakfast.&lt;/p&gt;\r\n&lt;p&gt;We aimed for a site looking professional while being small and simple, to put the property on display without requiring onerous maintenance.&lt;/p&gt; \r\n\r\n&lt;a href=&quot;/contact-form-2&quot; class=&quot;btn impactBtn&quot;&gt;&lt;span&gt;Contact Form&lt;/span&gt;&lt;/a&gt;\";s:5:\"index\";s:12:\"5siq7vrtbz6e\";s:12:\"ancestor_key\";s:0:\"\";s:11:\"version_key\";s:19:\"id_gpchoebbx2hing7r\";s:10:\"import_key\";s:0:\"\";}}}}s:12:\"page_headers\";a:10:{s:12:\"2icv78uj1pyc\";a:14:{s:3:\"key\";s:12:\"2icv78uj1pyc\";s:5:\"label\";s:16:\"Home Page Header\";s:4:\"logo\";s:0:\"\";s:10:\"menu_width\";s:4:\"page\";s:11:\"top_sidebar\";s:12:\"30mob0yhf8mc\";s:7:\"content\";s:21:\"ss,default-slide-show\";s:11:\"curve_style\";s:5:\"curve\";s:19:\"showcase_background\";s:6:\"closed\";s:16:\"showcase_content\";s:1342:\"[one_third]&lt;img src=&quot;/wp-content/themes/parallelus-mingle/assets/images/icons/wand.png&quot; width=&quot;87&quot; height=&quot;87&quot; class=&quot;alignleft&quot; alt=&quot;Simple&quot; /&gt;&lt;h3&gt;Simple&lt;/h3&gt;&lt;p&gt;Powerful yet easy to use. We&#039;ll have your new site up and running, fast!&lt;/p&gt;[/one_third] [one_third]&lt;img src=&quot;/wp-content/themes/parallelus-mingle/assets/images/icons/tools.png&quot; width=&quot;87&quot; height=&quot;87&quot; class=&quot;alignleft&quot; alt=&quot;Simple&quot; /&gt;&lt;h3&gt;Adaptable&lt;/h3&gt;&lt;p&gt;Bespoke designs to suit your business brand and product catalogue.&lt;/p&gt;[/one_third] [one_third_last]&lt;img src=&quot;/wp-content/themes/parallelus-mingle/assets/images/icons/brush.png&quot; width=&quot;87&quot; height=&quot;87&quot; class=&quot;alignleft&quot; alt=&quot;Simple&quot; /&gt;&lt;h3&gt;Customizable&lt;/h3&gt;&lt;p style=&quot;margin-bottom: 20px;&quot;&gt; &lt;em&gt; &lt;strong&gt;Unlimited products and categories&lt;/strong&gt;&lt;/em&gt; and a huge range of useful features.&lt;/p&gt;[/one_third_last] [call_to_action title=&quot;Your business deserves the BEST!&quot; tag_line=&#039;Monetize your website with Best eCommerce!&#039; arrow=&quot;yes&quot; button=&quot;View Sample Sites&quot; link=&quot;about-us/ecommerce-site-examples&quot;]\";s:5:\"index\";s:12:\"2icv78uj1pyc\";s:12:\"ancestor_key\";s:12:\"page_headers\";s:11:\"version_key\";s:20:\"id_juz8y7l9g79rqe63o\";s:10:\"import_key\";s:0:\"\";s:5:\"menus\";a:2:{i:0;s:4:\"left\";i:1;s:5:\"right\";}}s:12:\"4gqhr7yixgok\";a:14:{s:3:\"key\";s:12:\"4gqhr7yixgok\";s:5:\"label\";s:19:\"Contact Page Header\";s:4:\"logo\";s:0:\"\";s:10:\"menu_width\";s:4:\"page\";s:11:\"top_sidebar\";s:12:\"30mob0yhf8mc\";s:7:\"content\";s:14:\"hg,23fljeyfzj9\";s:11:\"curve_style\";s:8:\"straight\";s:19:\"showcase_background\";s:4:\"open\";s:16:\"showcase_content\";s:0:\"\";s:5:\"index\";s:12:\"4gqhr7yixgok\";s:12:\"ancestor_key\";s:0:\"\";s:11:\"version_key\";s:20:\"id_uixpf458fx58vkpqf\";s:10:\"import_key\";s:0:\"\";s:5:\"menus\";a:2:{i:0;s:4:\"left\";i:1;s:5:\"right\";}}s:12:\"4rcd6k6z8nc4\";a:14:{s:3:\"key\";s:12:\"4rcd6k6z8nc4\";s:5:\"label\";s:19:\"Default Blog Header\";s:4:\"logo\";s:0:\"\";s:10:\"menu_width\";s:4:\"page\";s:11:\"top_sidebar\";s:12:\"30mob0yhf8mc\";s:7:\"content\";s:15:\"hg,1yvmvqpg2ipw\";s:11:\"curve_style\";s:5:\"curve\";s:19:\"showcase_background\";s:4:\"open\";s:16:\"showcase_content\";s:133:\"&lt;div style=&quot;text-align: center;&quot;&gt;&lt;h2&gt;Articles, News and Other Interesting Information...&lt;/h2&gt;&lt;/div&gt;\";s:5:\"index\";s:12:\"4rcd6k6z8nc4\";s:12:\"ancestor_key\";s:12:\"page_headers\";s:11:\"version_key\";s:19:\"id_ue21829yyssyhew2\";s:10:\"import_key\";s:0:\"\";s:5:\"menus\";a:2:{i:0;s:4:\"left\";i:1;s:5:\"right\";}}s:12:\"4r9hbluslnb0\";a:14:{s:3:\"key\";s:12:\"4r9hbluslnb0\";s:5:\"label\";s:25:\"ecommerce packages header\";s:4:\"logo\";s:0:\"\";s:10:\"menu_width\";s:4:\"page\";s:11:\"top_sidebar\";s:12:\"30mob0yhf8mc\";s:7:\"content\";s:14:\"hg,yejez9lchj9\";s:11:\"curve_style\";s:5:\"curve\";s:19:\"showcase_background\";s:4:\"open\";s:16:\"showcase_content\";s:0:\"\";s:5:\"index\";s:12:\"4r9hbluslnb0\";s:12:\"ancestor_key\";s:0:\"\";s:11:\"version_key\";s:20:\"id_tzbcp6fsx7zovvlqw\";s:10:\"import_key\";s:0:\"\";s:5:\"menus\";a:2:{i:0;s:4:\"left\";i:1;s:5:\"right\";}}s:12:\"40a43upfrg2v\";a:14:{s:3:\"key\";s:12:\"40a43upfrg2v\";s:5:\"label\";s:15:\"FAQ page header\";s:4:\"logo\";s:0:\"\";s:10:\"menu_width\";s:4:\"page\";s:11:\"top_sidebar\";s:12:\"30mob0yhf8mc\";s:7:\"content\";s:15:\"hg,54hcvlcgzd34\";s:11:\"curve_style\";s:5:\"curve\";s:19:\"showcase_background\";s:4:\"open\";s:16:\"showcase_content\";s:0:\"\";s:5:\"index\";s:12:\"40a43upfrg2v\";s:12:\"ancestor_key\";s:0:\"\";s:11:\"version_key\";s:20:\"id_lkkm842kaim6cfeve\";s:10:\"import_key\";s:0:\"\";s:5:\"menus\";a:2:{i:0;s:4:\"left\";i:1;s:5:\"right\";}}s:12:\"5xsr55z7v0ho\";a:14:{s:3:\"key\";s:12:\"5xsr55z7v0ho\";s:5:\"label\";s:17:\"web design header\";s:4:\"logo\";s:0:\"\";s:10:\"menu_width\";s:4:\"page\";s:11:\"top_sidebar\";s:12:\"30mob0yhf8mc\";s:7:\"content\";s:15:\"hg,1ibj8qnroy0c\";s:11:\"curve_style\";s:5:\"curve\";s:19:\"showcase_background\";s:4:\"open\";s:16:\"showcase_content\";s:0:\"\";s:5:\"index\";s:12:\"5xsr55z7v0ho\";s:12:\"ancestor_key\";s:0:\"\";s:11:\"version_key\";s:19:\"id_ueaox63paraqfeqn\";s:10:\"import_key\";s:0:\"\";s:5:\"menus\";a:2:{i:0;s:4:\"left\";i:1;s:5:\"right\";}}s:12:\"402iget3p1qy\";a:14:{s:3:\"key\";s:12:\"402iget3p1qy\";s:5:\"label\";s:20:\"web marketing header\";s:4:\"logo\";s:0:\"\";s:10:\"menu_width\";s:4:\"page\";s:11:\"top_sidebar\";s:12:\"30mob0yhf8mc\";s:7:\"content\";s:15:\"hg,18y5bayvvd2t\";s:11:\"curve_style\";s:5:\"curve\";s:19:\"showcase_background\";s:4:\"open\";s:16:\"showcase_content\";s:0:\"\";s:5:\"index\";s:12:\"402iget3p1qy\";s:12:\"ancestor_key\";s:0:\"\";s:11:\"version_key\";s:19:\"id_tfvvl579o8l74x3t\";s:10:\"import_key\";s:0:\"\";s:5:\"menus\";a:2:{i:0;s:4:\"left\";i:1;s:5:\"right\";}}s:12:\"5aietn5db53y\";a:14:{s:3:\"key\";s:12:\"5aietn5db53y\";s:5:\"label\";s:12:\"404 Redirect\";s:4:\"logo\";s:0:\"\";s:10:\"menu_width\";s:4:\"page\";s:11:\"top_sidebar\";s:12:\"30mob0yhf8mc\";s:7:\"content\";s:15:\"hg,1m9v41zisyqe\";s:11:\"curve_style\";s:5:\"curve\";s:19:\"showcase_background\";s:4:\"open\";s:16:\"showcase_content\";s:0:\"\";s:5:\"index\";s:12:\"5aietn5db53y\";s:12:\"ancestor_key\";s:0:\"\";s:11:\"version_key\";s:20:\"id_nl0jh47kjt1vn8oas\";s:10:\"import_key\";s:0:\"\";s:5:\"menus\";a:1:{i:0;s:5:\"right\";}}s:12:\"1o1zf9hjyaar\";a:14:{s:3:\"key\";s:12:\"1o1zf9hjyaar\";s:5:\"label\";s:12:\"testimonials\";s:4:\"logo\";s:0:\"\";s:10:\"menu_width\";s:4:\"page\";s:11:\"top_sidebar\";s:12:\"30mob0yhf8mc\";s:7:\"content\";s:15:\"hg,77ku1p26azap\";s:11:\"curve_style\";s:5:\"curve\";s:19:\"showcase_background\";s:4:\"open\";s:16:\"showcase_content\";s:0:\"\";s:5:\"index\";s:12:\"1o1zf9hjyaar\";s:12:\"ancestor_key\";s:0:\"\";s:11:\"version_key\";s:20:\"id_gotgz3ytmfb4dnd6v\";s:10:\"import_key\";s:0:\"\";s:5:\"menus\";a:2:{i:0;s:4:\"left\";i:1;s:5:\"right\";}}s:12:\"4rfcxvvioksv\";a:14:{s:3:\"key\";s:12:\"4rfcxvvioksv\";s:5:\"label\";s:25:\"About ecommerce uk header\";s:4:\"logo\";s:0:\"\";s:10:\"menu_width\";s:4:\"full\";s:11:\"top_sidebar\";s:12:\"30mob0yhf8mc\";s:7:\"content\";s:15:\"hg,72snf85vvqwd\";s:11:\"curve_style\";s:5:\"curve\";s:19:\"showcase_background\";s:4:\"open\";s:16:\"showcase_content\";s:0:\"\";s:5:\"index\";s:12:\"4rfcxvvioksv\";s:12:\"ancestor_key\";s:0:\"\";s:11:\"version_key\";s:20:\"id_fd7fy549q5v9n1v4b\";s:10:\"import_key\";s:0:\"\";s:5:\"menus\";a:2:{i:0;s:4:\"left\";i:1;s:5:\"right\";}}}s:7:\"layouts\";a:9:{s:16:\"home-page-layout\";a:10:{s:5:\"label\";s:16:\"Home Page Layout\";s:3:\"key\";s:16:\"home-page-layout\";s:6:\"header\";s:12:\"2icv78uj1pyc\";s:6:\"footer\";s:11:\"u2x0ehy11o0\";s:4:\"skin\";s:0:\"\";s:5:\"index\";s:16:\"home-page-layout\";s:12:\"ancestor_key\";s:7:\"layouts\";s:11:\"version_key\";s:20:\"id_v68rw6ck32qjmw8cw\";s:10:\"import_key\";s:0:\"\";s:13:\"layout_fields\";a:1:{s:11:\"container_0\";a:2:{i:0;a:2:{s:5:\"class\";s:7:\"col-1-2\";s:5:\"items\";a:1:{i:0;a:1:{i:0;a:2:{s:4:\"name\";s:14:\"content-static\";s:5:\"value\";s:2:\"15\";}}}}i:1;a:2:{s:5:\"class\";s:7:\"col-1-2\";s:5:\"items\";a:1:{i:0;a:1:{i:0;a:2:{s:4:\"name\";s:14:\"content-static\";s:5:\"value\";s:2:\"23\";}}}}}}}s:19:\"contact-page-layout\";a:10:{s:5:\"label\";s:19:\"Contact Page Layout\";s:3:\"key\";s:19:\"contact-page-layout\";s:6:\"header\";s:12:\"4gqhr7yixgok\";s:6:\"footer\";s:11:\"u2x0ehy11o0\";s:4:\"skin\";s:0:\"\";s:5:\"index\";s:19:\"contact-page-layout\";s:12:\"ancestor_key\";s:0:\"\";s:11:\"version_key\";s:20:\"id_mlgnf72cqlk0aveo9\";s:10:\"import_key\";s:0:\"\";s:13:\"layout_fields\";a:1:{s:11:\"container_0\";a:2:{i:0;a:2:{s:5:\"class\";s:7:\"col-1-3\";s:5:\"items\";a:1:{i:0;a:1:{i:0;a:2:{s:4:\"name\";s:14:\"content-static\";s:5:\"value\";s:2:\"53\";}}}}i:1;a:2:{s:5:\"class\";s:7:\"col-2-3\";s:5:\"items\";a:1:{i:0;a:1:{i:0;a:2:{s:4:\"name\";s:14:\"content-static\";s:5:\"value\";s:2:\"51\";}}}}}}}s:29:\"best-ecommerce-package-layout\";a:10:{s:5:\"label\";s:29:\"best-ecommerce-package-layout\";s:3:\"key\";s:29:\"best-ecommerce-package-layout\";s:6:\"header\";s:12:\"4d8q3srg3rok\";s:6:\"footer\";s:11:\"u2x0ehy11o0\";s:4:\"skin\";s:0:\"\";s:5:\"index\";s:29:\"best-ecommerce-package-layout\";s:12:\"ancestor_key\";s:0:\"\";s:11:\"version_key\";s:20:\"id_gneqf5bn1d9djlzcx\";s:10:\"import_key\";s:0:\"\";s:13:\"layout_fields\";a:1:{s:11:\"container_0\";a:2:{i:0;a:2:{s:5:\"class\";s:7:\"col-3-4\";s:5:\"items\";a:1:{i:0;a:1:{i:0;a:2:{s:4:\"name\";s:15:\"content-default\";s:5:\"value\";s:7:\"default\";}}}}i:1;a:2:{s:5:\"class\";s:7:\"col-1-4\";s:5:\"items\";a:1:{i:0;a:1:{i:0;a:2:{s:4:\"name\";s:7:\"sidebar\";s:5:\"value\";s:12:\"5f4v58xjl8op\";}}}}}}}s:11:\"blog-layout\";a:10:{s:5:\"label\";s:11:\"Blog Layout\";s:3:\"key\";s:11:\"blog-layout\";s:6:\"header\";s:12:\"4rcd6k6z8nc4\";s:6:\"footer\";s:11:\"u2x0ehy11o0\";s:4:\"skin\";s:0:\"\";s:5:\"index\";s:11:\"blog-layout\";s:12:\"ancestor_key\";s:0:\"\";s:11:\"version_key\";s:19:\"id_ge1n2mr2me1ik8ku\";s:10:\"import_key\";s:0:\"\";s:13:\"layout_fields\";a:1:{s:11:\"container_0\";a:2:{i:0;a:2:{s:5:\"class\";s:7:\"col-3-4\";s:5:\"items\";a:1:{i:0;a:1:{i:0;a:2:{s:4:\"name\";s:15:\"content-default\";s:5:\"value\";s:7:\"default\";}}}}i:1;a:2:{s:5:\"class\";s:7:\"col-1-4\";s:5:\"items\";a:1:{i:0;a:1:{i:0;a:2:{s:4:\"name\";s:7:\"sidebar\";s:5:\"value\";s:12:\"646tcese3iko\";}}}}}}}s:17:\"web-design-layout\";a:10:{s:5:\"label\";s:17:\"web-design-layout\";s:3:\"key\";s:17:\"web-design-layout\";s:6:\"header\";s:12:\"5xsr55z7v0ho\";s:6:\"footer\";s:11:\"u2x0ehy11o0\";s:4:\"skin\";s:0:\"\";s:5:\"index\";s:17:\"web-design-layout\";s:12:\"ancestor_key\";s:0:\"\";s:11:\"version_key\";s:19:\"id_x8dadaekri57qf8o\";s:10:\"import_key\";s:0:\"\";s:13:\"layout_fields\";a:1:{s:11:\"container_0\";a:2:{i:0;a:2:{s:5:\"class\";s:7:\"col-3-4\";s:5:\"items\";a:1:{i:0;a:1:{i:0;a:2:{s:4:\"name\";s:15:\"content-default\";s:5:\"value\";s:7:\"default\";}}}}i:1;a:2:{s:5:\"class\";s:7:\"col-1-4\";s:5:\"items\";a:1:{i:0;a:1:{i:0;a:2:{s:4:\"name\";s:7:\"sidebar\";s:5:\"value\";s:12:\"4gj8ieu7640n\";}}}}}}}s:13:\"web-marketing\";a:10:{s:5:\"label\";s:13:\"web-marketing\";s:3:\"key\";s:13:\"web-marketing\";s:6:\"header\";s:12:\"4d8q3srg3rok\";s:6:\"footer\";s:11:\"u2x0ehy11o0\";s:4:\"skin\";s:0:\"\";s:5:\"index\";s:13:\"web-marketing\";s:12:\"ancestor_key\";s:0:\"\";s:11:\"version_key\";s:20:\"id_sosrq6muw2sbfu7nm\";s:10:\"import_key\";s:0:\"\";s:13:\"layout_fields\";a:1:{s:11:\"container_0\";a:2:{i:0;a:2:{s:5:\"class\";s:7:\"col-3-4\";s:5:\"items\";a:1:{i:0;a:1:{i:0;a:2:{s:4:\"name\";s:15:\"content-default\";s:5:\"value\";s:7:\"default\";}}}}i:1;a:2:{s:5:\"class\";s:7:\"col-1-4\";s:5:\"items\";a:1:{i:0;a:1:{i:0;a:2:{s:4:\"name\";s:7:\"sidebar\";s:5:\"value\";s:12:\"4sjtgkeyrnt7\";}}}}}}}s:19:\"404-redirect-layout\";a:10:{s:5:\"label\";s:19:\"404 Redirect layout\";s:3:\"key\";s:19:\"404-redirect-layout\";s:6:\"header\";s:12:\"5aietn5db53y\";s:6:\"footer\";s:11:\"u2x0ehy11o0\";s:4:\"skin\";s:0:\"\";s:5:\"index\";s:19:\"404-redirect-layout\";s:12:\"ancestor_key\";s:0:\"\";s:11:\"version_key\";s:20:\"id_yv3mm601jkmxx6xwe\";s:10:\"import_key\";s:0:\"\";s:13:\"layout_fields\";a:1:{s:11:\"container_0\";a:2:{i:0;a:2:{s:5:\"class\";s:7:\"col-1-2\";s:5:\"items\";a:1:{i:0;a:1:{i:0;a:2:{s:4:\"name\";s:14:\"content-static\";s:5:\"value\";s:2:\"12\";}}}}i:1;a:2:{s:5:\"class\";s:7:\"col-1-2\";s:5:\"items\";a:1:{i:0;a:1:{i:0;a:2:{s:4:\"name\";s:14:\"content-static\";s:5:\"value\";s:2:\"23\";}}}}}}}s:12:\"testimonials\";a:10:{s:5:\"label\";s:12:\"testimonials\";s:3:\"key\";s:12:\"testimonials\";s:6:\"header\";s:12:\"1o1zf9hjyaar\";s:6:\"footer\";s:11:\"u2x0ehy11o0\";s:4:\"skin\";s:0:\"\";s:5:\"index\";s:12:\"testimonials\";s:12:\"ancestor_key\";s:0:\"\";s:11:\"version_key\";s:20:\"id_hm7hp2goqsz6j630j\";s:10:\"import_key\";s:0:\"\";s:13:\"layout_fields\";a:1:{s:11:\"container_0\";a:1:{i:0;a:2:{s:5:\"class\";s:7:\"col-1-1\";s:5:\"items\";a:1:{i:0;a:1:{i:0;a:2:{s:4:\"name\";s:15:\"content-default\";s:5:\"value\";s:7:\"default\";}}}}}}}s:30:\"about-ecommerce-uk-page-layout\";a:10:{s:5:\"label\";s:30:\"About ecommerce uk page layout\";s:3:\"key\";s:30:\"about-ecommerce-uk-page-layout\";s:6:\"header\";s:12:\"4rfcxvvioksv\";s:6:\"footer\";s:11:\"u2x0ehy11o0\";s:4:\"skin\";s:0:\"\";s:5:\"index\";s:30:\"about-ecommerce-uk-page-layout\";s:12:\"ancestor_key\";s:0:\"\";s:11:\"version_key\";s:20:\"id_i3p4i5q7ashb4vxp5\";s:10:\"import_key\";s:0:\"\";s:13:\"layout_fields\";a:1:{s:11:\"container_0\";a:2:{i:0;a:2:{s:5:\"class\";s:7:\"col-2-3\";s:5:\"items\";a:1:{i:0;a:1:{i:0;a:2:{s:4:\"name\";s:15:\"content-default\";s:5:\"value\";s:7:\"default\";}}}}i:1;a:2:{s:5:\"class\";s:7:\"col-1-3\";s:5:\"items\";a:1:{i:0;a:1:{i:0;a:2:{s:4:\"name\";s:7:\"sidebar\";s:5:\"value\";s:12:\"32z48sz8m0u5\";}}}}}}}}s:12:\"top_graphics\";a:9:{s:11:\"23fljeyfzj9\";a:13:{s:5:\"label\";s:19:\"Contact Top Graphic\";s:3:\"key\";s:11:\"23fljeyfzj9\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:10:\"background\";s:104:\"http://bestecommerce-uk.com/wp-content/themes/parallelus-mingle/assets/images/content/top-graphic-bg.png\";s:16:\"background_color\";s:0:\"\";s:8:\"bg_pos_x\";s:3:\"50%\";s:8:\"bg_pos_y\";s:3:\"50%\";s:7:\"content\";s:146:\"To find out more or for an estimate of what our service would cost, just fill in the contact form on this page and we will call or email you back.\";s:5:\"index\";s:11:\"23fljeyfzj9\";s:12:\"ancestor_key\";s:0:\"\";s:11:\"version_key\";s:19:\"id_uf0udhcfszlzy9gw\";s:10:\"import_key\";s:0:\"\";}s:11:\"yejez9lchj9\";a:13:{s:5:\"label\";s:30:\"ecommerce packages top graphic\";s:3:\"key\";s:11:\"yejez9lchj9\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:10:\"background\";s:104:\"http://bestecommerce-uk.com/wp-content/themes/parallelus-mingle/assets/images/content/top-graphic-bg.png\";s:16:\"background_color\";s:0:\"\";s:8:\"bg_pos_x\";s:1:\"0\";s:8:\"bg_pos_y\";s:3:\"50%\";s:7:\"content\";s:403:\"&lt;div style=&quot;margin-right: 200px;&quot;&gt;&lt;div class=&quot;headertxt&quot;&gt;Different packages for different budgets and business plans&lt;/div&gt;&lt;br /&gt;&lt;p&gt;The developers at Web Design UK offer three packages according to the vision you have for your website. These packages can be tailored to meet your particular business needs, and upgraded when needed.&lt;/p&gt;&lt;/div&gt;\";s:5:\"index\";s:11:\"yejez9lchj9\";s:12:\"ancestor_key\";s:0:\"\";s:11:\"version_key\";s:20:\"id_hg72g5tke2gijsdqy\";s:10:\"import_key\";s:0:\"\";}s:12:\"54hcvlcgzd34\";a:13:{s:5:\"label\";s:15:\"faq top graphic\";s:3:\"key\";s:12:\"54hcvlcgzd34\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:10:\"background\";s:104:\"http://bestecommerce-uk.com/wp-content/themes/parallelus-mingle/assets/images/content/top-graphic-bg.png\";s:16:\"background_color\";s:0:\"\";s:8:\"bg_pos_x\";s:3:\"50%\";s:8:\"bg_pos_y\";s:3:\"50%\";s:7:\"content\";s:393:\"&lt;div style=&quot;margin-right: 200px;&quot;&gt;&lt;h2&gt;Frequently Asked Questions...&lt;/h2&gt;&lt;p&gt;Here we address some of the more frequently asked questions about our systems&lt;/p&gt;&lt;p&gt;Please &lt;a href=&quot;/contact-us&quot;&gt;contact us&lt;/a&gt; with any questions you feel may be useful for our customers and readers which are not answered here.&lt;/p&gt;&lt;/div&gt;\";s:5:\"index\";s:12:\"54hcvlcgzd34\";s:12:\"ancestor_key\";s:0:\"\";s:11:\"version_key\";s:20:\"id_omum81ko4566d2rnu\";s:10:\"import_key\";s:0:\"\";}s:12:\"1ibj8qnroy0c\";a:13:{s:5:\"label\";s:22:\"web design top graphic\";s:3:\"key\";s:12:\"1ibj8qnroy0c\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:10:\"background\";s:104:\"http://bestecommerce-uk.com/wp-content/themes/parallelus-mingle/assets/images/content/top-graphic-bg.png\";s:16:\"background_color\";s:0:\"\";s:8:\"bg_pos_x\";s:1:\"0\";s:8:\"bg_pos_y\";s:3:\"50%\";s:7:\"content\";s:285:\"&lt;div style=&quot;margin-right: 200px;&quot;&gt;&lt;div class=&quot;headertxt&quot;&gt;The art of First Impressions, online&lt;/div&gt;&lt;br /&gt;&lt;p&gt;Your website is a potential doorway for new customers. It matters that it is captivating and distinctive.&lt;/p&gt;&lt;/div&gt;\";s:5:\"index\";s:12:\"1ibj8qnroy0c\";s:12:\"ancestor_key\";s:0:\"\";s:11:\"version_key\";s:20:\"id_mu6m13rul79t82mh1\";s:10:\"import_key\";s:0:\"\";}s:12:\"18y5bayvvd2t\";a:13:{s:5:\"label\";s:25:\"web_marketing_top_graphic\";s:3:\"key\";s:12:\"18y5bayvvd2t\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:10:\"background\";s:104:\"http://bestecommerce-uk.com/wp-content/themes/parallelus-mingle/assets/images/content/top-graphic-bg.png\";s:16:\"background_color\";s:0:\"\";s:8:\"bg_pos_x\";s:1:\"0\";s:8:\"bg_pos_y\";s:3:\"50%\";s:7:\"content\";s:300:\"&lt;div style=&quot;margin-right: 200px;&quot;&gt;&lt;div class=&quot;headertxt&quot;&gt;Making ripples in the vast ocean of the Internet&lt;/div&gt;&lt;br /&gt;&lt;p&gt;If the potential market does not hear of your products and services, your business might as well not exists.&lt;/p&gt;&lt;/div&gt;\";s:5:\"index\";s:12:\"18y5bayvvd2t\";s:12:\"ancestor_key\";s:0:\"\";s:11:\"version_key\";s:20:\"id_qd6m1740f1kz1sfsx\";s:10:\"import_key\";s:0:\"\";}s:12:\"1m9v41zisyqe\";a:13:{s:5:\"label\";s:12:\"404 Redirect\";s:3:\"key\";s:12:\"1m9v41zisyqe\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:10:\"background\";s:104:\"http://bestecommerce-uk.com/wp-content/themes/parallelus-mingle/assets/images/content/top-graphic-bg.png\";s:16:\"background_color\";s:6:\"F00E25\";s:8:\"bg_pos_x\";s:1:\"0\";s:8:\"bg_pos_y\";s:3:\"50%\";s:7:\"content\";s:0:\"\";s:5:\"index\";s:12:\"1m9v41zisyqe\";s:12:\"ancestor_key\";s:0:\"\";s:11:\"version_key\";s:20:\"id_sglhm4z9krswfjzfs\";s:10:\"import_key\";s:0:\"\";}s:12:\"588v3kv4x00s\";a:13:{s:5:\"label\";s:19:\"Default Top Graphic\";s:3:\"key\";s:12:\"588v3kv4x00s\";s:5:\"width\";s:3:\"990\";s:6:\"height\";s:3:\"150\";s:10:\"background\";s:77:\"/wp-content/themes/parallelus-mingle/assets/images/content/top-graphic-bg.png\";s:16:\"background_color\";s:0:\"\";s:8:\"bg_pos_x\";s:1:\"0\";s:8:\"bg_pos_y\";s:1:\"0\";s:7:\"content\";s:397:\"&lt;div style=&quot;margin-right: 200px;&quot;&gt;&lt;div class=&quot;headertxt&quot;&gt;Sorry you have entered an invalid address...&lt;/div&gt;&lt;br /&gt;&lt;p&gt;The page you are looking for does not exist. Please start at our &lt;a title=&quot;Best eCommerce Home&quot; href=&quot;http://bestecommerce-uk.com/&quot;&gt;homepage&lt;/a&gt;.\r\n\r\nThank you\r\nBest eCommerce UK&lt;/p&gt;&lt;/div&gt;\";s:5:\"index\";s:12:\"588v3kv4x00s\";s:12:\"ancestor_key\";s:12:\"top_graphics\";s:11:\"version_key\";s:20:\"id_plsbj185hg813q4jx\";s:10:\"import_key\";s:0:\"\";}s:12:\"77ku1p26azap\";a:13:{s:5:\"label\";s:12:\"testimonials\";s:3:\"key\";s:12:\"77ku1p26azap\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:10:\"background\";s:104:\"http://bestecommerce-uk.com/wp-content/themes/parallelus-mingle/assets/images/content/top-graphic-bg.png\";s:16:\"background_color\";s:0:\"\";s:8:\"bg_pos_x\";s:3:\"50%\";s:8:\"bg_pos_y\";s:3:\"50%\";s:7:\"content\";s:172:\"&lt;div style=&quot;margin-right: 200px;&quot;&gt;&lt;div class=&quot;headertxt&quot;&gt;Find out what our clients and partners have to say about our service...&lt;/div&gt;\";s:5:\"index\";s:12:\"77ku1p26azap\";s:12:\"ancestor_key\";s:0:\"\";s:11:\"version_key\";s:20:\"id_xx6aa2wxsq7jwh63g\";s:10:\"import_key\";s:0:\"\";}s:12:\"72snf85vvqwd\";a:13:{s:5:\"label\";s:27:\"About ecommerce top graphic\";s:3:\"key\";s:12:\"72snf85vvqwd\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:10:\"background\";s:104:\"http://bestecommerce-uk.com/wp-content/themes/parallelus-mingle/assets/images/content/top-graphic-bg.png\";s:16:\"background_color\";s:0:\"\";s:8:\"bg_pos_x\";s:1:\"0\";s:8:\"bg_pos_y\";s:3:\"50%\";s:7:\"content\";s:195:\"&lt;strong&gt;Design and marketing for an e-commerce website&lt;/strong&gt;\r\n&lt;p&gt;It is our job to make your company visible online and connect your business to a new customer base.&lt;/p&gt;\";s:5:\"index\";s:12:\"72snf85vvqwd\";s:12:\"ancestor_key\";s:0:\"\";s:11:\"version_key\";s:19:\"id_mr35nsdea2xl3jrv\";s:10:\"import_key\";s:0:\"\";}}s:8:\"sidebars\";a:4:{s:12:\"5f4v58xjl8op\";a:7:{s:5:\"label\";s:16:\"Packages Sidebar\";s:5:\"alias\";s:8:\"packages\";s:3:\"key\";s:12:\"5f4v58xjl8op\";s:5:\"index\";s:12:\"5f4v58xjl8op\";s:12:\"ancestor_key\";s:0:\"\";s:11:\"version_key\";s:20:\"id_e55e74qc1w8dww561\";s:10:\"import_key\";s:0:\"\";}s:12:\"4gj8ieu7640n\";a:7:{s:5:\"label\";s:18:\"web-design-sidebar\";s:5:\"alias\";s:18:\"web-design-sidebar\";s:3:\"key\";s:12:\"4gj8ieu7640n\";s:5:\"index\";s:12:\"4gj8ieu7640n\";s:12:\"ancestor_key\";s:0:\"\";s:11:\"version_key\";s:20:\"id_owgsg1vcgw9meolhh\";s:10:\"import_key\";s:0:\"\";}s:12:\"4sjtgkeyrnt7\";a:7:{s:5:\"label\";s:21:\"web-marketing-sidebar\";s:5:\"alias\";s:21:\"web-marketing-sidebar\";s:3:\"key\";s:12:\"4sjtgkeyrnt7\";s:5:\"index\";s:12:\"4sjtgkeyrnt7\";s:12:\"ancestor_key\";s:0:\"\";s:11:\"version_key\";s:19:\"id_fznmvdcapnumnige\";s:10:\"import_key\";s:0:\"\";}s:12:\"32z48sz8m0u5\";a:7:{s:5:\"label\";s:13:\"About Sidebar\";s:5:\"alias\";s:13:\"about-sidebar\";s:3:\"key\";s:12:\"32z48sz8m0u5\";s:5:\"index\";s:12:\"32z48sz8m0u5\";s:12:\"ancestor_key\";s:0:\"\";s:11:\"version_key\";s:20:\"id_qceth287cjthhmtbx\";s:10:\"import_key\";s:0:\"\";}}}','yes'),(194,0,'mingle_theme_settings','a:1:{s:7:\"options\";a:44:{s:14:\"show_post_date\";s:1:\"1\";s:16:\"show_author_name\";s:1:\"1\";s:18:\"show_comments_link\";s:1:\"1\";s:15:\"show_categories\";s:1:\"0\";s:9:\"show_tags\";s:1:\"1\";s:15:\"blog_show_image\";s:1:\"1\";s:15:\"post_show_image\";s:1:\"0\";s:16:\"post_image_width\";s:3:\"150\";s:17:\"post_image_height\";s:3:\"150\";s:16:\"use_post_excerpt\";s:1:\"1\";s:14:\"excerpt_length\";s:2:\"50\";s:14:\"read_more_text\";s:0:\"\";s:15:\"fade_in_content\";s:4:\"none\";s:18:\"advanced_ie_styles\";s:1:\"0\";s:14:\"favorites_icon\";s:31:\"http://para.llel.us/favicon.ico\";s:16:\"apple_touch_icon\";s:41:\"http://para.llel.us/apple-itouch-icon.png\";s:15:\"append_to_title\";s:0:\"\";s:18:\"placeholder_images\";s:1:\"1\";s:18:\"custom_placeholder\";s:0:\"\";s:8:\"404_page\";s:3:\"604\";s:16:\"google_analytics\";s:0:\"\";s:7:\"wpautop\";s:1:\"0\";s:21:\"access_theme_settings\";s:0:\"\";s:19:\"access_theme_design\";s:13:\"administrator\";s:23:\"developer_custom_fields\";s:1:\"0\";s:30:\"developer_custom_content_types\";s:0:\"\";s:27:\"developer_custom_taxonomies\";s:0:\"\";s:30:\"developer_custom_fields_access\";s:13:\"administrator\";s:37:\"developer_custom_content_types_access\";s:0:\"\";s:34:\"developer_custom_taxonomies_access\";s:0:\"\";s:19:\"branding_admin_logo\";s:0:\"\";s:26:\"branding_admin_header_logo\";s:0:\"\";s:29:\"branding_admin_help_tab_title\";s:0:\"\";s:31:\"branding_admin_help_tab_content\";s:0:\"\";s:40:\"branding_admin_custom_right_column_title\";s:0:\"\";s:34:\"branding_admin_custom_right_column\";s:0:\"\";s:42:\"branding_admin_right_column_theme_settings\";s:1:\"1\";s:43:\"branding_admin_right_column_design_settings\";s:1:\"1\";s:5:\"index\";s:7:\"options\";s:12:\"ancestor_key\";s:7:\"options\";s:11:\"version_key\";s:20:\"id_gvlwq5pqa9l2gd1t9\";s:10:\"import_key\";s:20:\"id_pbidd4vzm7svaah0k\";s:12:\"contact_form\";a:5:{s:2:\"to\";s:24:\"seo@dmcwebservices.co.uk\";s:7:\"subject\";s:42:\"Message From webdesign-uk.org Contact Form\";s:8:\"thankyou\";s:9:\"Thank you\";s:6:\"button\";s:12:\"Send Message\";s:7:\"captcha\";s:1:\"1\";}s:14:\"contact_fields\";a:5:{s:4:\"name\";a:16:{s:5:\"label\";s:4:\"Name\";s:3:\"key\";s:4:\"name\";s:7:\"caption\";s:0:\"\";s:10:\"field_type\";s:4:\"text\";s:6:\"values\";s:0:\"\";s:8:\"required\";s:1:\"1\";s:14:\"error_required\";s:23:\"Please enter your name.\";s:9:\"minlength\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:10:\"validation\";s:0:\"\";s:16:\"error_validation\";s:0:\"\";s:5:\"index\";s:4:\"name\";s:12:\"ancestor_key\";s:0:\"\";s:11:\"version_key\";s:20:\"id_krufl3r0nysh3u0cg\";s:10:\"import_key\";s:0:\"\";s:4:\"size\";a:2:{s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";}}s:5:\"email\";a:16:{s:5:\"label\";s:5:\"Email\";s:3:\"key\";s:5:\"email\";s:7:\"caption\";s:0:\"\";s:10:\"field_type\";s:4:\"text\";s:6:\"values\";s:0:\"\";s:8:\"required\";s:1:\"1\";s:14:\"error_required\";s:32:\"Please enter your email address.\";s:9:\"minlength\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:10:\"validation\";s:5:\"email\";s:16:\"error_validation\";s:27:\"Please enter a valid email.\";s:5:\"index\";s:5:\"email\";s:12:\"ancestor_key\";s:0:\"\";s:11:\"version_key\";s:20:\"id_lj12w66s6flgbqx0k\";s:10:\"import_key\";s:0:\"\";s:4:\"size\";a:2:{s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";}}s:11:\"domain-name\";a:16:{s:5:\"label\";s:11:\"Domain name\";s:3:\"key\";s:11:\"domain-name\";s:7:\"caption\";s:0:\"\";s:10:\"field_type\";s:4:\"text\";s:6:\"values\";s:0:\"\";s:8:\"required\";s:1:\"0\";s:14:\"error_required\";s:0:\"\";s:9:\"minlength\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:10:\"validation\";s:0:\"\";s:16:\"error_validation\";s:0:\"\";s:5:\"index\";s:11:\"domain-name\";s:12:\"ancestor_key\";s:0:\"\";s:11:\"version_key\";s:20:\"id_zl1sl1as6qw8ebmf7\";s:10:\"import_key\";s:0:\"\";s:4:\"size\";a:2:{s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";}}s:12:\"phone-number\";a:16:{s:5:\"label\";s:5:\"Phone\";s:3:\"key\";s:12:\"phone-number\";s:7:\"caption\";s:0:\"\";s:10:\"field_type\";s:4:\"text\";s:6:\"values\";s:0:\"\";s:8:\"required\";s:1:\"0\";s:14:\"error_required\";s:0:\"\";s:9:\"minlength\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:10:\"validation\";s:0:\"\";s:16:\"error_validation\";s:0:\"\";s:5:\"index\";s:12:\"phone-number\";s:12:\"ancestor_key\";s:0:\"\";s:11:\"version_key\";s:20:\"id_y78ty51p0456ib2ko\";s:10:\"import_key\";s:0:\"\";s:4:\"size\";a:2:{s:5:\"width\";s:3:\"150\";s:6:\"height\";s:0:\"\";}}s:8:\"comments\";a:16:{s:5:\"label\";s:8:\"Comments\";s:3:\"key\";s:8:\"comments\";s:7:\"caption\";s:0:\"\";s:10:\"field_type\";s:8:\"textarea\";s:6:\"values\";s:0:\"\";s:8:\"required\";s:1:\"1\";s:14:\"error_required\";s:23:\"Please enter a comment.\";s:9:\"minlength\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:10:\"validation\";s:0:\"\";s:16:\"error_validation\";s:0:\"\";s:5:\"index\";s:8:\"comments\";s:12:\"ancestor_key\";s:0:\"\";s:11:\"version_key\";s:20:\"id_fy3ye5fcshstmsw4k\";s:10:\"import_key\";s:0:\"\";s:4:\"size\";a:2:{s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";}}}}}','yes'),(195,0,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(276,0,'_transient_random_seed','99458b9677c1a44e16d3ff612cf0f0ed','yes'),(291,0,'recently_activated','a:0:{}','yes'),(292,0,'aioseop_options','a:35:{s:9:\"aiosp_can\";s:2:\"on\";s:12:\"aiosp_donate\";s:2:\"on\";s:16:\"aiosp_home_title\";s:13:\"Web Design UK\";s:22:\"aiosp_home_description\";s:82:\"eCommerce UK provide webshop and online sales websites and systems for SME\\&#039;s\";s:19:\"aiosp_home_keywords\";s:135:\"ecommerce, uk, websites, web, sites, webdesign, design, designer, designers, webshop, small business ecommerce, ecommerce uk, edinburgh\";s:23:\"aiosp_max_words_excerpt\";N;s:20:\"aiosp_rewrite_titles\";s:2:\"on\";s:23:\"aiosp_post_title_format\";s:27:\"%post_title% | %blog_title%\";s:23:\"aiosp_page_title_format\";s:27:\"%page_title% | %blog_title%\";s:27:\"aiosp_category_title_format\";s:31:\"%category_title% | %blog_title%\";s:26:\"aiosp_archive_title_format\";s:21:\"%date% | %blog_title%\";s:22:\"aiosp_tag_title_format\";s:20:\"%tag% | %blog_title%\";s:25:\"aiosp_search_title_format\";s:23:\"%search% | %blog_title%\";s:24:\"aiosp_description_format\";s:13:\"%description%\";s:22:\"aiosp_404_title_format\";s:33:\"Nothing found for %request_words%\";s:18:\"aiosp_paged_format\";s:14:\" - Part %page%\";s:20:\"aiosp_use_categories\";N;s:32:\"aiosp_dynamic_postspage_keywords\";s:2:\"on\";s:22:\"aiosp_category_noindex\";s:2:\"on\";s:21:\"aiosp_archive_noindex\";s:2:\"on\";s:18:\"aiosp_tags_noindex\";N;s:14:\"aiosp_cap_cats\";s:2:\"on\";s:27:\"aiosp_generate_descriptions\";N;s:16:\"aiosp_debug_info\";N;s:20:\"aiosp_post_meta_tags\";s:0:\"\";s:20:\"aiosp_page_meta_tags\";s:0:\"\";s:20:\"aiosp_home_meta_tags\";s:0:\"\";s:13:\"aiosp_enabled\";s:1:\"1\";s:17:\"aiosp_enablecpost\";N;s:26:\"aiosp_use_tags_as_keywords\";s:2:\"on\";s:16:\"aiosp_seopostcol\";N;s:18:\"aiosp_seocustptcol\";N;s:21:\"aiosp_posttypecolumns\";a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}s:12:\"aiosp_do_log\";N;s:14:\"aiosp_ex_pages\";s:0:\"\";}','yes'),(3589,0,'rewrite_rules','a:102:{s:17:\"layout/([^/]+)/?$\";s:44:\"index.php?mf_key=layout&mf_value=$matches[1]\";s:33:\"layout/(.+?)/page/?([0-9]{1,})/?$\";s:62:\"index.php?mf_key=layout&mf_value=$matches[1]&paged=$matches[2]\";s:47:\"layout/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:61:\"index.php?mf_key=layout&mf_value=$matches[1]&feed=$matches[2]\";s:24:\"layout_header/([^/]+)/?$\";s:51:\"index.php?mf_key=layout_header&mf_value=$matches[1]\";s:40:\"layout_header/(.+?)/page/?([0-9]{1,})/?$\";s:69:\"index.php?mf_key=layout_header&mf_value=$matches[1]&paged=$matches[2]\";s:54:\"layout_header/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:68:\"index.php?mf_key=layout_header&mf_value=$matches[1]&feed=$matches[2]\";s:24:\"layout_footer/([^/]+)/?$\";s:51:\"index.php?mf_key=layout_footer&mf_value=$matches[1]\";s:40:\"layout_footer/(.+?)/page/?([0-9]{1,})/?$\";s:69:\"index.php?mf_key=layout_footer&mf_value=$matches[1]&paged=$matches[2]\";s:54:\"layout_footer/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:68:\"index.php?mf_key=layout_footer&mf_value=$matches[1]&feed=$matches[2]\";s:21:\"hide_title/([^/]+)/?$\";s:48:\"index.php?mf_key=hide_title&mf_value=$matches[1]\";s:37:\"hide_title/(.+?)/page/?([0-9]{1,})/?$\";s:66:\"index.php?mf_key=hide_title&mf_value=$matches[1]&paged=$matches[2]\";s:51:\"hide_title/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:65:\"index.php?mf_key=hide_title&mf_value=$matches[1]&feed=$matches[2]\";s:15:\"skin/([^/]+)/?$\";s:42:\"index.php?mf_key=skin&mf_value=$matches[1]\";s:31:\"skin/(.+?)/page/?([0-9]{1,})/?$\";s:60:\"index.php?mf_key=skin&mf_value=$matches[1]&paged=$matches[2]\";s:45:\"skin/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:59:\"index.php?mf_key=skin&mf_value=$matches[1]&feed=$matches[2]\";s:20:\"media_url/([^/]+)/?$\";s:47:\"index.php?mf_key=media_url&mf_value=$matches[1]\";s:36:\"media_url/(.+?)/page/?([0-9]{1,})/?$\";s:65:\"index.php?mf_key=media_url&mf_value=$matches[1]&paged=$matches[2]\";s:50:\"media_url/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?mf_key=media_url&mf_value=$matches[1]&feed=$matches[2]\";s:22:\"media_title/([^/]+)/?$\";s:49:\"index.php?mf_key=media_title&mf_value=$matches[1]\";s:38:\"media_title/(.+?)/page/?([0-9]{1,})/?$\";s:67:\"index.php?mf_key=media_title&mf_value=$matches[1]&paged=$matches[2]\";s:52:\"media_title/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:66:\"index.php?mf_key=media_title&mf_value=$matches[1]&feed=$matches[2]\";s:25:\"search-exclude/([^/]+)/?$\";s:52:\"index.php?mf_key=search-exclude&mf_value=$matches[1]\";s:41:\"search-exclude/(.+?)/page/?([0-9]{1,})/?$\";s:70:\"index.php?mf_key=search-exclude&mf_value=$matches[1]&paged=$matches[2]\";s:55:\"search-exclude/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:69:\"index.php?mf_key=search-exclude&mf_value=$matches[1]&feed=$matches[2]\";s:18:\"wpautop/([^/]+)/?$\";s:45:\"index.php?mf_key=wpautop&mf_value=$matches[1]\";s:34:\"wpautop/(.+?)/page/?([0-9]{1,})/?$\";s:63:\"index.php?mf_key=wpautop&mf_value=$matches[1]&paged=$matches[2]\";s:48:\"wpautop/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:62:\"index.php?mf_key=wpautop&mf_value=$matches[1]&feed=$matches[2]\";s:48:\"ecommerce/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:43:\"ecommerce/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:36:\"ecommerce/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:18:\"ecommerce/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:50:\"ecommerce/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:45:\"ecommerce/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:38:\"ecommerce/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:20:\"ecommerce/([^/]+)/?$\";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: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:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:14:\".*wp-atom.php$\";s:19:\"index.php?feed=atom\";s:13:\".*wp-rdf.php$\";s:18:\"index.php?feed=rdf\";s:13:\".*wp-rss.php$\";s:18:\"index.php?feed=rss\";s:14:\".*wp-rss2.php$\";s:19:\"index.php?feed=rss2\";s:14:\".*wp-feed.php$\";s:19:\"index.php?feed=feed\";s:22:\".*wp-commentsrss2.php$\";s:34:\"index.php?feed=rss2&withcomments=1\";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: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=15&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:29:\"comments/page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";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: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: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: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: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: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:47:\"[0-9]{4}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:44:\"([0-9]{4})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:69:\"index.php?year=$matches[1]&monthnum=$matches[2]&name=$matches[3]&tb=1\";s:64:\"([0-9]{4})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&name=$matches[3]&feed=$matches[4]\";s:59:\"([0-9]{4})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&name=$matches[3]&feed=$matches[4]\";s:52:\"([0-9]{4})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:82:\"index.php?year=$matches[1]&monthnum=$matches[2]&name=$matches[3]&paged=$matches[4]\";s:59:\"([0-9]{4})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:82:\"index.php?year=$matches[1]&monthnum=$matches[2]&name=$matches[3]&cpage=$matches[4]\";s:44:\"([0-9]{4})/([0-9]{1,2})/([^/]+)(/[0-9]+)?/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&name=$matches[3]&page=$matches[4]\";s:36:\"[0-9]{4}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:46:\"[0-9]{4}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:66:\"[0-9]{4}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"[0-9]{4}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"[0-9]{4}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:25:\".+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:35:\".+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:55:\".+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\".+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\".+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:18:\"(.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:38:\"(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:33:\"(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:26:\"(.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:33:\"(.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:18:\"(.+?)(/[0-9]+)?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'),(2502,0,'wpsr_active','1','yes'),(2499,0,'wpsr_template2_data','a:14:{s:7:\"content\";s:43:\"<h3>Share and Enjoy</h3>\r\n{social-bts-16px}\";s:6:\"inhome\";s:1:\"1\";s:8:\"insingle\";s:1:\"1\";s:6:\"inpage\";s:1:\"1\";s:10:\"incategory\";s:1:\"1\";s:5:\"intag\";s:1:\"1\";s:6:\"indate\";s:1:\"1\";s:8:\"inauthor\";s:1:\"1\";s:8:\"insearch\";s:1:\"1\";s:9:\"inexcerpt\";s:1:\"1\";s:6:\"infeed\";s:1:\"1\";s:10:\"abvcontent\";N;s:10:\"blwcontent\";s:1:\"1\";s:4:\"addp\";N;}','yes'),(2500,0,'wpsr_settings_data','a:6:{s:9:\"rssoutput\";s:0:\"\";s:13:\"bitlyusername\";s:0:\"\";s:8:\"bitlyapi\";s:0:\"\";s:11:\"disablewpsr\";s:1:\"0\";s:12:\"scriptsplace\";s:6:\"header\";s:6:\"rssurl\";s:0:\"\";}','yes'),(2501,0,'wpsr_version','2.2','yes'),(2421,0,'_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a','1322161059','yes'),(2422,0,'_site_transient_poptags_40cd750bba9870f18aada2478b24840a','a:40:{s:6:\"widget\";a:3:{s:4:\"name\";s:6:\"widget\";s:4:\"slug\";s:6:\"widget\";s:5:\"count\";s:4:\"2477\";}s:4:\"post\";a:3:{s:4:\"name\";s:4:\"Post\";s:4:\"slug\";s:4:\"post\";s:5:\"count\";s:4:\"1672\";}s:6:\"plugin\";a:3:{s:4:\"name\";s:6:\"plugin\";s:4:\"slug\";s:6:\"plugin\";s:5:\"count\";s:4:\"1488\";}s:5:\"posts\";a:3:{s:4:\"name\";s:5:\"posts\";s:4:\"slug\";s:5:\"posts\";s:5:\"count\";s:4:\"1249\";}s:5:\"admin\";a:3:{s:4:\"name\";s:5:\"admin\";s:4:\"slug\";s:5:\"admin\";s:5:\"count\";s:4:\"1237\";}s:7:\"sidebar\";a:3:{s:4:\"name\";s:7:\"sidebar\";s:4:\"slug\";s:7:\"sidebar\";s:5:\"count\";s:4:\"1202\";}s:8:\"comments\";a:3:{s:4:\"name\";s:8:\"comments\";s:4:\"slug\";s:8:\"comments\";s:5:\"count\";s:3:\"881\";}s:6:\"images\";a:3:{s:4:\"name\";s:6:\"images\";s:4:\"slug\";s:6:\"images\";s:5:\"count\";s:3:\"809\";}s:7:\"twitter\";a:3:{s:4:\"name\";s:7:\"twitter\";s:4:\"slug\";s:7:\"twitter\";s:5:\"count\";s:3:\"778\";}s:4:\"page\";a:3:{s:4:\"name\";s:4:\"page\";s:4:\"slug\";s:4:\"page\";s:5:\"count\";s:3:\"758\";}s:6:\"google\";a:3:{s:4:\"name\";s:6:\"google\";s:4:\"slug\";s:6:\"google\";s:5:\"count\";s:3:\"739\";}s:5:\"links\";a:3:{s:4:\"name\";s:5:\"links\";s:4:\"slug\";s:5:\"links\";s:5:\"count\";s:3:\"686\";}s:5:\"image\";a:3:{s:4:\"name\";s:5:\"image\";s:4:\"slug\";s:5:\"image\";s:5:\"count\";s:3:\"675\";}s:3:\"seo\";a:3:{s:4:\"name\";s:3:\"seo\";s:4:\"slug\";s:3:\"seo\";s:5:\"count\";s:3:\"600\";}s:3:\"rss\";a:3:{s:4:\"name\";s:3:\"rss\";s:4:\"slug\";s:3:\"rss\";s:5:\"count\";s:3:\"530\";}s:7:\"gallery\";a:3:{s:4:\"name\";s:7:\"gallery\";s:4:\"slug\";s:7:\"gallery\";s:5:\"count\";s:3:\"517\";}s:7:\"widgets\";a:3:{s:4:\"name\";s:7:\"widgets\";s:4:\"slug\";s:7:\"widgets\";s:5:\"count\";s:3:\"445\";}s:5:\"pages\";a:3:{s:4:\"name\";s:5:\"pages\";s:4:\"slug\";s:5:\"pages\";s:5:\"count\";s:3:\"443\";}s:4:\"ajax\";a:3:{s:4:\"name\";s:4:\"AJAX\";s:4:\"slug\";s:4:\"ajax\";s:5:\"count\";s:3:\"439\";}s:9:\"wordpress\";a:3:{s:4:\"name\";s:9:\"wordpress\";s:4:\"slug\";s:9:\"wordpress\";s:5:\"count\";s:3:\"430\";}s:8:\"facebook\";a:3:{s:4:\"name\";s:8:\"Facebook\";s:4:\"slug\";s:8:\"facebook\";s:5:\"count\";s:3:\"428\";}s:6:\"social\";a:3:{s:4:\"name\";s:6:\"social\";s:4:\"slug\";s:6:\"social\";s:5:\"count\";s:3:\"400\";}s:9:\"shortcode\";a:3:{s:4:\"name\";s:9:\"shortcode\";s:4:\"slug\";s:9:\"shortcode\";s:5:\"count\";s:3:\"389\";}s:6:\"jquery\";a:3:{s:4:\"name\";s:6:\"jquery\";s:4:\"slug\";s:6:\"jquery\";s:5:\"count\";s:3:\"379\";}s:10:\"javascript\";a:3:{s:4:\"name\";s:10:\"javascript\";s:4:\"slug\";s:10:\"javascript\";s:5:\"count\";s:3:\"373\";}s:4:\"feed\";a:3:{s:4:\"name\";s:4:\"feed\";s:4:\"slug\";s:4:\"feed\";s:5:\"count\";s:3:\"355\";}s:10:\"buddypress\";a:3:{s:4:\"name\";s:10:\"buddypress\";s:4:\"slug\";s:10:\"buddypress\";s:5:\"count\";s:3:\"354\";}s:5:\"photo\";a:3:{s:4:\"name\";s:5:\"photo\";s:4:\"slug\";s:5:\"photo\";s:5:\"count\";s:3:\"354\";}s:5:\"video\";a:3:{s:4:\"name\";s:5:\"video\";s:4:\"slug\";s:5:\"video\";s:5:\"count\";s:3:\"350\";}s:5:\"email\";a:3:{s:4:\"name\";s:5:\"email\";s:4:\"slug\";s:5:\"email\";s:5:\"count\";s:3:\"345\";}s:5:\"media\";a:3:{s:4:\"name\";s:5:\"media\";s:4:\"slug\";s:5:\"media\";s:5:\"count\";s:3:\"345\";}s:6:\"photos\";a:3:{s:4:\"name\";s:6:\"photos\";s:4:\"slug\";s:6:\"photos\";s:5:\"count\";s:3:\"340\";}s:5:\"flash\";a:3:{s:4:\"name\";s:5:\"flash\";s:4:\"slug\";s:5:\"flash\";s:5:\"count\";s:3:\"328\";}s:4:\"tags\";a:3:{s:4:\"name\";s:4:\"tags\";s:4:\"slug\";s:4:\"tags\";s:5:\"count\";s:3:\"318\";}s:5:\"stats\";a:3:{s:4:\"name\";s:5:\"stats\";s:4:\"slug\";s:5:\"stats\";s:5:\"count\";s:3:\"312\";}s:4:\"link\";a:3:{s:4:\"name\";s:4:\"link\";s:4:\"slug\";s:4:\"link\";s:5:\"count\";s:3:\"309\";}s:7:\"content\";a:3:{s:4:\"name\";s:7:\"content\";s:4:\"slug\";s:7:\"content\";s:5:\"count\";s:3:\"301\";}s:8:\"category\";a:3:{s:4:\"name\";s:8:\"category\";s:4:\"slug\";s:8:\"category\";s:5:\"count\";s:3:\"289\";}s:7:\"comment\";a:3:{s:4:\"name\";s:7:\"comment\";s:4:\"slug\";s:7:\"comment\";s:5:\"count\";s:3:\"289\";}s:4:\"spam\";a:3:{s:4:\"name\";s:4:\"spam\";s:4:\"slug\";s:4:\"spam\";s:5:\"count\";s:3:\"283\";}}','yes'),(1151,0,'manage-multiple-blogs','a:2:{s:5:\"blogs\";a:0:{}s:12:\"current_blog\";a:1:{s:4:\"type\";N;}}','yes'),(1152,0,'mwp_iframe_options_header','1321871627.58','yes'),(3243,0,'_action_message_id','13','yes'),(3246,0,'mwp_backup_tasks','a:1:{s:10:\"Backup Now\";a:2:{s:9:\"task_args\";a:8:{s:4:\"what\";s:4:\"full\";s:15:\"optimize_tables\";b:0;s:7:\"exclude\";a:0:{}s:7:\"include\";a:0:{}s:13:\"del_host_file\";b:0;s:12:\"disable_comp\";i:0;s:5:\"limit\";s:1:\"1\";s:12:\"account_info\";a:0:{}}s:12:\"task_results\";a:0:{}}}','yes'),(1221,0,'uninstall_plugins','a:2:{i:0;b:0;s:35:\"si-contact-form/si-contact-form.php\";s:24:\"si_contact_unset_options\";}','yes'),(1222,0,'si_contact_form_gb','a:5:{s:7:\"donated\";s:5:\"false\";s:9:\"max_forms\";i:4;s:10:\"max_fields\";s:1:\"4\";s:23:\"captcha_disable_session\";s:4:\"true\";s:5:\"2.6.3\";i:1;}','yes'),(1223,0,'si_contact_form','a:182:{s:9:\"form_name\";s:0:\"\";s:7:\"welcome\";s:41:\"<p>Comments or questions are welcome.</p>\";s:8:\"email_to\";s:34:\"Webmaster,seo@bestecommerce-uk.com\";s:17:\"php_mailer_enable\";s:9:\"wordpress\";s:10:\"email_from\";s:0:\"\";s:19:\"email_from_enforced\";s:5:\"false\";s:14:\"email_reply_to\";s:0:\"\";s:9:\"email_bcc\";s:0:\"\";s:13:\"email_subject\";s:29:\"bestecommerce-uk.com Contact:\";s:18:\"email_subject_list\";s:0:\"\";s:11:\"name_format\";s:4:\"name\";s:9:\"name_type\";s:8:\"required\";s:10:\"email_type\";s:8:\"required\";s:12:\"subject_type\";s:8:\"required\";s:12:\"message_type\";s:8:\"required\";s:21:\"preserve_space_enable\";s:5:\"false\";s:10:\"max_fields\";s:1:\"4\";s:12:\"double_email\";s:5:\"false\";s:16:\"name_case_enable\";s:5:\"false\";s:18:\"sender_info_enable\";s:4:\"true\";s:14:\"domain_protect\";s:4:\"true\";s:15:\"email_check_dns\";s:5:\"false\";s:10:\"email_html\";s:5:\"false\";s:15:\"akismet_disable\";s:5:\"false\";s:19:\"akismet_send_anyway\";s:4:\"true\";s:14:\"captcha_enable\";s:4:\"true\";s:13:\"captcha_small\";s:5:\"false\";s:18:\"captcha_difficulty\";s:6:\"medium\";s:16:\"captcha_no_trans\";s:5:\"false\";s:12:\"enable_audio\";s:4:\"true\";s:18:\"enable_audio_flash\";s:5:\"false\";s:12:\"captcha_perm\";s:5:\"false\";s:18:\"captcha_perm_level\";s:4:\"read\";s:15:\"redirect_enable\";s:4:\"true\";s:16:\"redirect_seconds\";s:1:\"3\";s:12:\"redirect_url\";s:27:\"http://bestecommerce-uk.com\";s:14:\"redirect_query\";s:5:\"false\";s:15:\"redirect_ignore\";s:0:\"\";s:15:\"redirect_rename\";s:0:\"\";s:12:\"redirect_add\";s:0:\"\";s:18:\"redirect_email_off\";s:5:\"false\";s:11:\"silent_send\";s:3:\"off\";s:10:\"silent_url\";s:0:\"\";s:13:\"silent_ignore\";s:0:\"\";s:13:\"silent_rename\";s:0:\"\";s:10:\"silent_add\";s:0:\"\";s:16:\"silent_email_off\";s:5:\"false\";s:13:\"export_enable\";s:4:\"true\";s:13:\"export_ignore\";s:0:\"\";s:13:\"export_rename\";s:0:\"\";s:10:\"export_add\";s:0:\"\";s:16:\"export_email_off\";s:5:\"false\";s:19:\"ex_fields_after_msg\";s:5:\"false\";s:11:\"date_format\";s:10:\"mm/dd/yyyy\";s:13:\"cal_start_day\";s:1:\"0\";s:11:\"time_format\";s:2:\"12\";s:12:\"attach_types\";s:28:\"doc,pdf,txt,gif,jpg,jpeg,png\";s:11:\"attach_size\";s:3:\"1mb\";s:19:\"textarea_html_allow\";s:5:\"false\";s:17:\"enable_areyousure\";s:5:\"false\";s:19:\"auto_respond_enable\";s:5:\"false\";s:17:\"auto_respond_html\";s:5:\"false\";s:22:\"auto_respond_from_name\";s:9:\"WordPress\";s:23:\"auto_respond_from_email\";s:24:\"seo@bestecommerce-uk.com\";s:21:\"auto_respond_reply_to\";s:24:\"seo@bestecommerce-uk.com\";s:20:\"auto_respond_subject\";s:0:\"\";s:20:\"auto_respond_message\";s:0:\"\";s:26:\"req_field_indicator_enable\";s:4:\"true\";s:22:\"req_field_label_enable\";s:4:\"true\";s:19:\"req_field_indicator\";s:2:\" *\";s:13:\"border_enable\";s:5:\"false\";s:10:\"form_style\";s:12:\"width:375px;\";s:12:\"border_style\";s:37:\"border:1px solid black; padding:10px;\";s:14:\"required_style\";s:16:\"text-align:left;\";s:11:\"notes_style\";s:16:\"text-align:left;\";s:11:\"title_style\";s:33:\"text-align:left; padding-top:5px;\";s:11:\"field_style\";s:26:\"text-align:left; margin:0;\";s:15:\"field_div_style\";s:16:\"text-align:left;\";s:11:\"error_style\";s:27:\"text-align:left; color:red;\";s:12:\"select_style\";s:16:\"text-align:left;\";s:20:\"captcha_div_style_sm\";s:42:\"width:175px; height:50px; padding-top:2px;\";s:19:\"captcha_div_style_m\";s:42:\"width:250px; height:65px; padding-top:2px;\";s:19:\"captcha_input_style\";s:38:\"text-align:left; margin:0; width:50px;\";s:16:\"submit_div_style\";s:33:\"text-align:left; padding-top:2px;\";s:12:\"button_style\";s:25:\"cursor:pointer; margin:0;\";s:11:\"reset_style\";s:25:\"cursor:pointer; margin:0;\";s:16:\"powered_by_style\";s:55:\"font-size:x-small; font-weight:normal; padding-top:5px;\";s:10:\"field_size\";s:2:\"40\";s:18:\"captcha_field_size\";s:1:\"6\";s:9:\"text_cols\";s:2:\"30\";s:9:\"text_rows\";s:2:\"10\";s:13:\"aria_required\";s:5:\"false\";s:16:\"auto_fill_enable\";s:4:\"true\";s:12:\"title_border\";s:0:\"\";s:10:\"title_dept\";s:0:\"\";s:12:\"title_select\";s:0:\"\";s:10:\"title_name\";s:0:\"\";s:11:\"title_fname\";s:0:\"\";s:11:\"title_mname\";s:0:\"\";s:12:\"title_miname\";s:0:\"\";s:11:\"title_lname\";s:0:\"\";s:11:\"title_email\";s:0:\"\";s:12:\"title_email2\";s:0:\"\";s:17:\"title_email2_help\";s:0:\"\";s:10:\"title_subj\";s:0:\"\";s:10:\"title_mess\";s:0:\"\";s:10:\"title_capt\";s:0:\"\";s:12:\"title_submit\";s:0:\"\";s:11:\"title_reset\";s:0:\"\";s:16:\"title_areyousure\";s:0:\"\";s:17:\"text_message_sent\";s:0:\"\";s:16:\"tooltip_required\";s:0:\"\";s:15:\"tooltip_captcha\";s:0:\"\";s:13:\"tooltip_audio\";s:0:\"\";s:15:\"tooltip_refresh\";s:0:\"\";s:17:\"tooltip_filetypes\";s:0:\"\";s:16:\"tooltip_filesize\";s:0:\"\";s:12:\"enable_reset\";s:5:\"false\";s:18:\"enable_credit_link\";s:5:\"false\";s:20:\"error_contact_select\";s:0:\"\";s:10:\"error_name\";s:0:\"\";s:11:\"error_email\";s:0:\"\";s:12:\"error_email2\";s:0:\"\";s:11:\"error_field\";s:0:\"\";s:13:\"error_subject\";s:0:\"\";s:13:\"error_message\";s:0:\"\";s:11:\"error_input\";s:0:\"\";s:19:\"error_captcha_blank\";s:0:\"\";s:19:\"error_captcha_wrong\";s:0:\"\";s:13:\"error_correct\";s:0:\"\";s:17:\"ex_field1_default\";s:1:\"0\";s:22:\"ex_field1_default_text\";s:0:\"\";s:13:\"ex_field1_req\";s:5:\"false\";s:15:\"ex_field1_label\";s:0:\"\";s:14:\"ex_field1_type\";s:4:\"text\";s:17:\"ex_field1_max_len\";s:0:\"\";s:19:\"ex_field1_label_css\";s:0:\"\";s:19:\"ex_field1_input_css\";s:0:\"\";s:20:\"ex_field1_attributes\";s:0:\"\";s:15:\"ex_field1_regex\";s:0:\"\";s:21:\"ex_field1_regex_error\";s:0:\"\";s:15:\"ex_field1_notes\";s:0:\"\";s:21:\"ex_field1_notes_after\";s:0:\"\";s:17:\"ex_field2_default\";s:1:\"0\";s:22:\"ex_field2_default_text\";s:0:\"\";s:13:\"ex_field2_req\";s:5:\"false\";s:15:\"ex_field2_label\";s:0:\"\";s:14:\"ex_field2_type\";s:4:\"text\";s:17:\"ex_field2_max_len\";s:0:\"\";s:19:\"ex_field2_label_css\";s:0:\"\";s:19:\"ex_field2_input_css\";s:0:\"\";s:20:\"ex_field2_attributes\";s:0:\"\";s:15:\"ex_field2_regex\";s:0:\"\";s:21:\"ex_field2_regex_error\";s:0:\"\";s:15:\"ex_field2_notes\";s:0:\"\";s:21:\"ex_field2_notes_after\";s:0:\"\";s:17:\"ex_field3_default\";s:1:\"0\";s:22:\"ex_field3_default_text\";s:0:\"\";s:13:\"ex_field3_req\";s:5:\"false\";s:15:\"ex_field3_label\";s:0:\"\";s:14:\"ex_field3_type\";s:4:\"text\";s:17:\"ex_field3_max_len\";s:0:\"\";s:19:\"ex_field3_label_css\";s:0:\"\";s:19:\"ex_field3_input_css\";s:0:\"\";s:20:\"ex_field3_attributes\";s:0:\"\";s:15:\"ex_field3_regex\";s:0:\"\";s:21:\"ex_field3_regex_error\";s:0:\"\";s:15:\"ex_field3_notes\";s:0:\"\";s:21:\"ex_field3_notes_after\";s:0:\"\";s:17:\"ex_field4_default\";s:1:\"0\";s:22:\"ex_field4_default_text\";s:0:\"\";s:13:\"ex_field4_req\";s:5:\"false\";s:15:\"ex_field4_label\";s:0:\"\";s:14:\"ex_field4_type\";s:4:\"text\";s:17:\"ex_field4_max_len\";s:0:\"\";s:19:\"ex_field4_label_css\";s:0:\"\";s:19:\"ex_field4_input_css\";s:0:\"\";s:20:\"ex_field4_attributes\";s:0:\"\";s:15:\"ex_field4_regex\";s:0:\"\";s:21:\"ex_field4_regex_error\";s:0:\"\";s:15:\"ex_field4_notes\";s:0:\"\";s:21:\"ex_field4_notes_after\";s:0:\"\";}','yes'),(1224,0,'si_contact_form2','a:260:{s:9:\"form_name\";s:0:\"\";s:7:\"welcome\";s:123:\"<p>Please provide your contact and website information below and we will endeavour to call you back within a few hours.</p>\";s:8:\"email_to\";s:34:\"Webmaster,seo@dmcwebservices.co.uk\";s:17:\"php_mailer_enable\";s:9:\"wordpress\";s:10:\"email_from\";s:0:\"\";s:19:\"email_from_enforced\";s:5:\"false\";s:9:\"email_bcc\";s:0:\"\";s:14:\"email_reply_to\";s:0:\"\";s:13:\"email_subject\";s:29:\"bestecommerce-uk.com Contact:\";s:18:\"email_subject_list\";s:0:\"\";s:11:\"name_format\";s:4:\"name\";s:9:\"name_type\";s:8:\"required\";s:10:\"email_type\";s:8:\"required\";s:12:\"subject_type\";s:13:\"not_available\";s:12:\"message_type\";s:12:\"not_required\";s:21:\"preserve_space_enable\";s:5:\"false\";s:10:\"max_fields\";s:2:\"10\";s:12:\"double_email\";s:4:\"true\";s:16:\"name_case_enable\";s:5:\"false\";s:18:\"sender_info_enable\";s:4:\"true\";s:14:\"domain_protect\";s:4:\"true\";s:15:\"email_check_dns\";s:5:\"false\";s:10:\"email_html\";s:5:\"false\";s:15:\"akismet_disable\";s:5:\"false\";s:19:\"akismet_send_anyway\";s:4:\"true\";s:14:\"captcha_enable\";s:4:\"true\";s:18:\"captcha_difficulty\";s:6:\"medium\";s:13:\"captcha_small\";s:5:\"false\";s:16:\"captcha_no_trans\";s:5:\"false\";s:12:\"enable_audio\";s:5:\"false\";s:18:\"enable_audio_flash\";s:5:\"false\";s:12:\"captcha_perm\";s:5:\"false\";s:18:\"captcha_perm_level\";s:4:\"read\";s:15:\"redirect_enable\";s:4:\"true\";s:16:\"redirect_seconds\";s:1:\"3\";s:12:\"redirect_url\";s:27:\"http://bestecommerce-uk.com\";s:14:\"redirect_query\";s:5:\"false\";s:15:\"redirect_ignore\";s:0:\"\";s:15:\"redirect_rename\";s:0:\"\";s:12:\"redirect_add\";s:0:\"\";s:18:\"redirect_email_off\";s:5:\"false\";s:11:\"silent_send\";s:3:\"off\";s:10:\"silent_url\";s:0:\"\";s:13:\"silent_ignore\";s:0:\"\";s:13:\"silent_rename\";s:0:\"\";s:10:\"silent_add\";s:0:\"\";s:16:\"silent_email_off\";s:5:\"false\";s:13:\"export_enable\";s:4:\"true\";s:13:\"export_ignore\";s:0:\"\";s:13:\"export_rename\";s:0:\"\";s:10:\"export_add\";s:0:\"\";s:16:\"export_email_off\";s:5:\"false\";s:13:\"border_enable\";s:5:\"false\";s:19:\"ex_fields_after_msg\";s:5:\"false\";s:11:\"date_format\";s:10:\"mm/dd/yyyy\";s:13:\"cal_start_day\";s:1:\"0\";s:11:\"time_format\";s:2:\"12\";s:12:\"attach_types\";s:28:\"doc,pdf,txt,gif,jpg,jpeg,png\";s:11:\"attach_size\";s:3:\"1mb\";s:19:\"textarea_html_allow\";s:5:\"false\";s:17:\"enable_areyousure\";s:5:\"false\";s:19:\"auto_respond_enable\";s:5:\"false\";s:17:\"auto_respond_html\";s:5:\"false\";s:22:\"auto_respond_from_name\";s:9:\"WordPress\";s:23:\"auto_respond_from_email\";s:24:\"seo@dmcwebservices.co.uk\";s:21:\"auto_respond_reply_to\";s:24:\"seo@dmcwebservices.co.uk\";s:20:\"auto_respond_message\";s:0:\"\";s:20:\"auto_respond_subject\";s:0:\"\";s:19:\"req_field_indicator\";s:2:\" *\";s:22:\"req_field_label_enable\";s:4:\"true\";s:26:\"req_field_indicator_enable\";s:4:\"true\";s:10:\"form_style\";s:12:\"width:750px;\";s:12:\"border_style\";s:37:\"border:1px solid black; padding:10px;\";s:14:\"required_style\";s:36:\"padding-left:146px; text-align:left;\";s:11:\"notes_style\";s:48:\"padding-left:146px; text-align:left; clear:left;\";s:11:\"title_style\";s:90:\"width:300px; text-align:left; float:left; clear:left; padding-top:8px; padding-right:10px;\";s:12:\"select_style\";s:29:\"width:438px; text-align:left;\";s:11:\"field_style\";s:64:\"width:400px; text-align:left; float:left; padding:2px; margin:0;\";s:15:\"field_div_style\";s:46:\"text-align:left; float:left; padding-top:10px;\";s:11:\"error_style\";s:27:\"text-align:left; color:red;\";s:20:\"captcha_div_style_sm\";s:54:\"float:left; width:162px; height:50px; padding-top:5px;\";s:19:\"captcha_div_style_m\";s:54:\"float:left; width:362px; height:65px; padding-top:5px;\";s:19:\"captcha_input_style\";s:64:\"text-align:left; float:left; padding:2px; margin:0; width:100px;\";s:16:\"submit_div_style\";s:77:\"padding-left:310px; text-align:left; float:left; clear:left; padding-top:8px;\";s:12:\"button_style\";s:25:\"cursor:pointer; margin:0;\";s:11:\"reset_style\";s:25:\"cursor:pointer; margin:0;\";s:16:\"powered_by_style\";s:99:\"padding-left:146px; float:left; clear:left; font-size:x-small; font-weight:normal; padding-top:5px;\";s:10:\"field_size\";s:2:\"39\";s:18:\"captcha_field_size\";s:1:\"6\";s:9:\"text_cols\";s:2:\"30\";s:9:\"text_rows\";s:2:\"10\";s:13:\"aria_required\";s:5:\"false\";s:16:\"auto_fill_enable\";s:4:\"true\";s:12:\"title_border\";s:0:\"\";s:10:\"title_dept\";s:0:\"\";s:12:\"title_select\";s:0:\"\";s:10:\"title_name\";s:0:\"\";s:11:\"title_fname\";s:0:\"\";s:11:\"title_lname\";s:0:\"\";s:11:\"title_mname\";s:0:\"\";s:12:\"title_miname\";s:0:\"\";s:11:\"title_email\";s:0:\"\";s:12:\"title_email2\";s:0:\"\";s:17:\"title_email2_help\";s:0:\"\";s:10:\"title_subj\";s:0:\"\";s:10:\"title_mess\";s:19:\"Additional Comments\";s:10:\"title_capt\";s:0:\"\";s:12:\"title_submit\";s:0:\"\";s:11:\"title_reset\";s:0:\"\";s:16:\"title_areyousure\";s:0:\"\";s:17:\"text_message_sent\";s:0:\"\";s:16:\"tooltip_required\";s:0:\"\";s:15:\"tooltip_captcha\";s:0:\"\";s:13:\"tooltip_audio\";s:0:\"\";s:15:\"tooltip_refresh\";s:0:\"\";s:17:\"tooltip_filetypes\";s:0:\"\";s:16:\"tooltip_filesize\";s:0:\"\";s:12:\"enable_reset\";s:5:\"false\";s:18:\"enable_credit_link\";s:5:\"false\";s:20:\"error_contact_select\";s:0:\"\";s:10:\"error_name\";s:0:\"\";s:11:\"error_email\";s:0:\"\";s:12:\"error_email2\";s:0:\"\";s:11:\"error_field\";s:0:\"\";s:13:\"error_subject\";s:0:\"\";s:13:\"error_message\";s:0:\"\";s:11:\"error_input\";s:0:\"\";s:19:\"error_captcha_blank\";s:0:\"\";s:19:\"error_captcha_wrong\";s:0:\"\";s:13:\"error_correct\";s:0:\"\";s:15:\"ex_field1_label\";s:17:\"Telephone Number:\";s:14:\"ex_field1_type\";s:4:\"text\";s:17:\"ex_field1_default\";s:1:\"0\";s:22:\"ex_field1_default_text\";s:0:\"\";s:17:\"ex_field1_max_len\";s:0:\"\";s:19:\"ex_field1_label_css\";s:0:\"\";s:19:\"ex_field1_input_css\";s:0:\"\";s:20:\"ex_field1_attributes\";s:0:\"\";s:15:\"ex_field1_regex\";s:0:\"\";s:21:\"ex_field1_regex_error\";s:0:\"\";s:13:\"ex_field1_req\";s:4:\"true\";s:15:\"ex_field1_notes\";s:0:\"\";s:21:\"ex_field1_notes_after\";s:0:\"\";s:15:\"ex_field2_label\";s:17:\"Website (If any):\";s:14:\"ex_field2_type\";s:4:\"text\";s:17:\"ex_field2_default\";s:1:\"0\";s:22:\"ex_field2_default_text\";s:0:\"\";s:17:\"ex_field2_max_len\";s:0:\"\";s:19:\"ex_field2_label_css\";s:0:\"\";s:19:\"ex_field2_input_css\";s:0:\"\";s:20:\"ex_field2_attributes\";s:0:\"\";s:15:\"ex_field2_regex\";s:0:\"\";s:21:\"ex_field2_regex_error\";s:0:\"\";s:13:\"ex_field2_req\";s:5:\"false\";s:15:\"ex_field2_notes\";s:0:\"\";s:21:\"ex_field2_notes_after\";s:0:\"\";s:15:\"ex_field3_label\";s:32:\"What is your product or service?\";s:14:\"ex_field3_type\";s:4:\"text\";s:17:\"ex_field3_default\";s:1:\"0\";s:22:\"ex_field3_default_text\";s:0:\"\";s:17:\"ex_field3_max_len\";s:0:\"\";s:19:\"ex_field3_label_css\";s:0:\"\";s:19:\"ex_field3_input_css\";s:0:\"\";s:20:\"ex_field3_attributes\";s:0:\"\";s:15:\"ex_field3_regex\";s:0:\"\";s:21:\"ex_field3_regex_error\";s:0:\"\";s:13:\"ex_field3_req\";s:5:\"false\";s:15:\"ex_field3_notes\";s:0:\"\";s:21:\"ex_field3_notes_after\";s:0:\"\";s:15:\"ex_field4_label\";s:112:\"How many products/services do you wish to sell at any time via the site? (Approx.):,-;1-100;100-250;250-500;500+\";s:14:\"ex_field4_type\";s:6:\"select\";s:17:\"ex_field4_default\";s:1:\"1\";s:22:\"ex_field4_default_text\";s:13:\"Please select\";s:17:\"ex_field4_max_len\";s:0:\"\";s:19:\"ex_field4_label_css\";s:0:\"\";s:19:\"ex_field4_input_css\";s:0:\"\";s:20:\"ex_field4_attributes\";s:0:\"\";s:15:\"ex_field4_regex\";s:0:\"\";s:21:\"ex_field4_regex_error\";s:0:\"\";s:13:\"ex_field4_req\";s:4:\"true\";s:15:\"ex_field4_notes\";s:0:\"\";s:21:\"ex_field4_notes_after\";s:0:\"\";s:15:\"ex_field5_label\";s:143:\"How many products/services do you wish to be uploaded and configured on the site at time of going-live? (Approx.):,-;1-100;100-250;250-500;500+\";s:14:\"ex_field5_type\";s:6:\"select\";s:17:\"ex_field5_default\";s:1:\"0\";s:22:\"ex_field5_default_text\";s:13:\"Please select\";s:17:\"ex_field5_max_len\";s:0:\"\";s:19:\"ex_field5_label_css\";s:0:\"\";s:19:\"ex_field5_input_css\";s:0:\"\";s:20:\"ex_field5_attributes\";s:0:\"\";s:15:\"ex_field5_regex\";s:0:\"\";s:21:\"ex_field5_regex_error\";s:0:\"\";s:13:\"ex_field5_req\";s:4:\"true\";s:15:\"ex_field5_notes\";s:0:\"\";s:21:\"ex_field5_notes_after\";s:0:\"\";s:15:\"ex_field6_label\";s:56:\"Do you wish us to upload all products/services:,-;Yes;No\";s:14:\"ex_field6_type\";s:6:\"select\";s:17:\"ex_field6_default\";s:1:\"0\";s:22:\"ex_field6_default_text\";s:0:\"\";s:17:\"ex_field6_max_len\";s:0:\"\";s:19:\"ex_field6_label_css\";s:0:\"\";s:19:\"ex_field6_input_css\";s:0:\"\";s:20:\"ex_field6_attributes\";s:0:\"\";s:15:\"ex_field6_regex\";s:0:\"\";s:21:\"ex_field6_regex_error\";s:0:\"\";s:13:\"ex_field6_req\";s:5:\"false\";s:15:\"ex_field6_notes\";s:0:\"\";s:21:\"ex_field6_notes_after\";s:0:\"\";s:15:\"ex_field7_label\";s:149:\"Please select the payment methods you would like the site to accept:,Credit Card;Pay-Pal;World Pay; RBS World Pay;Cheque/Money orders;Purchase Orders\";s:14:\"ex_field7_type\";s:8:\"checkbox\";s:17:\"ex_field7_default\";s:1:\"0\";s:22:\"ex_field7_default_text\";s:0:\"\";s:17:\"ex_field7_max_len\";s:0:\"\";s:19:\"ex_field7_label_css\";s:0:\"\";s:19:\"ex_field7_input_css\";s:0:\"\";s:20:\"ex_field7_attributes\";s:0:\"\";s:15:\"ex_field7_regex\";s:0:\"\";s:21:\"ex_field7_regex_error\";s:0:\"\";s:13:\"ex_field7_req\";s:5:\"false\";s:15:\"ex_field7_notes\";s:0:\"\";s:21:\"ex_field7_notes_after\";s:0:\"\";s:15:\"ex_field8_label\";s:84:\"Will you require Search Engine Optimisation for the site? (Additional cost),-;Yes;No\";s:14:\"ex_field8_type\";s:6:\"select\";s:17:\"ex_field8_default\";s:1:\"0\";s:22:\"ex_field8_default_text\";s:0:\"\";s:17:\"ex_field8_max_len\";s:0:\"\";s:19:\"ex_field8_label_css\";s:0:\"\";s:19:\"ex_field8_input_css\";s:0:\"\";s:20:\"ex_field8_attributes\";s:0:\"\";s:15:\"ex_field8_regex\";s:0:\"\";s:21:\"ex_field8_regex_error\";s:0:\"\";s:13:\"ex_field8_req\";s:4:\"true\";s:15:\"ex_field8_notes\";s:0:\"\";s:21:\"ex_field8_notes_after\";s:0:\"\";s:15:\"ex_field9_label\";s:0:\"\";s:14:\"ex_field9_type\";s:4:\"text\";s:17:\"ex_field9_default\";s:1:\"0\";s:22:\"ex_field9_default_text\";s:0:\"\";s:17:\"ex_field9_max_len\";s:0:\"\";s:19:\"ex_field9_label_css\";s:0:\"\";s:19:\"ex_field9_input_css\";s:0:\"\";s:20:\"ex_field9_attributes\";s:0:\"\";s:15:\"ex_field9_regex\";s:0:\"\";s:21:\"ex_field9_regex_error\";s:0:\"\";s:13:\"ex_field9_req\";s:5:\"false\";s:15:\"ex_field9_notes\";s:0:\"\";s:21:\"ex_field9_notes_after\";s:0:\"\";s:16:\"ex_field10_label\";s:0:\"\";s:15:\"ex_field10_type\";s:4:\"text\";s:18:\"ex_field10_default\";s:1:\"0\";s:23:\"ex_field10_default_text\";s:0:\"\";s:18:\"ex_field10_max_len\";s:0:\"\";s:20:\"ex_field10_label_css\";s:0:\"\";s:20:\"ex_field10_input_css\";s:0:\"\";s:21:\"ex_field10_attributes\";s:0:\"\";s:16:\"ex_field10_regex\";s:0:\"\";s:22:\"ex_field10_regex_error\";s:0:\"\";s:14:\"ex_field10_req\";s:5:\"false\";s:16:\"ex_field10_notes\";s:0:\"\";s:22:\"ex_field10_notes_after\";s:0:\"\";}','yes'),(1225,0,'si_contact_form3','a:182:{s:9:\"form_name\";s:0:\"\";s:7:\"welcome\";s:41:\"<p>Comments or questions are welcome.</p>\";s:8:\"email_to\";s:34:\"Webmaster,seo@bestecommerce-uk.com\";s:17:\"php_mailer_enable\";s:9:\"wordpress\";s:10:\"email_from\";s:0:\"\";s:19:\"email_from_enforced\";s:5:\"false\";s:14:\"email_reply_to\";s:0:\"\";s:9:\"email_bcc\";s:0:\"\";s:13:\"email_subject\";s:29:\"bestecommerce-uk.com Contact:\";s:18:\"email_subject_list\";s:0:\"\";s:11:\"name_format\";s:4:\"name\";s:9:\"name_type\";s:8:\"required\";s:10:\"email_type\";s:8:\"required\";s:12:\"subject_type\";s:8:\"required\";s:12:\"message_type\";s:8:\"required\";s:21:\"preserve_space_enable\";s:5:\"false\";s:10:\"max_fields\";s:1:\"4\";s:12:\"double_email\";s:5:\"false\";s:16:\"name_case_enable\";s:5:\"false\";s:18:\"sender_info_enable\";s:4:\"true\";s:14:\"domain_protect\";s:4:\"true\";s:15:\"email_check_dns\";s:5:\"false\";s:10:\"email_html\";s:5:\"false\";s:15:\"akismet_disable\";s:5:\"false\";s:19:\"akismet_send_anyway\";s:4:\"true\";s:14:\"captcha_enable\";s:4:\"true\";s:13:\"captcha_small\";s:5:\"false\";s:18:\"captcha_difficulty\";s:6:\"medium\";s:16:\"captcha_no_trans\";s:5:\"false\";s:12:\"enable_audio\";s:4:\"true\";s:18:\"enable_audio_flash\";s:5:\"false\";s:12:\"captcha_perm\";s:5:\"false\";s:18:\"captcha_perm_level\";s:4:\"read\";s:15:\"redirect_enable\";s:4:\"true\";s:16:\"redirect_seconds\";s:1:\"3\";s:12:\"redirect_url\";s:27:\"http://bestecommerce-uk.com\";s:14:\"redirect_query\";s:5:\"false\";s:15:\"redirect_ignore\";s:0:\"\";s:15:\"redirect_rename\";s:0:\"\";s:12:\"redirect_add\";s:0:\"\";s:18:\"redirect_email_off\";s:5:\"false\";s:11:\"silent_send\";s:3:\"off\";s:10:\"silent_url\";s:0:\"\";s:13:\"silent_ignore\";s:0:\"\";s:13:\"silent_rename\";s:0:\"\";s:10:\"silent_add\";s:0:\"\";s:16:\"silent_email_off\";s:5:\"false\";s:13:\"export_enable\";s:4:\"true\";s:13:\"export_ignore\";s:0:\"\";s:13:\"export_rename\";s:0:\"\";s:10:\"export_add\";s:0:\"\";s:16:\"export_email_off\";s:5:\"false\";s:19:\"ex_fields_after_msg\";s:5:\"false\";s:11:\"date_format\";s:10:\"mm/dd/yyyy\";s:13:\"cal_start_day\";s:1:\"0\";s:11:\"time_format\";s:2:\"12\";s:12:\"attach_types\";s:28:\"doc,pdf,txt,gif,jpg,jpeg,png\";s:11:\"attach_size\";s:3:\"1mb\";s:19:\"textarea_html_allow\";s:5:\"false\";s:17:\"enable_areyousure\";s:5:\"false\";s:19:\"auto_respond_enable\";s:5:\"false\";s:17:\"auto_respond_html\";s:5:\"false\";s:22:\"auto_respond_from_name\";s:9:\"WordPress\";s:23:\"auto_respond_from_email\";s:24:\"seo@bestecommerce-uk.com\";s:21:\"auto_respond_reply_to\";s:24:\"seo@bestecommerce-uk.com\";s:20:\"auto_respond_subject\";s:0:\"\";s:20:\"auto_respond_message\";s:0:\"\";s:26:\"req_field_indicator_enable\";s:4:\"true\";s:22:\"req_field_label_enable\";s:4:\"true\";s:19:\"req_field_indicator\";s:2:\" *\";s:13:\"border_enable\";s:5:\"false\";s:10:\"form_style\";s:12:\"width:375px;\";s:12:\"border_style\";s:37:\"border:1px solid black; padding:10px;\";s:14:\"required_style\";s:16:\"text-align:left;\";s:11:\"notes_style\";s:16:\"text-align:left;\";s:11:\"title_style\";s:33:\"text-align:left; padding-top:5px;\";s:11:\"field_style\";s:26:\"text-align:left; margin:0;\";s:15:\"field_div_style\";s:16:\"text-align:left;\";s:11:\"error_style\";s:27:\"text-align:left; color:red;\";s:12:\"select_style\";s:16:\"text-align:left;\";s:20:\"captcha_div_style_sm\";s:42:\"width:175px; height:50px; padding-top:2px;\";s:19:\"captcha_div_style_m\";s:42:\"width:250px; height:65px; padding-top:2px;\";s:19:\"captcha_input_style\";s:38:\"text-align:left; margin:0; width:50px;\";s:16:\"submit_div_style\";s:33:\"text-align:left; padding-top:2px;\";s:12:\"button_style\";s:25:\"cursor:pointer; margin:0;\";s:11:\"reset_style\";s:25:\"cursor:pointer; margin:0;\";s:16:\"powered_by_style\";s:55:\"font-size:x-small; font-weight:normal; padding-top:5px;\";s:10:\"field_size\";s:2:\"40\";s:18:\"captcha_field_size\";s:1:\"6\";s:9:\"text_cols\";s:2:\"30\";s:9:\"text_rows\";s:2:\"10\";s:13:\"aria_required\";s:5:\"false\";s:16:\"auto_fill_enable\";s:4:\"true\";s:12:\"title_border\";s:0:\"\";s:10:\"title_dept\";s:0:\"\";s:12:\"title_select\";s:0:\"\";s:10:\"title_name\";s:0:\"\";s:11:\"title_fname\";s:0:\"\";s:11:\"title_mname\";s:0:\"\";s:12:\"title_miname\";s:0:\"\";s:11:\"title_lname\";s:0:\"\";s:11:\"title_email\";s:0:\"\";s:12:\"title_email2\";s:0:\"\";s:17:\"title_email2_help\";s:0:\"\";s:10:\"title_subj\";s:0:\"\";s:10:\"title_mess\";s:0:\"\";s:10:\"title_capt\";s:0:\"\";s:12:\"title_submit\";s:0:\"\";s:11:\"title_reset\";s:0:\"\";s:16:\"title_areyousure\";s:0:\"\";s:17:\"text_message_sent\";s:0:\"\";s:16:\"tooltip_required\";s:0:\"\";s:15:\"tooltip_captcha\";s:0:\"\";s:13:\"tooltip_audio\";s:0:\"\";s:15:\"tooltip_refresh\";s:0:\"\";s:17:\"tooltip_filetypes\";s:0:\"\";s:16:\"tooltip_filesize\";s:0:\"\";s:12:\"enable_reset\";s:5:\"false\";s:18:\"enable_credit_link\";s:5:\"false\";s:20:\"error_contact_select\";s:0:\"\";s:10:\"error_name\";s:0:\"\";s:11:\"error_email\";s:0:\"\";s:12:\"error_email2\";s:0:\"\";s:11:\"error_field\";s:0:\"\";s:13:\"error_subject\";s:0:\"\";s:13:\"error_message\";s:0:\"\";s:11:\"error_input\";s:0:\"\";s:19:\"error_captcha_blank\";s:0:\"\";s:19:\"error_captcha_wrong\";s:0:\"\";s:13:\"error_correct\";s:0:\"\";s:17:\"ex_field1_default\";s:1:\"0\";s:22:\"ex_field1_default_text\";s:0:\"\";s:13:\"ex_field1_req\";s:5:\"false\";s:15:\"ex_field1_label\";s:0:\"\";s:14:\"ex_field1_type\";s:4:\"text\";s:17:\"ex_field1_max_len\";s:0:\"\";s:19:\"ex_field1_label_css\";s:0:\"\";s:19:\"ex_field1_input_css\";s:0:\"\";s:20:\"ex_field1_attributes\";s:0:\"\";s:15:\"ex_field1_regex\";s:0:\"\";s:21:\"ex_field1_regex_error\";s:0:\"\";s:15:\"ex_field1_notes\";s:0:\"\";s:21:\"ex_field1_notes_after\";s:0:\"\";s:17:\"ex_field2_default\";s:1:\"0\";s:22:\"ex_field2_default_text\";s:0:\"\";s:13:\"ex_field2_req\";s:5:\"false\";s:15:\"ex_field2_label\";s:0:\"\";s:14:\"ex_field2_type\";s:4:\"text\";s:17:\"ex_field2_max_len\";s:0:\"\";s:19:\"ex_field2_label_css\";s:0:\"\";s:19:\"ex_field2_input_css\";s:0:\"\";s:20:\"ex_field2_attributes\";s:0:\"\";s:15:\"ex_field2_regex\";s:0:\"\";s:21:\"ex_field2_regex_error\";s:0:\"\";s:15:\"ex_field2_notes\";s:0:\"\";s:21:\"ex_field2_notes_after\";s:0:\"\";s:17:\"ex_field3_default\";s:1:\"0\";s:22:\"ex_field3_default_text\";s:0:\"\";s:13:\"ex_field3_req\";s:5:\"false\";s:15:\"ex_field3_label\";s:0:\"\";s:14:\"ex_field3_type\";s:4:\"text\";s:17:\"ex_field3_max_len\";s:0:\"\";s:19:\"ex_field3_label_css\";s:0:\"\";s:19:\"ex_field3_input_css\";s:0:\"\";s:20:\"ex_field3_attributes\";s:0:\"\";s:15:\"ex_field3_regex\";s:0:\"\";s:21:\"ex_field3_regex_error\";s:0:\"\";s:15:\"ex_field3_notes\";s:0:\"\";s:21:\"ex_field3_notes_after\";s:0:\"\";s:17:\"ex_field4_default\";s:1:\"0\";s:22:\"ex_field4_default_text\";s:0:\"\";s:13:\"ex_field4_req\";s:5:\"false\";s:15:\"ex_field4_label\";s:0:\"\";s:14:\"ex_field4_type\";s:4:\"text\";s:17:\"ex_field4_max_len\";s:0:\"\";s:19:\"ex_field4_label_css\";s:0:\"\";s:19:\"ex_field4_input_css\";s:0:\"\";s:20:\"ex_field4_attributes\";s:0:\"\";s:15:\"ex_field4_regex\";s:0:\"\";s:21:\"ex_field4_regex_error\";s:0:\"\";s:15:\"ex_field4_notes\";s:0:\"\";s:21:\"ex_field4_notes_after\";s:0:\"\";}','yes'),(1226,0,'si_contact_form4','a:182:{s:9:\"form_name\";s:0:\"\";s:7:\"welcome\";s:41:\"<p>Comments or questions are welcome.</p>\";s:8:\"email_to\";s:34:\"Webmaster,seo@bestecommerce-uk.com\";s:17:\"php_mailer_enable\";s:9:\"wordpress\";s:10:\"email_from\";s:0:\"\";s:19:\"email_from_enforced\";s:5:\"false\";s:9:\"email_bcc\";s:0:\"\";s:14:\"email_reply_to\";s:0:\"\";s:13:\"email_subject\";s:29:\"bestecommerce-uk.com Contact:\";s:18:\"email_subject_list\";s:0:\"\";s:11:\"name_format\";s:4:\"name\";s:9:\"name_type\";s:8:\"required\";s:10:\"email_type\";s:8:\"required\";s:12:\"subject_type\";s:8:\"required\";s:12:\"message_type\";s:8:\"required\";s:21:\"preserve_space_enable\";s:5:\"false\";s:10:\"max_fields\";s:1:\"4\";s:12:\"double_email\";s:5:\"false\";s:16:\"name_case_enable\";s:5:\"false\";s:18:\"sender_info_enable\";s:4:\"true\";s:14:\"domain_protect\";s:4:\"true\";s:15:\"email_check_dns\";s:5:\"false\";s:10:\"email_html\";s:5:\"false\";s:15:\"akismet_disable\";s:5:\"false\";s:19:\"akismet_send_anyway\";s:4:\"true\";s:14:\"captcha_enable\";s:4:\"true\";s:18:\"captcha_difficulty\";s:6:\"medium\";s:13:\"captcha_small\";s:5:\"false\";s:16:\"captcha_no_trans\";s:5:\"false\";s:12:\"enable_audio\";s:5:\"false\";s:18:\"enable_audio_flash\";s:5:\"false\";s:12:\"captcha_perm\";s:5:\"false\";s:18:\"captcha_perm_level\";s:4:\"read\";s:15:\"redirect_enable\";s:4:\"true\";s:16:\"redirect_seconds\";s:1:\"3\";s:12:\"redirect_url\";s:27:\"http://bestecommerce-uk.com\";s:14:\"redirect_query\";s:5:\"false\";s:15:\"redirect_ignore\";s:0:\"\";s:15:\"redirect_rename\";s:0:\"\";s:12:\"redirect_add\";s:0:\"\";s:18:\"redirect_email_off\";s:5:\"false\";s:11:\"silent_send\";s:3:\"off\";s:10:\"silent_url\";s:0:\"\";s:13:\"silent_ignore\";s:0:\"\";s:13:\"silent_rename\";s:0:\"\";s:10:\"silent_add\";s:0:\"\";s:16:\"silent_email_off\";s:5:\"false\";s:13:\"export_enable\";s:4:\"true\";s:13:\"export_ignore\";s:0:\"\";s:13:\"export_rename\";s:0:\"\";s:10:\"export_add\";s:0:\"\";s:16:\"export_email_off\";s:5:\"false\";s:13:\"border_enable\";s:5:\"false\";s:19:\"ex_fields_after_msg\";s:5:\"false\";s:11:\"date_format\";s:10:\"mm/dd/yyyy\";s:13:\"cal_start_day\";s:1:\"0\";s:11:\"time_format\";s:2:\"12\";s:12:\"attach_types\";s:28:\"doc,pdf,txt,gif,jpg,jpeg,png\";s:11:\"attach_size\";s:3:\"1mb\";s:19:\"textarea_html_allow\";s:5:\"false\";s:17:\"enable_areyousure\";s:5:\"false\";s:19:\"auto_respond_enable\";s:5:\"false\";s:17:\"auto_respond_html\";s:5:\"false\";s:22:\"auto_respond_from_name\";s:9:\"WordPress\";s:23:\"auto_respond_from_email\";s:24:\"seo@bestecommerce-uk.com\";s:21:\"auto_respond_reply_to\";s:24:\"seo@bestecommerce-uk.com\";s:20:\"auto_respond_message\";s:0:\"\";s:20:\"auto_respond_subject\";s:0:\"\";s:19:\"req_field_indicator\";s:2:\" *\";s:22:\"req_field_label_enable\";s:4:\"true\";s:26:\"req_field_indicator_enable\";s:4:\"true\";s:10:\"form_style\";s:12:\"width:375px;\";s:12:\"border_style\";s:37:\"border:1px solid black; padding:10px;\";s:14:\"required_style\";s:16:\"text-align:left;\";s:11:\"notes_style\";s:16:\"text-align:left;\";s:11:\"title_style\";s:33:\"text-align:left; padding-top:5px;\";s:12:\"select_style\";s:16:\"text-align:left;\";s:11:\"field_style\";s:26:\"text-align:left; margin:0;\";s:15:\"field_div_style\";s:16:\"text-align:left;\";s:11:\"error_style\";s:27:\"text-align:left; color:red;\";s:20:\"captcha_div_style_sm\";s:42:\"width:175px; height:50px; padding-top:2px;\";s:19:\"captcha_div_style_m\";s:42:\"width:250px; height:65px; padding-top:2px;\";s:19:\"captcha_input_style\";s:38:\"text-align:left; margin:0; width:50px;\";s:16:\"submit_div_style\";s:33:\"text-align:left; padding-top:2px;\";s:12:\"button_style\";s:25:\"cursor:pointer; margin:0;\";s:11:\"reset_style\";s:25:\"cursor:pointer; margin:0;\";s:16:\"powered_by_style\";s:55:\"font-size:x-small; font-weight:normal; padding-top:5px;\";s:10:\"field_size\";s:2:\"40\";s:18:\"captcha_field_size\";s:1:\"6\";s:9:\"text_cols\";s:2:\"30\";s:9:\"text_rows\";s:2:\"10\";s:13:\"aria_required\";s:5:\"false\";s:16:\"auto_fill_enable\";s:4:\"true\";s:12:\"title_border\";s:0:\"\";s:10:\"title_dept\";s:0:\"\";s:12:\"title_select\";s:0:\"\";s:10:\"title_name\";s:0:\"\";s:11:\"title_fname\";s:0:\"\";s:11:\"title_lname\";s:0:\"\";s:11:\"title_mname\";s:0:\"\";s:12:\"title_miname\";s:0:\"\";s:11:\"title_email\";s:0:\"\";s:12:\"title_email2\";s:0:\"\";s:17:\"title_email2_help\";s:0:\"\";s:10:\"title_subj\";s:0:\"\";s:10:\"title_mess\";s:0:\"\";s:10:\"title_capt\";s:0:\"\";s:12:\"title_submit\";s:0:\"\";s:11:\"title_reset\";s:0:\"\";s:16:\"title_areyousure\";s:0:\"\";s:17:\"text_message_sent\";s:0:\"\";s:16:\"tooltip_required\";s:0:\"\";s:15:\"tooltip_captcha\";s:0:\"\";s:13:\"tooltip_audio\";s:0:\"\";s:15:\"tooltip_refresh\";s:0:\"\";s:17:\"tooltip_filetypes\";s:0:\"\";s:16:\"tooltip_filesize\";s:0:\"\";s:12:\"enable_reset\";s:5:\"false\";s:18:\"enable_credit_link\";s:5:\"false\";s:20:\"error_contact_select\";s:0:\"\";s:10:\"error_name\";s:0:\"\";s:11:\"error_email\";s:0:\"\";s:12:\"error_email2\";s:0:\"\";s:11:\"error_field\";s:0:\"\";s:13:\"error_subject\";s:0:\"\";s:13:\"error_message\";s:0:\"\";s:11:\"error_input\";s:0:\"\";s:19:\"error_captcha_blank\";s:0:\"\";s:19:\"error_captcha_wrong\";s:0:\"\";s:13:\"error_correct\";s:0:\"\";s:15:\"ex_field1_label\";s:0:\"\";s:14:\"ex_field1_type\";s:4:\"text\";s:17:\"ex_field1_default\";s:1:\"0\";s:22:\"ex_field1_default_text\";s:0:\"\";s:17:\"ex_field1_max_len\";s:0:\"\";s:19:\"ex_field1_label_css\";s:0:\"\";s:19:\"ex_field1_input_css\";s:0:\"\";s:20:\"ex_field1_attributes\";s:0:\"\";s:15:\"ex_field1_regex\";s:0:\"\";s:21:\"ex_field1_regex_error\";s:0:\"\";s:13:\"ex_field1_req\";s:5:\"false\";s:15:\"ex_field1_notes\";s:0:\"\";s:21:\"ex_field1_notes_after\";s:0:\"\";s:15:\"ex_field2_label\";s:0:\"\";s:14:\"ex_field2_type\";s:4:\"text\";s:17:\"ex_field2_default\";s:1:\"0\";s:22:\"ex_field2_default_text\";s:0:\"\";s:17:\"ex_field2_max_len\";s:0:\"\";s:19:\"ex_field2_label_css\";s:0:\"\";s:19:\"ex_field2_input_css\";s:0:\"\";s:20:\"ex_field2_attributes\";s:0:\"\";s:15:\"ex_field2_regex\";s:0:\"\";s:21:\"ex_field2_regex_error\";s:0:\"\";s:13:\"ex_field2_req\";s:5:\"false\";s:15:\"ex_field2_notes\";s:0:\"\";s:21:\"ex_field2_notes_after\";s:0:\"\";s:15:\"ex_field3_label\";s:0:\"\";s:14:\"ex_field3_type\";s:4:\"text\";s:17:\"ex_field3_default\";s:1:\"0\";s:22:\"ex_field3_default_text\";s:0:\"\";s:17:\"ex_field3_max_len\";s:0:\"\";s:19:\"ex_field3_label_css\";s:0:\"\";s:19:\"ex_field3_input_css\";s:0:\"\";s:20:\"ex_field3_attributes\";s:0:\"\";s:15:\"ex_field3_regex\";s:0:\"\";s:21:\"ex_field3_regex_error\";s:0:\"\";s:13:\"ex_field3_req\";s:5:\"false\";s:15:\"ex_field3_notes\";s:0:\"\";s:21:\"ex_field3_notes_after\";s:0:\"\";s:15:\"ex_field4_label\";s:0:\"\";s:14:\"ex_field4_type\";s:4:\"text\";s:17:\"ex_field4_default\";s:1:\"0\";s:22:\"ex_field4_default_text\";s:0:\"\";s:17:\"ex_field4_max_len\";s:0:\"\";s:19:\"ex_field4_label_css\";s:0:\"\";s:19:\"ex_field4_input_css\";s:0:\"\";s:20:\"ex_field4_attributes\";s:0:\"\";s:15:\"ex_field4_regex\";s:0:\"\";s:21:\"ex_field4_regex_error\";s:0:\"\";s:13:\"ex_field4_req\";s:5:\"false\";s:15:\"ex_field4_notes\";s:0:\"\";s:21:\"ex_field4_notes_after\";s:0:\"\";}','yes'),(3504,0,'_transient_timeout_si_contact_form_info','1323945029','no'),(3505,0,'_transient_si_contact_form_info','O:8:\"stdClass\":18:{s:4:\"name\";s:24:\"Fast Secure Contact Form\";s:4:\"slug\";s:15:\"si-contact-form\";s:7:\"version\";s:3:\"3.1\";s:6:\"author\";s:72:\"<a href=\"http://www.642weather.com/weather/scripts.php\">Mike Challis</a>\";s:14:\"author_profile\";s:55:\"http://wordpress.org/extend/plugins/profile/mikechallis\";s:12:\"contributors\";a:1:{s:12:\"Mike Challis\";s:55:\"http://wordpress.org/extend/plugins/profile/mikechallis\";}s:8:\"requires\";s:3:\"2.8\";s:6:\"tested\";s:3:\"3.3\";s:13:\"compatibility\";a:1:{s:3:\"3.1\";a:11:{s:7:\"2.9.5.4\";a:3:{i:0;i:100;i:1;i:3;i:2;i:3;}s:5:\"2.9.6\";a:3:{i:0;i:100;i:1;i:14;i:2;i:14;}s:5:\"2.9.7\";a:3:{i:0;i:100;i:1;i:3;i:2;i:3;}s:7:\"2.9.7.1\";a:3:{i:0;i:100;i:1;i:11;i:2;i:11;}s:5:\"2.9.8\";a:3:{i:0;i:89;i:1;i:9;i:2;i:8;}s:7:\"2.9.8.1\";a:3:{i:0;i:100;i:1;i:3;i:2;i:3;}s:7:\"2.9.8.2\";a:3:{i:0;i:89;i:1;i:9;i:2;i:8;}s:7:\"2.9.8.3\";a:3:{i:0;i:100;i:1;i:15;i:2;i:15;}s:7:\"2.9.8.4\";a:3:{i:0;i:100;i:1;i:23;i:2;i:23;}s:7:\"2.9.8.5\";a:3:{i:0;i:94;i:1;i:31;i:2;i:29;}s:7:\"2.9.8.6\";a:3:{i:0;i:95;i:1;i:21;i:2;i:20;}}}s:6:\"rating\";d:88.2000000000000028421709430404007434844970703125;s:11:\"num_ratings\";i:1006;s:10:\"downloaded\";i:1999616;s:12:\"last_updated\";s:10:\"2011-12-13\";s:5:\"added\";s:10:\"2009-08-27\";s:8:\"homepage\";s:37:\"http://www.FastSecureContactForm.com/\";s:8:\"sections\";a:5:{s:11:\"description\";s:5719:\"<p>This plugin allows a webmaster to easily create and add contact forms to WordPress. The contact form will let the user send emails to a site\'s admin, and also send a meeting request to talk over phone or video. An administration panel is present, where the webmaster can create and preview unlimited forms.</p>\n\n<p>Features a super easy admin panel, multi-form feature, autoresponder, no templates to mess with, and an option to redirect visitors to any URL after the message is sent. Includes CAPTCHA and Akismet support to block all common spammer tactics. Spam is no longer a problem. You can add extra fields of any type: text, textarea, checkbox, checkbox-multiple, radio, select, select-multiple, attachment, date, time, hidden, password, and fieldset.</p>\n\n<ul>\n<li><a href=\"http://www.fastsecurecontactform.com/\">FastSecureContactForm.com</a></li>\n<li><a href=\"http://downloads.wordpress.org/plugin/si-contact-form.zip\">Download WordPress Plugin Version</a></li>\n<li><a href=\"http://www.fastsecurecontactform.com/download-php-script\">Download PHP Script Version</a></li>\n</ul>\n\n<h4>Help Keep This Plugin Free</h4>\n\n<p>If you find this plugin useful to you, please consider <a href=\"http://www.fastsecurecontactform.com/donate\"><strong>making a small donation</strong></a> to help contribute to my time invested and to further development. Thanks for your kind support! - <a href=\"http://profiles.wordpress.org/users/MikeChallis/\"><strong>Mike Challis</strong></a></p>\n\nFeatures:\n\n<ul>\n<li>Super easy customizable Options from Admin settings page.</li>\n<li>Multi-Form feature that allows you to have as many different forms as you need.<a href=\"http://www.fastsecurecontactform.com/multiple-e-mail-recipients\">See FAQ</a></li>\n<li>Optional extra fields of any type: text, textarea, checkbox, checkbox-multiple, radio, select, select-multiple, attachment, date, time, hidden, password, fieldset(box). <a href=\"http://www.fastsecurecontactform.com/how-to-add-extra-fields\">See FAQ</a></li>\n<li>File attachments are supported, see here for details: <a href=\"http://wordpress.org/support/topic/416371\" rel=\"nofollow\">http://wordpress.org/support/topic/416371</a></li>\n<li>Backup/restore tool. You can backup/restore all your forms or single forms and settings.<a href=\"http://www.fastsecurecontactform.com/backup-restore-forms\">See FAQ</a></li>\n<li>Easy to hide subject and message fields for use as a newsletter signup.</li>\n<li>Supports sending mail to multiple departments.<a href=\"http://www.fastsecurecontactform.com/tip-form-preview\">See FAQ</a></li>\n<li>Optional - redirect to any URL after message sent.</li>\n<li>Optional - posted data can be sent as a query string on the redirect URL. <a href=\"http://www.fastsecurecontactform.com/sending-data-by-query-string\">See faq</a></li>\n<li>Optional - autoresponder E-mail message.<a href=\"http://www.fastsecurecontactform.com/tip-add-email-autoresponder\">See FAQ</a></li>\n<li>Valid coding for HTML, XHTML, HTML STRICT, Section 508, and WAI Accessibility.</li>\n<li>Uses simple inline error messages.</li>\n<li>Reloads form data and warns user if user forgets to fill out a field.</li>\n<li>Validates syntax of E-mail address.</li>\n<li>CAPTCHA can be turned off or hidden from logged in users and or admins.</li>\n<li>Multi \"E-mail to\" contact support.</li>\n<li>Auto form fill for logged in users.</li>\n<li>Customizable form field titles.</li>\n<li>Customizable CSS style.</li>\n<li>Sends E-mail with UTF-8 character encoding for US and International character support.</li>\n<li>Pre-fill in form fields from a URL query string. <a href=\"http://www.fastsecurecontactform.com/query-string-parameters\">See FAQ</a></li>\n<li>Save emails to the WordPress database, or export to CSV or Excel. <a href=\"http://www.fastsecurecontactform.com/save-to-database\">See FAQ</a></li>\n<li>I18n language translation support. <a href=\"http://www.fastsecurecontactform.com/how-to-translate\">See FAQ</a></li>\n</ul>\n\nScheduling, Meeting and Payments via vCita:\n\n<ul>\n<li>Offer visitors to Schedule Meetings as part of your Contact Form</li>\n<li>Set your availability and synchronize your contact form with your Google calendar</li>\n<li>Meet online with web-based video meeting room</li>\n<li>Meet over phone conference</li>\n<li>Record your meetings</li>\n<li>Collect payments and bill for your time and services</li>\n<li>Send a payment request once a meeting is completed or secure a fee in advance according to your hourly rate</li>\n</ul>\n\nSecurity:\n\n<ul>\n<li>It has very tight security, stops all automated spammers.</li>\n<li>Akismet spam protection support.</li>\n<li>Spam checks E-mail address input from common spammer tactics...\nprevents spammer forcing to:, cc:, bcc:, newlines, and other E-mail injection attempts to spam the world.</li>\n<li>Makes sure the contact form was posted from your blog domain name only.</li>\n<li>Filters all form inputs from HTML and other nasties.</li>\n<li>E-mail message footer shows blog username(if logged on), Date/Time timestamp, IP address, and user agent (browser version) of user who contacted you.</li>\n</ul>\n\nCaptcha Image Support:\n\n<ul>\n<li>Uses Open-source free PHP CAPTCHA library by <a href=\"http://www.phpcaptcha.org\" rel=\"nofollow\">http://www.phpcaptcha.org</a> (customized version included)</li>\n<li>Abstract background with multi colored, angled, and transparent text</li>\n<li>Arched lines through text</li>\n<li>Refresh button to reload captcha if you cannot read it</li>\n<li>CAPTCHA can be disabled in Options</li>\n</ul>\n\nRequirements/Restrictions:\n\n<ul>\n<li>Works with Wordpress 2.8+, WPMU, and BuddyPress (Wordpress 3.0+ is highly recommended)</li>\n<li>PHP5 </li>\n<li>PHP register_globals and safe_mode should be set to \"Off\".</li>\n</ul>\";s:12:\"installation\";s:1238:\"<ol>\n<li><p>Install automatically through the <code>Plugins</code>, <code>Add New</code> menu in WordPress, or upload the <code>si-contact-form</code> folder to the <code>/wp-content/plugins/</code> directory.</p></li>\n<li><p>Activate the plugin through the <code>Plugins</code> menu in WordPress. Look for the Settings link to configure the Options.</p></li>\n<li><p>Add the shortcode <code>&#x5b;si-contact-form form=\'1\']</code> in a Page, Post, or Text Widget. Here is how: Log into your blog admin dashboard. Click <code>Pages</code>, click <code>Add New</code>, add a title to your page, enter the shortcode <code>&#x5b;si-contact-form form=\'1\']</code> in the page, uncheck <code>Allow Comments</code>, click <code>Publish</code>.</p></li>\n<li><p>Test an email from your form.</p></li>\n<li><p>Updates are automatic. Click on \"Upgrade Automatically\" if prompted from the admin menu. If you ever have to manually upgrade, simply deactivate, uninstall, and repeat the installation steps with the new version.</p></li>\n</ol>\n\n<h4>I just installed this and do not get any email from it, what could be wrong?</h4>\n\n<p><a href=\"http://www.fastsecurecontactform.com/email-does-not-send\">See FAQ page: How to troubleshoot mail delivery</a></p>\";s:11:\"screenshots\";s:1032:\"<ol>\n	<li>\n		<img class=\'screenshot\' src=\'http://s.wordpress.org/extend/plugins/si-contact-form/screenshot-1.gif?r=475787\' alt=\'si-contact-form screenshot 1\' />\n		<p><p>screenshot-1.gif is the contact form.</p></p>\n	</li>\n	<li>\n		<img class=\'screenshot\' src=\'http://s.wordpress.org/extend/plugins/si-contact-form/screenshot-2.gif?r=475787\' alt=\'si-contact-form screenshot 2\' />\n		<p><p>screenshot-2.gif is the contact form showing the inline error messages.</p></p>\n	</li>\n	<li>\n		<img class=\'screenshot\' src=\'http://s.wordpress.org/extend/plugins/si-contact-form/screenshot-3.gif?r=475787\' alt=\'si-contact-form screenshot 3\' />\n		<p><p>screenshot-3.gif is the <code>Contact Form options</code> tab on the <code>Admin Plugins</code> page.</p></p>\n	</li>\n	<li>\n		<img class=\'screenshot\' src=\'http://s.wordpress.org/extend/plugins/si-contact-form/screenshot-4.gif?r=475787\' alt=\'si-contact-form screenshot 4\' />\n		<p><p>screenshot-4.gif adding the shortcode <code>&#x5b;si-contact-form form=\'1\']</code> in a Page.</p></p>\n	</li>\n</ol>\";s:9:\"changelog\";s:41775:\"<ul>\n<li>Updated Italian language (it_IT) - Translated by <a href=\"http://gidibao.net/\" title=\"Gianni Diurno\">Gianni Diurno</a></li>\n</ul>\n\n<h4>3.1</h4>\n\n<ul>\n<li>(06 Dec 2011) - Add \"Set a meeting\" option to your contact form using vCita Meeting Scheduler. Meet users over video or phone, and collect payment for services.</li>\n<li>Improved HTML code on message sent.</li>\n</ul>\n\n<h4>3.0.5</h4>\n\n<ul>\n<li>(18 Nov 2011) - Harden security for CAPTCHA by limiting the number of created cache files. This condition could only be realized with a script. Found by <a href=\"http://bstpierre.org/\">Brian St. Pierre</a>.</li>\n<li>HTML validation fix, added unique id for submit and reset buttons.</li>\n</ul>\n\n<h4>3.0.4</h4>\n\n<ul>\n<li>(09 Oct 2011) - Fix default text could not be 0.</li>\n<li>Fix HTML validation with date field.</li>\n<li>Fix rows and cols extra field attributes.</li>\n<li>Fix javascript console error on date calendar popup.</li>\n</ul>\n\n<h4>3.0.3.2</h4>\n\n<ul>\n<li>(27 Jul 2011) - Fixed medium XSS HTB23036 - as advised by High-Tech Bridge SA Security Research Lab.</li>\n<li>Fix, added missing 00 to 24 hour time select.</li>\n</ul>\n\n<h4>3.0.3.1</h4>\n\n<ul>\n<li>(05 Jul 2011) - Tested / fixed to be compatible with WP 3.2</li>\n<li>Fix for <code>&#38;apos</code> entity showing for single quotes on IE7, IE8</li>\n<li>Fix for CAPTCHA input field out of position on IE7 with labels left CSS setting.</li>\n</ul>\n\n<h4>3.0.3</h4>\n\n<ul>\n<li>(16 Jun 2011) - Tested compatible with WP 3.2 Beta 2</li>\n<li>\"Number of available extra fields\" setting is now for each form # instead of all forms.</li>\n<li>CAPTCHA audio feature removed.</li>\n<li>Misc. admin Fixes.</li>\n<li>Another fix for empty autoresponder field tags were showing.</li>\n<li>Calendar style improvements.</li>\n</ul>\n\n<h4>3.0.2</h4>\n\n<ul>\n<li>(08 Jun 2011) - Fixed error: Undefined variable: securimage_url </li>\n<li>Added id tags to submit and reset buttons.</li>\n<li>Updated Italian language (it_IT) - Translated by <a href=\"http://gidibao.net/\" title=\"Gianni Diurno\">Gianni Diurno</a></li>\n</ul>\n\n<h4>3.0.1</h4>\n\n<ul>\n<li>(02 Jun 2011) - CAPTCHA Audio feature is disabled by Mike Challis until further notice because a proof of concept code CAPTCHA solving exploit was released - Security Advisory - SOS-11-007. CAPTCHA image is not involved.</li>\n<li>Security enhancements for possible low level XSS exploit in admin settings: thanks to <a href=\"http://secu.boiteaweb.fr/\">Julio Potier</a>.</li>\n<li>Fix javascript error when CAPTCHA audio is disabled.</li>\n<li>Fixed missing width/height attributes for CAPTCHA images.</li>\n<li>Fixed backslash problem on Restore Settings tool.</li>\n<li>Fixed empty autoresponder field tags were showing.</li>\n<li>Fixed various style improvements for admin error messages.</li>\n<li>Added a popup alert for when changing the number of forms or extra fields.</li>\n<li>Added setting: CSS style for CAPTCHA input field on the contact form.</li>\n<li>Added Norwegian Bokmal (nb_NO) - Translated by <a href=\"http://punktlig-ikt.no\">Tore Johnny Bratveit</a></li>\n</ul>\n\n<h4>3.0</h4>\n\n<ul>\n<li>(25 Apr 2011) - Added (extra fields) default text can be set for text or textarea.</li>\n<li>Added (extra fields) max length can be set for password, text or textarea.</li>\n<li>Added (extra fields) attributes can be set for password, text or textarea.</li>\n<li>Added (extra fields) validation regex can be set for password, text or textarea.</li>\n<li>Added (extra fields) validation regex fail message can be set for password, text or textarea.</li>\n<li>Added (extra fields) label or input CSS can be set individually for any extra field.</li>\n<li>Added (extra fields) HTML before and after can be set.</li>\n<li>Added (extra fields) \'email\' extra field type with validation.</li>\n<li>Added (extra fields) \'url\' extra field type with validation.</li>\n<li>Added (extra fields) first option of select field type can be in brackets to indicate [Please select].</li>\n<li>Added \'email\' field pulls up proper keyboard on iphone/ipad.</li>\n<li>Added optional [form_label] tag for subject. </li>\n<li>Added time format option for \'time\' extra field (select 12 or 24 hour).</li>\n<li>Improved extra fields admin GUI.</li>\n<li>Added Field labels are bold when HTML email is enabled.</li>\n<li>Fix - trim spaces on extra field multiple options.</li>\n<li>Fix - attached field allowed types separated by spaces.</li>\n<li>Fix - bug in restore tool that could cause data loss.</li>\n<li>Email validate DNS check disabled by default because some servers have big delay.</li>\n</ul>\n\n<h4>2.9.8.6</h4>\n\n<ul>\n<li>(27 Mar 2011) - Fix HTML notes would not appear before a fieldset open.</li>\n<li>Fix horizontal display feature for radio and multiple checkbox after post.</li>\n<li>Fixed date calender on some themes by adding a high z-index to the CSS.</li>\n<li>Added ability to use comma in \"Email To:\" name. If you need to use a comma besides the one needed to separate the name and email, escape it with a back slash, like this: &#044;</li>\n<li>Added ability to specify cc and bcc in \"Email To:\". Example: Webmaster,user1@example.com;[cc]user2@example.com;[bcc]user3@example.com</li>\n<li>Added more WordPress logged in user details to the email message footer.</li>\n<li>Added optional \"Are you sure?\" form submit popup message (message can also be changed).</li>\n<li>Added Arabic (ar) partial translation - Translated by Jasmine Hassan</li>\n</ul>\n\n<h4>2.9.8.5</h4>\n\n<ul>\n<li>(08 Mar 2011) - Improved required date fields</li>\n<li>Added optional form \"reset\" button.</li>\n<li>Fixed escaped comma bug in Restore Tool</li>\n</ul>\n\n<h4>2.9.8.4</h4>\n\n<ul>\n<li>(23 Feb 2011) - Fixed broken \"fields to ignore\" feature. </li>\n<li>File attach type and size labels can be changed.</li>\n</ul>\n\n<h4>2.9.8.3</h4>\n\n<ul>\n<li>(14 Feb 2011) - Improvement: javascript is only loaded on pages when it is conditionally needed.</li>\n<li>Fixed 2 label alignment problems with some themes.</li>\n<li>Fixed possible javascript conflict that can break the redirect feature.</li>\n<li>Fixed extra fields were not accepting zero.</li>\n<li>More name labels can be changed.</li>\n<li>Added new feature: Copy Settings Tool. This tool can copy your contact form settings from one form number to any of your other forms. Use to copy just the style settings, or all the settings from one form.</li>\n<li>Added more shortcode optional settings <a href=\"http://www.fastsecurecontactform.com/shortcode-options\">see FAQ page</a> </li>\n<li>Added hidden field can accept query input. <a href=\"http://www.fastsecurecontactform.com/query-string-parameters\">see FAQ page</a></li>\n<li>Other fixes and enhancements</li>\n</ul>\n\n<h4>2.9.8.2</h4>\n\n<ul>\n<li>(07 Feb 2011) - Fix critical error \"invalid argument supplied foreach () /si-contact-form.php on line 474\". Sorry for the inconvenience.</li>\n<li>Fix \"Enable data export after the message\" setting would not uncheck.</li>\n<li>Changed default setting: If you use Contact Form 7 to DB Extension Plugin, be sure to visit the form edit page and enable this setting: \"Enable data export after the message\", because it is not enabled by default.</li>\n</ul>\n\n<h4>2.9.8.1</h4>\n\n<ul>\n<li>(07 Feb 2011) - Added Silent Send feature: Use to send the posted data to another form or 3rd party API <a href=\"http://www.fastsecurecontactform.com/send-form-data-elsewhere\">See FAQ</a></li>\n<li>Fixed blank from email when email address was set to \"not available\".</li>\n<li>Added features: Now you can add tags to print posted data for the email subject, autoresponder subject, or the autoresponder message.\nTo see instructions, just click \"help\" next to any of these fields on the form edit page. <a href=\"http://www.fastsecurecontactform.com/tip-add-email-autoresponder\">See FAQ</a></li>\n<li>Added feature: Data Export settings to manage what fields are allowed to be exported or ignored for each form. Also email can be disabled when exporting data.</li>\n</ul>\n\n<h4>2.9.8</h4>\n\n<ul>\n<li>(29 Jan 2011) - Added setting: \"Enable to receive email as HTML instead of plain text.\" Enable if you want the email message sent as HTML format. HTML format is desired if you want to avoid a 70 character line wordwrap when you copy and paste the email message. Normally the email is sent in plain text wordwrapped 70 characters per line to comply with most email programs. </li>\n<li>Added new settings in the \"Redirect\" section: You can Enable posted data to be sent as a query string on the redirect URL. This can be used to send the posted data via GET query string to a another form. </li>\n<li>New settings for redirect: \"Query string fields to ignore\", \"Query string fields to rename\", and \"Disable email sending (use only when required while you have enabled query string on the redirect URL)\". <a href=\"http://www.fastsecurecontactform.com/sending-data-by-query-string\">See FAQ</a></li>\n<li>Added version indicator and new version reminder to settings page.</li>\n<li>Fixed a multiple email problem if using the same form in several posts. Anyway, it is recommended to use the form in a page or sidebar, not a post.</li>\n<li>Fixed bug where form number was reset to 4 after trying to increase over 99.</li>\n<li>Fixed so now one CAPTCHA random position always has to be a number so that a 4 letter swear word could never appear.</li>\n<li>Many small fixes and enhancements. </li>\n<li>Added Romanian (ro_RO) - Translated by <a href=\"http://www.jibo.ro\">Anunturi Jibo</a></li>\n</ul>\n\n<h4>2.9.7.1</h4>\n\n<ul>\n<li>(19 Jan 2011) - Added ability to pre-fill in form fields from a URL query string. <a href=\"http://www.fastsecurecontactform.com/query-string-parameters\">see FAQ page</a></li>\n<li>Select Single posted data fix.</li>\n</ul>\n\n<h4>2.9.7</h4>\n\n<ul>\n<li>(13 Jan 2011) - Added a new hook for other plugins to use (just after mail sent). This can be used to export the posted data and attachments to a database. A plugin for this is in the works, stay tuned.</li>\n<li>Added new Select-multiple extra field type.</li>\n<li>Added new feature to set the css style for Label and Field in the same row, or switch back to Label on Top <a href=\"http://www.fastsecurecontactform.com/form-labels-left\">see FAQ</a></li>\n<li>Added new Setting for \"Form Label\". You can enter a label for your form to keep track of what you are using it for.</li>\n<li>Fixes and improvements for better mail delivery and to reduce the emails from going to the spam folder.\nIf you are not getting email, set the setting \"E-mail From\" to an email address on the same domain as your web site. This will improve mail delivery.\n<a href=\"http://www.fastsecurecontactform.com/email-does-not-send\">mail problem faq</a>.</li>\n<li>Added new setting: \"Enable when web host requires \"Mail From\" strictly tied to domain email account\". If your form does not send any email, then set the \"E-mail From\" setting to an address on the same web domain as your web site. If email still does not send, also check this setting. (ie: some users report this is required by yahoo small business web hosting) .</li>\n<li>Added ability to use comma in extra field labels for Checkbox, Radio, Select, or Select-multiple. If you need to use a comma besides the one needed to separate the label, escape it with a back slash, like this: &#044;</li>\n<li>Improved Akismet spam check API code.</li>\n<li>Fixed required option for checkbox multiple, now all field types can be required as needed. </li>\n<li>Fixed all fields with multiple options can have a default option: checkbox, radio, select, or select-multiple.</li>\n<li>Other small Fixes and improvements.    </li>\n<li>Updated Italian (it_IT) - Translated by <a href=\"http://gidibao.net/\" title=\"Gianni Diurno\">Gianni Diurno</a></li>\n</ul>\n\n<h4>2.9.6</h4>\n\n<ul>\n<li>(29 Dec 2010) - Removed advanced options link. Too many people could not find it. All options are now always available on the form edit page.</li>\n<li>Added new setting for \"Autoresponder E-mail \"From\" address:\" </li>\n</ul>\n\n<h4>2.9.5.4</h4>\n\n<ul>\n<li>(17 Dec 2010) - Advanced Options are now open by default for new installs.</li>\n<li>Some changes to admin settings page.</li>\n</ul>\n\n<h4>2.9.5.3</h4>\n\n<ul>\n<li>(14 Dec 2010) - Added Geolocation for the email footer. Install my Visitor Maps plugin and the sender\'s city, state, country will automatically be included in the email footer. </li>\n<li>Rename CAPTCHA font files all lower case to avoid a rare FTP problem.</li>\n</ul>\n\n<h4>2.9.5.2</h4>\n\n<ul>\n<li>(30 Nov 2010) - Fix - last update included an old file causing the new \'hidden\' and \'password\' fields not to show up on form.</li>\n</ul>\n\n<h4>2.9.5.1</h4>\n\n<ul>\n<li>(19 Nov 2010) - Added extra field types for \'hidden\' and \'password\' entry.</li>\n<li>Added option to preserve white space on Message field. Normally the Message field will have all extra white space removed. Enabling this setting will allow all the Message field white space to be preserved.</li>\n<li>Updated Farsi(Persian)(fa_IR) partial translation - Translated by Ramin Firooz</li>\n</ul>\n\n<h4>2.9.5</h4>\n\n<ul>\n<li>(05 Nov 2010) - Added extra field type for \'time\' entry.</li>\n<li>Small code improvements for CAPTCHA function.</li>\n<li>Added Farsi(Persian)(fa) partial translation - Translated by Ramin Firooz</li>\n</ul>\n\n<h4>2.9.4.1</h4>\n\n<ul>\n<li>(27 Oct 2010) - Fix Backup Settings tool download hang on Firefox.</li>\n<li>Added Japanese (ja) - Translated by [Ichiro Kozuka]</li>\n</ul>\n\n<h4>2.9.4</h4>\n\n<ul>\n<li>(11 Oct 2010) - Added new option for what should happen if Akismet determines the message is spam. If you select \"block spam messages\". If Akismet determines the message is spam: An error will display \"Invalid Input - Spam?\" and the form will not send. If you select \"tag as spam and send anyway\". If Akismet determines the message is spam: The message will send and the subject will begin with \"Akismet: Spam\". This way you can have Akismet on and be sure not to miss a message.</li>\n<li>Added more years to the extra date field date selector (1930-2037).</li>\n<li>Fixed order of extra field options on admin settings page.</li>\n<li>Added Arabic (ar) - Translated by [Mouad] translated only the public side of the form</li>\n<li>Updated Russian (ru_RU) - Translated by [Petr Perstnev]</li>\n<li>Updated Italian (it_IT) - Translated by <a href=\"http://gidibao.net/\" title=\"Gianni Diurno\">Gianni Diurno</a></li>\n</ul>\n\n<h4>2.9.3</h4>\n\n<ul>\n<li>(20 Sep 2010) - Added new setting so Akismet can now be set to off for the forms. The new setting is individual to each form.</li>\n<li>Added new email footer message for \"Akismet Spam Check: passed\".</li>\n<li>Added more date format types for the calendar date setting.</li>\n</ul>\n\n<h4>2.9.2</h4>\n\n<ul>\n<li>(05 Sep 2010) - Fixed bug that caused form radio or select default to always be 0.</li>\n<li>Fixed form action URL posted to wrong page when form is in a sidebar widget.</li>\n<li>New transparent audio and refresh images for the CAPTCHA, will look better on dark themes.</li>\n<li>Updated Danish (da_DK) - Translated by <a href=\"http://wordpress.blogos.dk/wpdadkdownloads/\">GeorgWP</a></li>\n<li>Updated Italian (it_IT) - Translated by <a href=\"http://gidibao.net/\" title=\"Gianni Diurno\">Gianni Diurno</a></li>\n<li>Updated French (fr_FR) - Translated by <a href=\"http://Rhialto.com/\">Daniel</a></li>\n</ul>\n\n<h4>2.9.1</h4>\n\n<ul>\n<li>(28 Aug 2010) - Fixed critical HTML errors on admin settings page.</li>\n<li>Improved autoresponder settings (now in new fieldset) on admin settings page.</li>\n<li>Added new setting: \"Enable using HTML in autoresponder E-mail message\".</li>\n<li>Added new setting: \"Advanced Options - Stay Open\" to make the Advance Options always stay open.</li>\n</ul>\n\n<h4>2.9</h4>\n\n<ul>\n<li>(23 Aug 2010) - New style for admin settings page.</li>\n<li>New preview form feature for admin settings page. <a href=\"http://www.fastsecurecontactform.com/tip-form-preview\">more about preview mode</a></li>\n<li>Added automatic SSL support for the CAPTCHA URL.</li>\n<li>Added download count and star rating on admin options page. </li>\n<li>Improved error messages when detecting possible email injection attempts.</li>\n<li><a href=\"http://www.fastsecurecontactform.com/faq-wordpress-version\">New official FAQ at FastSecureContactForm.com</a></li>\n</ul>\n\n<h4>2.8.3</h4>\n\n<ul>\n<li>(15 Aug 2010) - New homepage: <a href=\"http://www.FastSecureContactForm.com/\" rel=\"nofollow\">http://www.FastSecureContactForm.com/</a></li>\n<li>Added attachment directory permissions check.</li>\n<li>Fixed error when increasing number of fields.</li>\n<li>Renamed plugin to \"Fast Secure Contact Form\"</li>\n<li>Added rel=\"nofollow\" tag to CAPTCHA Audio and Refresh links for better SEO.</li>\n<li>Removed CAPTCHA WAV sound files, mp3 ones smaller size.</li>\n<li>Updated Dutch</li>\n<li>Updated Italian</li>\n</ul>\n\n<h4>2.8.2</h4>\n\n<ul>\n<li>(07 Aug 2010) - More improvements to the CAPTCHA test page. </li>\n<li>Added captcha-temp directory permission check to alert the admin if there is a problem. This check is on the admin settings page, the captcha test page, and when posting the captcha.</li>\n</ul>\n\n<h4>2.8.1</h4>\n\n<ul>\n<li>(01 Aug 2010) - PHP Sessions are no longer required for the CAPTCHA. The new method uses temporary files to store the CAPTCHA codes until validation. PHP sessions can still be reactivated by unchecking the setting: \"Use CAPTCHA without PHP session\".</li>\n<li>Added Akismet spam prevention status to the contact form settings page, so you can know if Akismet is protecting or not.</li>\n<li>Added more help notes to the admin settings page.</li>\n<li>Fixed extra forms were not deleted when when decreasing the number of available forms.</li>\n<li>Fixed to redirect to Form 1 when changing the number of available forms.</li>\n<li>Improved the CAPTCHA Test Page.</li>\n</ul>\n\n<h4>2.8</h4>\n\n<ul>\n<li>(25 Jul 2010) - Added much requested Backup/restore tool. You can backup/restore all your forms or single forms and settings using a tool at the bottom of the settings page.</li>\n<li>Added new settings: \'Autoresponder E-mail From name\', and \'Autoresponder E-mail \"Reply To\" address\'.</li>\n<li>Added ability to set subject by URL GET method: ?si_contact_subject=I would like to adopt Freddy.</li>\n<li>Fixed email \"Reply to\" header to be from sender when appropriate so that replying to the email goes back to sender.</li>\n<li>More improvements to email sending and testing functions.</li>\n<li>Improved fieldset feature. Renamed fieldset(group) to fieldset(box-open) and added fieldset(box-close).  </li>\n<li>Minor improvements to display.</li>\n<li>Updated German</li>\n</ul>\n\n<h4>2.7.4</h4>\n\n<ul>\n<li>(19 Jul 2010) - Fixed blank subject when using optional email subject list.</li>\n<li>Fixed AutoResponder is from person filling the form instead of from WordPress admin.</li>\n<li>Fixed email delivery for some servers that require 5th parameter -f to PHP mail function.</li>\n<li>Updated FAQ page for better help when mail is not sending: <a href=\"http://wordpress.org/extend/plugins/si-contact-form/faq/\" rel=\"nofollow\">http://wordpress.org/extend/plugins/si-contact-form/faq/</a></li>\n<li>Improved the E-mail test feature at the bottom of the settings page, use to troubleshooting mail delivery problems.</li>\n<li>Added option to use geekMail library for sending mail, try when having mail delivery problems.</li>\n<li>Added more style settings.</li>\n<li>Other small improvements.</li>\n</ul>\n\n<h4>2.7.3</h4>\n\n<ul>\n<li>(12 Jul 2010) - Critical fix for broken checkbox feature in IE8 caused by version 2.7.2</li>\n<li>Added more date format types for the date extra field.</li>\n</ul>\n\n<h4>2.7.2</h4>\n\n<ul>\n<li>(11 Jul 2010) - Added \"Name field format:\" so you can select how the name field is formatted on the form. Name, First Name, Last Name, etc. </li>\n<li>Added autoresponder E-mail message feature. Enable when you want the form to automatically answer with an autoresponder E-mail message.</li>\n<li>Added Optional notes/help for extra form fields. Use the optional notes/help to print some notes or instructions before a form field. This is for the form display only, not E-mail. HTML is allowed. </li>\n<li>Fixed \"Attachment upload failed\" message when attachment is not set to required.</li>\n<li>Improved email newline handling(some windows servers are really picky).</li>\n<li>Improved CAPTCHA image alignment and other minor fixes.</li>\n<li>Updated Danish (da_DK) - Translated by <a href=\"http://wordpress.blogos.dk/wpdadkdownloads/\">GeorgWP</a></li>\n<li>Updated Italian (it_IT) - Translated by <a href=\"http://gidibao.net/\" title=\"Gianni Diurno\">Gianni Diurno</a></li>\n<li>Updated German (de_DE) - Translated by [Rico]</li>\n</ul>\n\n<h4>2.7.1</h4>\n\n<ul>\n<li>(04 Jul 2010) - Added fieldset(group) feature to extra fields. The fieldset is used to draw a box around related form elements.</li>\n<li>Added more language strings to date field.</li>\n<li>Added setting: \"Date field - Calendar Start Day of the Week:\"</li>\n<li>Added new setting: \"Move extra fields to after the Message field.\"</li>\n<li>Fixed rare problem on some servers, CAPTCHA image had missing letters.</li>\n</ul>\n\n<h4>2.7</h4>\n\n<ul>\n<li>(27 Jun 2010) - Added file attachment feature, see here for details: <a href=\"http://wordpress.org/support/topic/416371\" rel=\"nofollow\">http://wordpress.org/support/topic/416371</a></li>\n<li>Added setting: \"Enable users to send HTML code in the textarea extra field types.\"(off by default).</li>\n<li>Added setting: \"Enable sender information in E-mail footer.\"(on by default).</li>\n<li>Added HTML anchor tags to bring focus to the form when used on a page with lots of content before the form. </li>\n</ul>\n\n<h4>2.6.5</h4>\n\n<ul>\n<li>(23 Jun 2010) - CSS fix form field margins were too big on Twenty Ten Theme in WP 3.0</li>\n<li>Single checkbox can have a comma in the label(as long is there is no semicolon because then it becomes a multi-checkbox).</li>\n</ul>\n\n<h4>2.6.4</h4>\n\n<ul>\n<li>(11 Jun 2010) - Added ability to set both a name and email on the \"E-mail From (optional):\" field .You can enter just an email: <a href=\"mailto:user1@example.com\">user1@example.com</a>\nOr enter name and email: webmaster,user1@example.com </li>\n<li>Fixed missing shortcode example on admin page.</li>\n<li>Fixed so subject prefix can be blank.</li>\n<li>Added more field indicator options in Advanced Options - Fields</li>\n<li>Added Finnish (fi) - Translated by <a href=\"http://www.guimikko.com/\">Mikko Vahatalo</a> </li>\n<li>Updated Italian (it_IT) - Translated by <a href=\"http://gidibao.net/\" title=\"Gianni Diurno\">Gianni Diurno</a></li>\n</ul>\n\n<h4>2.6.3</h4>\n\n<ul>\n<li>(30 May 2010) - Added setting to switch from wordpress mail function to PHP mail function. This setting can resolve some rare mail delivery problems.</li>\n<li>Fixed so checkboxes can have default selected.</li>\n<li>Fixed HTML5 compatible(with CAPTCHA flash audio off).</li>\n<li>Fixed required indicator now has proper class <code>&#60;span class=\"required\"&#62;*&#60;/span&#62;</code>. </li>\n<li>Fixed syntax bug on extra \'date\' fields.</li>\n<li>Fixed for Simple Facebook Connect compatibility (fixes broken CAPTCHA caused by SFC Like and Share plugins).</li>\n</ul>\n\n<h4>2.6.2</h4>\n\n<ul>\n<li>(21 May 2010) - Fixed major bug: All text and textarea extra fields were missing from email. Sorry for the inconvenience. There are so many who use it,  I updated it right away.</li>\n</ul>\n\n<h4>2.6.1</h4>\n\n<ul>\n<li>(19 May 2010) - Fixed bug: all checkboxes appeared selected in the email. </li>\n<li>Fixed to allow HTML in extra field labels.</li>\n</ul>\n\n<h4>2.6</h4>\n\n<ul>\n<li>(19 May 2010) - Fix for XHTML Strict compliance.</li>\n<li>Improved CAPTCHA CSS code (better alignment captcha, refresh, and audio images).</li>\n<li>Added advanced options for date format on extra \'date\' fields (mm/dd/yyyy, dd/mm/yyyy).</li>\n<li>Added advanced options to set checkboxes with children (Pizza Toppings:,olives;mushrooms;cheese;ham;tomatoes).</li>\n<li>Added advanced options to set a default selected item for select and radio fields.</li>\n<li>Added advanced options to make name, email, subject, or message fields (not_available, not_required, or required).\nthis feature can be used to make an anonymous comment form. Also can be used to disable name and email to make them reordered when using extra fields.</li>\n<li>Updated Spanish (es_ES) - Translated by Sergio Torres.</li>\n</ul>\n\n<h4>2.5.6</h4>\n\n<ul>\n<li>(15 May 2010) - Made WP3 Compatible.</li>\n</ul>\n\n<h4>2.5.5</h4>\n\n<ul>\n<li>(07 May 2010) - Fixed to be compatible with *www.com domain name.</li>\n<li>Added extra field type for \"date\", this new field can be used for a hotel registration form and uses a popup \"Epoch DHTML Calendar\" 1.06 by Nick Baicoianu from meanfreepath.com</li>\n</ul>\n\n<h4>2.5.4</h4>\n\n<ul>\n<li>(01 May 2010) - Fixed small issue with \"enable hidden message\" option.</li>\n<li>Fixed small issue with \"email from\" option.</li>\n<li>Improved CAPTCHA testpage.</li>\n</ul>\n\n<h4>2.5.3</h4>\n\n<ul>\n<li>(23 Apr 2010) - Added Dutch (nl_NL) - Translated by [Mark Visser]</li>\n<li>Added Swedish (sv_SE) - Translated by <a href=\"http://walktheline.boplatsen.se/\">Daniel Persson</a></li>\n</ul>\n\n<h4>2.5.2</h4>\n\n<ul>\n<li>(16 Apr 2010) - Added Hungarian (hu_HU) - Translated by <a href=\"http://dmgmedia.hu\">Jozsef Burgyan</a></li>\n<li>Updated Polish (pl_PL) - Translated by [Pawel Mezyk]</li>\n</ul>\n\n<h4>2.5.1</h4>\n\n<ul>\n<li>(09 Apr 2010) - Fixed bug in reset styles feature.</li>\n<li>Updated Italian (it_IT) - Translated by <a href=\"http://gidibao.net/\" title=\"Gianni Diurno\">Gianni Diurno</a></li>\n</ul>\n\n<h4>2.5.0</h4>\n\n<ul>\n<li>(05 Apr 2010) - Added setting to add optional drop down list for email subject.</li>\n<li>Added setting to make the CAPTCHA image smaller.</li>\n<li>Added settings to increase number of forms and have more extra fields (editing code is no longer needed).</li>\n<li>Fixed so multiple forms can be on the same page. </li>\n<li>Added editable text label setting for (* denotes required field).</li>\n<li>Added more style settings in Advanced Options. You can use inline css, or add a class property to be used by your own stylsheet.\nAcceptable Examples:\ntext-align:left; color:#000000; background-color:#CCCCCC;\nstyle=\"text-align:left; color:#000000; background-color:#CCCCCC;\"\nclass=\"input\"</li>\n<li>Split code into 4 smaller files for better performance.</li>\n<li>Other bug fixes.</li>\n</ul>\n\n<h4>2.0.2</h4>\n\n<ul>\n<li>(16 Mar 2010) - Added radio and select configuration error checking. Fix display of radio input fields to be on separate lines.</li>\n<li>Fixed multiple BCC feature, it was only accepting one BCC.</li>\n<li>Updated German (de_DE) and Bulgarian (bg_BG)</li>\n</ul>\n\n<h4>2.0.1</h4>\n\n<ul>\n<li>(06 Feb 2010) - Fix Invalid Input error when the word \"donkey\" is in the input string.</li>\n<li>Added Polish (pl_PL) - Translated by [Pawel Mezyk]</li>\n<li>Fixed Greek language file name.</li>\n</ul>\n\n<h4>2.0</h4>\n\n<ul>\n<li>(26 Jan 2010) - Added required field indicators (can be disabled in settings if you do not like them).</li>\n<li>Added setting to adjust redirect delay seconds(range of 1-5 recommended).</li>\n<li>Added setting to hide message entry, now you can hide subject and message fields for use as a newsletter signup.</li>\n<li>Added selectable extra field types: text, textarea, checkbox, radio, select. Note: When using select or radio field types, first enter the label and a comma. Next include the options separating with a semicolon like this example: Color:,Red;Green;Blue </li>\n</ul>\n\n<h4>1.9.6</h4>\n\n<ul>\n<li>(31 Dec 2009) - New setting for a few people who had problems with the text transparency \"Disable CAPTCHA transparent text (only if captcha text is missing on the image, try this)\".</li>\n<li>Added Hebrew, Israel (he_IL) - Translated by <a href=\"http://web.freeall.org\">Asaf Chertkoff FreeAllWeb GUILD</a> </li>\n</ul>\n\n<h4>1.9.5</h4>\n\n<ul>\n<li>(04 Dec 2009) - Fix slashes issue on some servers.</li>\n<li>More improvements for CAPTCHA images and fonts.</li>\n</ul>\n\n<h4>1.9.4</h4>\n\n<ul>\n<li>(30 Nov 2009) - Fix blank CAPTCHA text issue some users were having.</li>\n<li>Added CAPTCHA difficulty level setting on the settings page (Low, Medium, Or High).</li>\n<li>Added Portuguese (pt_PT) - Translated by <a href=\"http://pws.op351.net/\">AJBFerreira Blog</a></li>\n</ul>\n\n<h4>1.9.3</h4>\n\n<ul>\n<li>(23 Nov 2009) - Fix completely broke CAPTCHA, sorry about that</li>\n</ul>\n\n<h4>1.9.2</h4>\n\n<ul>\n<li>(23 Nov 2009) - Added 5 random CAPTCHA fonts.</li>\n<li>Added feature to increase the number of extra form fields available (see faq if you need it).</li>\n<li>Fixed fail over to GD Fonts on the CAPTCHA when TTF Fonts are not enabled in PHP (it was broken).</li>\n</ul>\n\n<h4>1.9.1</h4>\n\n<ul>\n<li>(21 Nov 2009) - Fixed Flash audio was not working.</li>\n<li>Added Spanish (es_ES) - Translated by <a href=\"http://www.activosenred.com/\">Valentin Yonte Rodriguez</a></li>\n</ul>\n\n<h4>1.9</h4>\n\n<ul>\n<li>(20 Nov 2009) - Updated to SecureImage CAPTCHA library version 2.0</li>\n<li>New CAPTCHA features include: increased CAPTCHA difficulty using mathematical distortion, streaming MP3 audio of CAPTCHA code using Flash, random audio distortion, better distortion lines, random backgrounds and more.</li>\n<li>Other minor fixes.</li>\n</ul>\n\n<h4>1.8.4</h4>\n\n<ul>\n<li>(10 Nov 2009) - Added advanced option to edit the CAPTCHA input field size.</li>\n<li>Other minor fixes.</li>\n</ul>\n\n<h4>1.8.3</h4>\n\n<ul>\n<li>(09 Nov 2009) - Fix Submit button spacing.</li>\n</ul>\n\n<h4>1.8.2</h4>\n\n<ul>\n<li>(03 Nov 2009) - Added feature to increase the number of forms available (see faq if you need it).</li>\n<li>Fix for settings not being deleted when plugin is deleted from admin page.</li>\n<li>Updated Italian (it_IT) - Translated by <a href=\"http://gidibao.net/\" title=\"Gianni Diurno\">Gianni Diurno</a></li>\n<li>Added Albanian (sq_AL) - Translated by <a href=\"http://www.romeolab.com\">Romeo Shuka</a></li>\n</ul>\n\n<h4>1.8.1</h4>\n\n<ul>\n<li>(02 Nov 2009) - Fixed error \"Could not read CAPTCHA cookie\" on some installs using version 1.8</li>\n</ul>\n\n<h4>1.8</h4>\n\n<ul>\n<li>(02 Nov 2009) - Added Multi-Form feature that allows you to have up to four different forms on your site.</li>\n<li>Added Bulgarian (bg_BG) - Translated by <a href=\"http://chereshka.net/\">Dimitar Atanasov</a></li>\n</ul>\n\n<h4>1.7.7</h4>\n\n<ul>\n<li>(30 Oct 2009) - Fixed issue on some sites with blank css fields that caused image misalignment.</li>\n<li>Added advanced option to edit the CSS style for border on the contact form.</li>\n</ul>\n\n<h4>1.7.6</h4>\n\n<ul>\n<li>(27 Oct 2009) - Added advanced option to edit the CSS style for contact drop down select on the contact form.</li>\n<li>HTML validation fix.</li>\n</ul>\n\n<h4>1.7.5</h4>\n\n<ul>\n<li>(21 Oct 2009) - Added Chinese (zh_CN) - Translated by <a href=\"http://www.awuit.cn/\">Awu</a> </li>\n<li>Added Greek (el) - Translated by <a href=\"http://www.jbaron.gr/\">Ioannis</a></li>\n</ul>\n\n<h4>1.7.4</h4>\n\n<ul>\n<li>(03 Oct 2009) - Fixed advanced setting: CSS style for form input fields. Changing background color did not work.</li>\n<li>Added setting to Enable hidden E-mail subject (removes subject field from contact form).  </li>\n</ul>\n\n<h4>1.7.3</h4>\n\n<ul>\n<li>(01 Oct 2009) - Updated links to my other plugins.</li>\n<li>Danish (da_DK) - Updated by <a href=\"http://wordpress.blogos.dk\">Georg / Team Blogos</a></li>\n</ul>\n\n<h4>1.7.2</h4>\n\n<ul>\n<li>(30 Sep 2009) - Fixed settings were deleted at deactivation. Settings are now only deleted at uninstall.</li>\n</ul>\n\n<h4>1.7.1</h4>\n\n<ul>\n<li>(29 Sep 2009) - Fix credit link position. </li>\n<li>Some people wanted to change the error messages for the contact form. Advanced settings fields can be filled in to override the standard included error messages.</li>\n</ul>\n\n<h4>1.7</h4>\n\n<ul>\n<li>(28 Sep 2009) - Added 8 optional extra fields. Some people requested extra contact form fields that could be used for phone number, company name, etc. To enable an extra field from the advanced options, just enter a label. Then check if you want the field to be required or not.</li>\n</ul>\n\n<h4>1.6.8</h4>\n\n<ul>\n<li>(22 Sep 2009) - Fix, some sites reported a image path problem. (I think it is correct now). </li>\n</ul>\n\n<h4>1.6.7</h4>\n\n<ul>\n<li>(22 Sep 2009) - Fix, some sites reported a path problem with \"Blog address\" is different domain than \"WordPress address\".</li>\n<li>Added setting to enable upper case alphabet correction. </li>\n<li>Added more fields in \"advanced options\".</li>\n<li>Minor code cleanup.</li>\n</ul>\n\n<h4>1.6.6</h4>\n\n<ul>\n<li>(21 Sep 2009) - Fix \"Invalid Input\" error on installations where \"Blog address\" is different domain than \"WordPress address\".</li>\n<li>More sanity checks on Form DIV Width setting.</li>\n<li>Added ability to use dashes or underscores in shortcode: <code>&#x5b;si-contact-form]</code> or <code>&#x5b;si_contact_form]</code>.</li>\n</ul>\n\n<h4>1.6.5</h4>\n\n<ul>\n<li>(18 Sep 2009) - Added proper nonce protection to options forms. </li>\n<li>Added option to reset the styles to defaults (incase you tried to adjust them and did not like the results).</li>\n<li>Fixed typo in file name for Portuguese - Brazil language (pt_BR).</li>\n<li>Fixed several language files [BR, FR, NO, DE...] had word \"Submit\" spelled as \"submit\".</li>\n</ul>\n\n<h4>1.6.4</h4>\n\n<ul>\n<li>(14 Sep 2009) - Added E-mail test feature in options, if you are not receiving mail, try it. It will display troubleshooting information.</li>\n<li>Added error check for wp_mail send, this is helful to troubleshoot mail delivery. </li>\n<li>Added a warning message on Options page for when the web host has mail() function disabled.</li>\n</ul>\n\n<h4>1.6.3</h4>\n\n<ul>\n<li>(13 Sep 2009) - Added new advanced options for CSS style of captcha image, audio image, reload image, and submit button.</li>\n<li>Fixed coding for XHTML Strict validation.</li>\n<li>Added Ukrainian language (uk_UA) - Translated by <a href=\"http://wordpress.ua/\">Wordpress.Ua</a></li>\n</ul>\n\n<h4>1.6.2</h4>\n\n<ul>\n<li>(11 Sep 2009) - Added new feature in options: \"Enable checking DNS records for the domain name when checking for a\nvalid E-mail address.\" It looks for any of the following: A record, a CNAME record, or MX record.(enabled by default).</li>\n<li>Updated FAQ</li>\n</ul>\n\n<h4>1.6.1</h4>\n\n<ul>\n<li>(11 Sep 2009) - Fixes error if you are upgrading from prior version: Fatal error: Call to a member function <code>si_contact_migrate()</code> on a non-object in si-contact-form.php on line 1461</li>\n<li>If you get this error and cannot access your WP site: the manual fix is to delete the <code>si-contact-form.php</code> file from the <code>plugins/si-contact-form/</code> directory, your site will start working again. Then you can install this new version.<br />\nSee this <a href=\"http://wordpress.org/support/topic/309925\">forum post</a></li>\n</ul>\n\n<h4>1.6</h4>\n\n<ul>\n<li>(10 Sep 2009) - Auto form fill is automatically skipped for any user with administrator role.</li>\n<li>New option: Auto form fill can be enabled/disabled in advanced options(enabled by default).</li>\n<li>Plugin options are now stored in a single database row instead of many. (it will auto migrate/cleanup old database rows).</li>\n<li>Language files are now stored in the <code>si-contact-form/languages</code> folder.</li>\n<li>Options are deleted when this plugin is deleted.</li>\n<li>Added help links on options page.</li>\n<li>Added Portuguese Brazil (pt_BR) - Translated by [Rui Alao]</li>\n<li>Updated Russian (ru_RU) - Translated by <a href=\"http://www.sprestij.ru/\">Bezraznizi</a></li>\n<li>Updated Turkish (tr_TR) - Translated by <a href=\"http://www.tapcalap.com/\">Tolga</a></li>\n</ul>\n\n<h4>1.5</h4>\n\n<ul>\n<li>(9 Sep 2009) - New feature: I added an \"advanced options\" section to the options page. Some people wanted to change the text labels for the contact form.\nThese advanced options fields can be filled in to override the standard included field titles.</li>\n<li>Other minor code changes.</li>\n</ul>\n\n<h4>1.4.4</h4>\n\n<ul>\n<li>(08 Sep 2009) - Fixed possible error: \"mail could not be sent because host may have disabled email function()\"</li>\n</ul>\n\n<h4>1.4.3</h4>\n\n<ul>\n<li>(08 Sep 2009) - Fixed redirect/logout problem on admin menu reported by a user.</li>\n<li>Removed blog name from top of email message body.</li>\n</ul>\n\n<h4>1.4.2</h4>\n\n<ul>\n<li>(07 Sep 2009) - Added configurable email subject prefix in options.</li>\n<li>Added configurable border width in options.</li>\n<li>Auto form fill is now disabled for admin, but still works for other logged in users.</li>\n<li>Other minor fixes.</li>\n</ul>\n\n<h4>1.4.1</h4>\n\n<ul>\n<li>(06 Sep 2009) - Added feature: Auto form fill email address and name (username) on the contact form for logged in users.</li>\n<li>Added feature: prints \"From a WordPress user: <code>&#60;username&#62;</code>\" on email footer for logged in users.</li>\n<li>Added feature: Date/Time timestamp on email footer (uses Date/Time format from general options setting).</li>\n<li>Added Russian Language (ru_RU) - Translated by <a href=\"http://www.sprestij.ru/\">Bezraznizi</a></li>\n</ul>\n\n<h4>1.4</h4>\n\n<ul>\n<li>(06 Sep 2009) Now uses wp_mail function so that users who use the SMTP mail plugins will be supported.</li>\n<li>Now sends email encoded in the character encoding you write your blog in, (UTF-8 is recommended) see <code>Settings</code>, <code>Reading</code> admin options page.</li>\n<li>New feature: Now you can have multiple E-mails per contact, this is called a CC(Carbon Copy). If you need to add more than one contact, see the example: click \"help\" on the <code>Contact Form Options Page</code>. </li>\n<li>Fixed error \"Bad parameters to mail() function\" reported by a couple users.</li>\n<li>Fixed error \"Call to undefined function <code>mb_detect_encoding()</code>\" reported by one user.</li>\n<li>Many hours were put into this free plugin. Please donate, even small amounts like $2.99 are welcome.</li>\n</ul>\n\n<h4>1.3</h4>\n\n<ul>\n<li>(04 Sep 2009) Added Feature: This contact form sends E-mail with UTF-8 character encoding for US and International character support.(fee FAQ)</li>\n<li>Added Danish Language (da_DK) - Translated by <a href=\"http://www.ohyeah-webdesign.dk\">Thomas J. Langer</a></li>\n<li>fixed an issue with the \"Welcome introduction\" field translation not translating.</li>\n</ul>\n\n<h4>1.2.5</h4>\n\n<ul>\n<li>(02 Sep 2009) Added Norwegian language (nb_NO) - Translated by <a href=\"http://roger.inro.net/\">Roger Sylte</a></li>\n</ul>\n\n<h4>1.2.4</h4>\n\n<ul>\n<li>(02 Sep 2009) Added German Language (de_DE) - Translated by <a href=\"http://sebastian.kreideweiss.info/\">Sebastian Kreideweiss</a></li>\n</ul>\n\n<h4>1.2.3</h4>\n\n<ul>\n<li>(01 Sep 2009) Fixed email validation on some windows servers</li>\n<li>Added Traditional Chinese, Taiwan Language (zh_TW) - Translated by [Cjh]</li>\n<li>Added French language (fr_FR) - Translated by <a href=\"http://pierre.sudarovich.free.fr/\">Pierre Sudarovich</a></li>\n</ul>\n\n<h4>1.2.2</h4>\n\n<ul>\n<li>(31 Aug 2009) Added Italian language (it_IT) - Translated by <a href=\"http://gidibao.net/\" title=\"Gianni Diurno\">Gianni Diurno</a></li>\n</ul>\n\n<h4>1.2.1</h4>\n\n<ul>\n<li>(31 Aug 2009) Added more diagnostic test scripts: a Cookie Test, Captcha test, and a PHP Requirements Test.\nClick on the \"Test if your PHP installation will support the CAPTCHA\" link on the Options page.\nor open this URL in your web browser to run the test:</li>\n</ul>\n\n<pre><code>/wp-content/plugins/si-contact-form/captcha-secureimage/test/index.php</code></pre>\n\n<h4>1.2</h4>\n\n<ul>\n<li>(31 Aug 2009) Translations were not working</li>\n</ul>\n\n<h4>1.1.7</h4>\n\n<ul>\n<li>(31 Aug 2009) Cookie error improvements.</li>\n</ul>\n\n<h4>1.1.6</h4>\n\n<ul>\n<li>(30 Aug 2009) Added a Cookie Test to help diagnose if a web browser has cookies disabled.\nClick on the \"Test if your PHP installation will support the CAPTCHA\" link on the Options page.\nor open this URL in your web browser to run the test:</li>\n</ul>\n\n<pre><code>/wp-content/plugins/si-contact-form/captcha-secureimage/test/index.php</code></pre>\n\n<h4>1.1.5</h4>\n\n<ul>\n<li>(30 Aug 2009) Improved Akismet function (checks for <code>wordpress_api_key</code>)</li>\n<li>Hide CAPTCHA for registered users is now disabled by default(configurable in Options)</li>\n</ul>\n\n<h4>1.1.4</h4>\n\n<ul>\n<li>(29 Aug 2009) Improved <code>ctf_validate_email</code> function and fixed a bug that invalidated email address with upper case</li>\n</ul>\n\n<h4>1.1.3</h4>\n\n<ul>\n<li>(29 Aug 2009) Added this script to be used to test if your PHP installation will support the CAPTCHA:\nOpen this URL in your web browser to run the test:</li>\n</ul>\n\n<pre><code>/wp-content/plugins/si-contact-form/captcha-secureimage/secureimage_test.php</code></pre>\n\n<h4>1.1.2</h4>\n\n<ul>\n<li>(28 Aug 2009) Updated Turkish language (tr_TR) - Translated by <a href=\"http://www.tapcalap.com/\">Tolga</a></li>\n</ul>\n\n<h4>1.1.1</h4>\n\n<ul>\n<li>(28 Aug 2009) Added Turkish language (tr_TR) - Translated by <a href=\"http://www.tapcalap.com/\">Tolga</a></li>\n<li>CAPTCHA fix - Added Automatic fail over from TTF Fonts to GD Fonts if the PHP installation is configured without \"--with-ttf\".\nSome users were reporting there was no error indicating this TTF Fonts not supported condition and the captcha was not working.</li>\n</ul>\n\n<h4>1.1</h4>\n\n<ul>\n<li>(28 Aug 2009) Added multi \"email to\" contact feature. Add as many contacts as you need in Options. The drop down list on the contact form will be made automatically.</li>\n</ul>\n\n<h4>1.0.3</h4>\n\n<ul>\n<li>(28 Aug 2009) fix options permission bug introduced by last update, sorry</li>\n</ul>\n\n<h4>1.0.2</h4>\n\n<ul>\n<li>(27 Aug 2009) Added Akismet spam protection. Checks the form input with Akismet, but only if Akismet plugin is also installed.</li>\n<li>added settings link to the plugin action links.</li>\n</ul>\n\n<h4>1.0.1</h4>\n\n<ul>\n<li>(26 Aug 2009) fixed deprecated ereg_replace and eregi functions for PHP 5.3+ compatibility when error warnings are on</li>\n</ul>\n\n<h4>1.0</h4>\n\n<ul>\n<li>(26 Aug 2009) Initial Release</li>\n</ul>\";s:3:\"faq\";s:6143:\"<p><a href=\"http://www.fastsecurecontactform.com/faq-wordpress-version\">See the official FAQ at FastSecureContactForm.com</a></p>\n\n<h4>I just installed this and do not get any email from it, what could be wrong?</h4>\n\n<p><a href=\"http://www.fastsecurecontactform.com/email-does-not-send\">See FAQ page: How to troubleshoot email delivery</a></p>\n\n<h4>Is this plugin available in other languages?</h4>\n\n<p>Yes. To use a translated version, you need to obtain or make the language file for it.\nAt this point it would be useful to read <a href=\"http://codex.wordpress.org/Installing_WordPress_in_Your_Language\" title=\"Installing WordPress in Your Language\">Installing WordPress in Your Language</a> from the Codex. You will need an .mo file for this plugin that corresponds with the \"WPLANG\" setting in your wp-config.php file. Translations are listed below -- if a translation for your language is available, all you need to do is place it in the <code>/wp-content/plugins/si-contact-form/languages</code> directory of your WordPress installation. If one is not available, and you also speak good English, please consider doing a translation yourself (see the next question).</p>\n\n<p>The following translations are included in the download zip file:</p>\n\n<ul>\n<li>Albanian (sq_AL) - Translated by <a href=\"http://www.romeolab.com\">Romeo Shuka</a></li>\n<li>Arabic (ar) partial translation - Translated by Jasmine Hassan</li>\n<li>Bulgarian (bg_BG) - Translated by <a href=\"http://chereshka.net\">Dimitar Atanasov</a></li>\n<li>Chinese (zh_CN) - Translated by <a href=\"http://www.awuit.cn/\">Awu</a> </li>\n<li>Danish (da_DK) - Translated by <a href=\"http://wordpress.blogos.dk/wpdadkdownloads/\">GeorgWP</a></li>\n<li>Farsi(Persian)(fa_IR) partial translation - Translated by Ramin Firooz</li>\n<li>Finnish (fi) - Translated by <a href=\"http://www.guimikko.com/\">Mikko Vahatalo</a> </li>\n<li>French (fr_FR) - Translated by <a href=\"http://pierre.sudarovich.free.fr/\">Pierre Sudarovich</a></li>\n<li>German (de_DE) - Translated by <a href=\"http://sebastian.kreideweiss.info/\">Sebastian Kreideweiss</a></li>\n<li>Greek (el) - Translated by <a href=\"http://www.jbaron.gr/\">Ioannis</a></li>\n<li>Hebrew, Israel (he_IL) - Translated by <a href=\"http://web.freeall.org\">Asaf Chertkoff FreeAllWeb GUILD</a> </li>\n<li>Hungarian (hu_HU) - Translated by <a href=\"http://dmgmedia.hu\">Jozsef Burgyan</a></li>\n<li>Italian (it_IT) - Translated by <a href=\"http://gidibao.net/\" title=\"Gianni Diurno\">Gianni Diurno</a></li>\n<li>Japanese (ja) - Translated by [Ichiro Kozuka]</li>\n<li>Norwegian Bokmal (nb_NO) - Translated by <a href=\"http://punktlig-ikt.no\">Tore Johnny Bratveit</a></li>\n<li>Polish (pl_PL) - Translated by [Pawel Mezyk]</li>\n<li>Portuguese (pt_PT) - Translated by <a href=\"http://pws.op351.net/\">AJBFerreira Blog</a></li>\n<li>Portuguese Brazil (pt_BR) - Translated by [Rui Alao]</li>\n<li>Romanian (ro_RO) - Translated by <a href=\"http://www.jibo.ro\">Anunturi Jibo</a></li>\n<li>Russian (ru_RU) - Translated by <a href=\"http://www.sprestij.ru/\">Bezraznizi</a></li>\n<li>Spanish (es_ES) - Translated by <a href=\"http://www.activosenred.com/\">Valentin Yonte Rodriguez</a></li>\n<li>Swedish (sv_SE) - Translated by <a href=\"http://walktheline.boplatsen.se/\">Daniel Persson</a></li>\n<li>Traditional Chinese, Taiwan (zh_TW) - Translated by [Cjh]</li>\n<li>Turkish (tr_TR) - Translated by <a href=\"http://www.tapcalap.com/\">Tolga</a></li>\n<li>Ukrainian (uk_UA) - Translated by <a href=\"http://wordpress.ua/\">Wordpress.Ua</a></li>\n<li>More are needed... Please help translate.</li>\n</ul>\n\n<h4>Can I provide a translation?</h4>\n\n<p>Of course! \nHow to translate Fast Secure Contact Form for WordPress\n<a href=\"http://www.fastsecurecontactform.com/how-to-translate\" rel=\"nofollow\">http://www.fastsecurecontactform.com/how-to-translate</a></p>\n\n<h4>Is it possible to update the translation files for newest version?</h4>\n\n<p>How to update a translation of Fast Secure Contact Form for WordPress\n<a href=\"http://www.fastsecurecontactform.com/how-to-update-translation\" rel=\"nofollow\">http://www.fastsecurecontactform.com/how-to-update-translation</a></p>\n\n<h4>This contact form sends E-mail with UTF-8 character encoding for US and International character support.</h4>\n\n<p>English-language users will experience little to no impact. Any non-English questions or messages submitted will have unicode character encoding so that when you receive the e-mail, the language will still be viewable.</p>\n\n<p>If you receive an email with international characters and the characters look garbled with symbols and strange characters, your e-mail program may need to be set as follows:</p>\n\n<p>How to set incoming messages character encoding to Unicode(UTF-8) in various mail clients:</p>\n\n<p>Evolution:\nView &#62; Character Encoding &#62; Unicode</p>\n\n<p>Outlook Express 6, Windows Mail:\nPlease check \"Tools-&#62;Options-&#62;Read-&#62;International Settings\". Un-check \"Use default encoding format for all incoming messages\" \nNow select \"View-&#62;Encoding\", select \"Unicode(UTF-8)\"</p>\n\n<p>Mozilla Thunderbird:\nClick on Inbox.\nSelect \"View-&#62;Character Encoding\", select \"Unicode(UTF-8)\"</p>\n\n<p>Gmail:\nNo setting necessary, it just works.</p>\n\n<p>For more help... <a href=\"http://www.fastsecurecontactform.com/faq-wordpress-version\">See the official FAQ at FastSecureContactForm.com</a></p>\n\n<h4>What is the \"Set a meeting\" option I have in my form?</h4>\n\n<p>You can extend your contact form to let your users to Schedule Meetings based on your availability, meet online with web-based video, talk over phone conference, and collect payments for your time and services.</p>\n\n<p>You can enable this option in \"Accept Meeting Requests\" section at contact form settings page.\nYou can then configure your meeting preferences, set your availability and more by activating your free vCita account (again at the contact form settings).</p>\n\n<p>You can learn more about vCita at <a href=\"http://www.vcita.com?invite=FSContact\">http://www.vcita.com</a>\nIf you have any question about the Schedule Meetings feature please contact <a href=\"mailto:support@vcita.com\">support@vcita.com</a></p>\";}s:13:\"download_link\";s:57:\"http://downloads.wordpress.org/plugin/si-contact-form.zip\";s:4:\"tags\";a:11:{s:7:\"akismet\";s:7:\"Akismet\";s:10:\"buddypress\";s:10:\"buddypress\";s:7:\"captcha\";s:7:\"captcha\";s:7:\"contact\";s:7:\"contact\";s:12:\"contact-form\";s:12:\"contact form\";s:5:\"email\";s:5:\"email\";s:4:\"form\";s:4:\"form\";s:4:\"mail\";s:4:\"mail\";s:12:\"multilingual\";s:12:\"multilingual\";s:4:\"spam\";s:4:\"spam\";s:4:\"wpmu\";s:4:\"wpmu\";}}','no'),(2489,0,'_site_transient_update_plugins','O:8:\"stdClass\":3:{s:12:\"last_checked\";i:1324204658;s:7:\"checked\";a:7:{s:33:\"addthis/addthis_social_widget.php\";s:5:\"2.3.0\";s:19:\"akismet/akismet.php\";s:5:\"2.5.3\";s:43:\"all-in-one-seo-pack/all_in_one_seo_pack.php\";s:8:\"1.6.13.4\";s:35:\"si-contact-form/si-contact-form.php\";s:5:\"3.0.5\";s:9:\"hello.php\";s:3:\"1.6\";s:15:\"worker/init.php\";s:6:\"3.9.13\";s:31:\"wp-socializer/wp-socializer.php\";s:3:\"2.2\";}s:8:\"response\";a:2:{s:43:\"all-in-one-seo-pack/all_in_one_seo_pack.php\";O:8:\"stdClass\":5:{s:2:\"id\";s:3:\"520\";s:4:\"slug\";s:19:\"all-in-one-seo-pack\";s:11:\"new_version\";s:8:\"1.6.13.8\";s:3:\"url\";s:56:\"http://wordpress.org/extend/plugins/all-in-one-seo-pack/\";s:7:\"package\";s:61:\"http://downloads.wordpress.org/plugin/all-in-one-seo-pack.zip\";}s:35:\"si-contact-form/si-contact-form.php\";O:8:\"stdClass\":5:{s:2:\"id\";s:4:\"9891\";s:4:\"slug\";s:15:\"si-contact-form\";s:11:\"new_version\";s:3:\"3.1\";s:3:\"url\";s:52:\"http://wordpress.org/extend/plugins/si-contact-form/\";s:7:\"package\";s:57:\"http://downloads.wordpress.org/plugin/si-contact-form.zip\";}}}','yes'),(2424,0,'lacands-html-widget-counters-location','beforeAndafter','yes'),(2425,0,'lacands-html-widget-margin-top','5','yes'),(2427,0,'lacands-html-widget-margin-bottom','5','yes'),(2428,0,'lacands-html-widget-margin-left','0','yes'),(2429,0,'lacands-html-widget-disable-cntr-display-after','0','yes'),(2430,0,'lacands-html-cntr-font-color','333333','yes'),(2431,0,'lacands-html-widget-fb-like','like','yes'),(2432,0,'lacands-html-widget-font-style','arial','yes'),(2433,0,'lacands-html-widget-fb-ref','facebook','yes'),(2434,0,'lacands-html-widget-fb-like-button','1','yes'),(2435,0,'lacands-html-widget-fb-like-lang','en_US','yes'),(2436,0,'lacands-html-widget-fb-share-button','1','yes'),(2437,0,'lacands-html-widget-fb-share-counter','1','yes'),(2438,0,'lacands-html-widget-fb-share-lang','en','yes'),(2439,0,'lacands-html-widget-fb-send-button','1','yes'),(2440,0,'lacands-html-widget-fb-like-show','1','yes'),(2441,0,'lacands-html-widget-twitter-button','1','yes'),(2442,0,'lacands-html-widget-twitter-lang','en','yes'),(2443,0,'lacands-html-widget-twitter-mention','','yes'),(2444,0,'lacands-html-widget-twitter-related1','','yes'),(2445,0,'lacands-html-widget-twitter-related2','','yes'),(2446,0,'lacands-html-widget-twitter-counter','1','yes'),(2447,0,'lacands-html-widget-linkedin-button','noshow','yes'),(2448,0,'lacands-html-widget-linkedin-counter','1','yes'),(2449,0,'lacands-html-widget-fb-reco-width','300','yes'),(2450,0,'lacands-html-widget-fb-reco-height','300','yes'),(2451,0,'lacands-html-widget-fb-reco-header','true','yes'),(2452,0,'lacands-html-widget-fb-reco-color','light','yes'),(2453,0,'lacands-html-widget-fb-reco-font','arial','yes'),(2454,0,'lacands-html-widget-fb-reco-border','#AAAAAA','yes'),(2455,0,'lacands-html-widget-fb-reco-margin-top','5','yes'),(2456,0,'lacands-html-widget-fb-reco-margin-right','0','yes'),(2457,0,'lacands-html-widget-fb-reco-margin-bottom','5','yes'),(2458,0,'lacands-html-widget-fb-reco-margin-left','0','yes'),(2459,0,'lacands-html-widget-fb-reco-title','','yes'),(2460,0,'lacands-html-widget-stumble-button','1','yes'),(2461,0,'lacands-html-widget-stumble-counter','1','yes'),(2462,0,'lacands-html-widget-buzz-button','1','yes'),(2463,0,'lacands-html-widget-buzz-lang','en','yes'),(2464,0,'lacands-html-widget-buzz-counter','1','yes'),(2465,0,'lacands-html-widget-digg-button','1','yes'),(2466,0,'lacands-html-widget-digg-counter','1','yes'),(2467,0,'lacands-html-display-pages','a:9:{s:6:\"single\";s:1:\"1\";s:4:\"home\";s:1:\"1\";s:7:\"archive\";s:1:\"1\";s:8:\"category\";s:1:\"1\";s:4:\"tags\";s:1:\"1\";s:4:\"date\";s:1:\"1\";s:6:\"author\";s:1:\"1\";s:4:\"page\";s:1:\"1\";s:6:\"search\";s:1:\"1\";}','yes'),(2468,0,'lacands-html-like-layout','button_count','yes'),(2469,0,'lacandsnw-html-warning-msg','0','yes'),(2470,0,'lacands-html-widget-g1-button','1','yes'),(2471,0,'lacands-html-widget-g1-counter','1','yes'),(2472,0,'lacands-html-widget-g1-lang','en-US','yes'),(2473,0,'lacands-html-widget-display-password-protected','0','yes'),(2474,0,'lacands-html-widget-display-not-postids','0','yes'),(2475,0,'lacands-html-widget-mobile-hide','0','yes'),(2476,0,'lacands-html-version-number','4.6','yes'),(2477,0,'_transient_plugins_delete_result_1','1','yes'),(2480,0,'addthis_settings','a:15:{s:8:\"username\";s:0:\"\";s:7:\"profile\";s:0:\"\";s:8:\"password\";s:0:\"\";s:5:\"above\";s:4:\"none\";s:5:\"below\";s:11:\"fb_tw_p1_sc\";s:18:\"addthis_show_stats\";b:1;s:19:\"addthis_append_data\";b:1;s:18:\"addthis_showonhome\";b:0;s:19:\"addthis_showonpages\";b:0;s:22:\"addthis_showonarchives\";b:1;s:18:\"addthis_showoncats\";b:1;s:22:\"addthis_showonexcerpts\";b:1;s:18:\"addthis_addressbar\";b:0;s:11:\"addthis_508\";b:0;s:16:\"addthis_language\";s:0:\"\";}','yes'),(2481,0,'widget_addthis-widget','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(2490,0,'wpsr_addthis_data','a:10:{s:8:\"username\";s:0:\"\";s:8:\"language\";s:2:\"en\";s:6:\"button\";s:9:\"lg-share-\";s:15:\"tb_32pxservices\";s:45:\"facebook,twitter,digg,delicious,email,compact\";s:15:\"tb_16pxservices\";s:45:\"facebook,twitter,digg,delicious,email,compact\";s:10:\"sharecount\";s:6:\"normal\";s:7:\"btbrand\";s:0:\"\";s:9:\"clickback\";s:1:\"1\";s:9:\"btheadclr\";s:7:\"#000000\";s:11:\"btheadbgclr\";s:7:\"#f2f2f2\";}','yes'),(2491,0,'wpsr_sharethis_data','a:8:{s:12:\"vcount_order\";s:32:\"facebook,twitter,email,sharethis\";s:12:\"hcount_order\";s:32:\"facebook,twitter,email,sharethis\";s:13:\"buttons_order\";s:32:\"facebook,twitter,email,sharethis\";s:11:\"large_order\";s:32:\"facebook,twitter,email,sharethis\";s:13:\"regular_order\";s:32:\"facebook,twitter,email,sharethis\";s:14:\"regular2_order\";s:32:\"facebook,twitter,email,sharethis\";s:6:\"pubkey\";s:0:\"\";s:4:\"addp\";s:1:\"1\";}','yes'),(2492,0,'wpsr_buzz_data','a:6:{s:5:\"style\";s:5:\"count\";s:4:\"size\";s:6:\"normal\";s:8:\"language\";s:2:\"en\";s:7:\"profile\";s:29:\"http://profiles.google.com/me\";s:12:\"followbttext\";s:9:\"Follow Me\";s:4:\"page\";N;}','yes'),(2493,0,'wpsr_retweet_data','a:6:{s:8:\"username\";s:0:\"\";s:4:\"type\";s:7:\"compact\";s:7:\"service\";s:7:\"twitter\";s:10:\"topsytheme\";s:4:\"blue\";s:14:\"twitter_recacc\";s:0:\"\";s:12:\"twitter_lang\";s:2:\"en\";}','yes'),(2494,0,'wpsr_digg_data','a:1:{s:4:\"type\";s:11:\"DiggCompact\";}','yes'),(2495,0,'wpsr_facebook_data','a:9:{s:7:\"btstyle\";s:8:\"standard\";s:9:\"showfaces\";s:1:\"0\";s:5:\"width\";s:3:\"300\";s:4:\"verb\";s:4:\"like\";s:4:\"font\";s:5:\"arial\";s:5:\"color\";s:5:\"light\";s:7:\"shstyle\";s:6:\"button\";s:7:\"counter\";s:1:\"1\";s:16:\"counterplacement\";s:5:\"above\";}','yes'),(2496,0,'wpsr_socialbt_data','a:10:{s:12:\"selected16px\";s:79:\"facebook,twitter,delicious,digg,googlebuzz,stumbleupon,addtofavorites,email,rss\";s:12:\"selected32px\";s:66:\"twitter,delicious,digg,googlebuzz,stumbleupon,addtofavorites,email\";s:6:\"target\";s:1:\"0\";s:7:\"loadcss\";s:1:\"1\";s:6:\"effect\";s:7:\"opacity\";s:5:\"label\";s:1:\"0\";s:7:\"columns\";s:2:\"no\";s:11:\"imgpath16px\";s:84:\"http://bestecommerce-uk.com/wp-content/plugins/wp-socializer/public/social-icons/16/\";s:11:\"imgpath32px\";s:84:\"http://bestecommerce-uk.com/wp-content/plugins/wp-socializer/public/social-icons/32/\";s:10:\"usesprites\";s:1:\"0\";}','yes'),(2497,0,'wpsr_custom_data','a:2:{s:7:\"custom1\";s:0:\"\";s:7:\"custom2\";s:0:\"\";}','yes'),(2498,0,'wpsr_template1_data','a:14:{s:7:\"content\";s:366:\"<div class=\"buttons-wrap\">\r\n	<span class=\"margin15 floatleft\">{retweet-bt}</span>\r\n	<span class=\"margin15 floatleft\">{digg-bt}</span>\r\n	<span class=\"margin15 floatleft\">{stumbleupon-1}</span>\r\n	<span class=\"margin15 floatleft\">{reddit-1}</span>\r\n	<span class=\"margin15 floatleft\">{plusone-small}</span>\r\n	<div class=\"clear-all padding5\">{facebook-like}</div>\r\n</div>\";s:6:\"inhome\";N;s:8:\"insingle\";s:1:\"1\";s:6:\"inpage\";s:1:\"1\";s:10:\"incategory\";N;s:5:\"intag\";N;s:6:\"indate\";N;s:8:\"inauthor\";N;s:8:\"insearch\";N;s:9:\"inexcerpt\";N;s:6:\"infeed\";N;s:10:\"abvcontent\";s:1:\"1\";s:10:\"blwcontent\";N;s:4:\"addp\";N;}','yes'),(3541,0,'_transient_timeout_feed_mod_cb68174497b56497870e8b93ea839ea6','1324070668','no'),(3539,0,'_transient_timeout_feed_cb68174497b56497870e8b93ea839ea6','1324070668','no'),(3540,0,'_transient_feed_cb68174497b56497870e8b93ea839ea6','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:2:\"\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:4:\"0.92\";}}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:37:\"\n	\n	\n	\n	\n	\n	\n	\n\n\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:8:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Aakash Web\";s:7:\"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:24:\"http://www.aakashweb.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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"A Web of free flash and wordpress goodies.\";s: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:\"Fri, 02 Dec 2011 09:01:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"docs\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"http://backend.userland.com/rss092\";s: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:5:\"image\";a:1:{i:0;a:6:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:3:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"http://www.aakashweb.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:3:\"url\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"http://feeds.feedburner.com/~fc/aakashweb?bg=000000&amp;fg=FFFFFF&amp;anim=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:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Aakash Web\";s:7:\"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:17:{i:0;a:6:{s:4:\"data\";s:13:\"\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:3:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"Add Speech Recognition to input boxes in HTML\";s: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:2020:\"Google search text box has a voice recognition feature which is very helpful for inputting long sentences and difficult words. This feature can be brought to normal input textboxes also. But this feature works only in browsers which use the webkit rendering engine (ex: Google Chrome version 11 and above). In order to add he [...]\n<p><a href=\"http://feedads.g.doubleclick.net/~a/ZOlc0Ai6BDuG87CXvWgZ5l4Am6w/0/da\"><img src=\"http://feedads.g.doubleclick.net/~a/ZOlc0Ai6BDuG87CXvWgZ5l4Am6w/0/di\" border=\"0\" ismap=\"true\"></img></a><br/>\n<a href=\"http://feedads.g.doubleclick.net/~a/ZOlc0Ai6BDuG87CXvWgZ5l4Am6w/1/da\"><img src=\"http://feedads.g.doubleclick.net/~a/ZOlc0Ai6BDuG87CXvWgZ5l4Am6w/1/di\" border=\"0\" ismap=\"true\"></img></a></p><div class=\"feedflare\">\n<a href=\"http://feeds.feedburner.com/~ff/aakashweb?a=jz5NvncGpMs:kxQGMnUclkc:nieoB45qJOU\"><img src=\"http://feeds.feedburner.com/~ff/aakashweb?i=jz5NvncGpMs:kxQGMnUclkc:nieoB45qJOU\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/aakashweb?a=jz5NvncGpMs:kxQGMnUclkc:qj6IDK7rITs\"><img src=\"http://feeds.feedburner.com/~ff/aakashweb?d=qj6IDK7rITs\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/aakashweb?a=jz5NvncGpMs:kxQGMnUclkc:V_sGLiPBpWU\"><img src=\"http://feeds.feedburner.com/~ff/aakashweb?i=jz5NvncGpMs:kxQGMnUclkc:V_sGLiPBpWU\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/aakashweb?a=jz5NvncGpMs:kxQGMnUclkc:-BTjWOF_DHI\"><img src=\"http://feeds.feedburner.com/~ff/aakashweb?i=jz5NvncGpMs:kxQGMnUclkc:-BTjWOF_DHI\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/aakashweb?a=jz5NvncGpMs:kxQGMnUclkc:yIl2AUoC8zA\"><img src=\"http://feeds.feedburner.com/~ff/aakashweb?d=yIl2AUoC8zA\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/aakashweb?a=jz5NvncGpMs:kxQGMnUclkc:gIN9vFwOqvQ\"><img src=\"http://feeds.feedburner.com/~ff/aakashweb?i=jz5NvncGpMs:kxQGMnUclkc:gIN9vFwOqvQ\" border=\"0\"></img></a>\n</div><img src=\"http://feeds.feedburner.com/~r/aakashweb/~4/jz5NvncGpMs\" height=\"1\" width=\"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:\"http://feedproxy.google.com/~r/aakashweb/~3/jz5NvncGpMs/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"http://www.aakashweb.com/snippets/html/add-speech-recognition-to-input-boxes-in-html/\";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			\";s: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:3:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"WP Socializer v2.0 released\";s: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:2036:\"I am glad to announce that WP Socializer version 2.0 is released with lot of updates and bug fixes. It can downloaded from the WordPress website or using the download button below. The major features of WP Socializer v2.0 is listed below. Features of version 2.0 Insert&#160;105&#160;Social bookmarking buttons with both 16px and 32px button [...]\n<p><a href=\"http://feedads.g.doubleclick.net/~a/rAvv-ho9NuIVxBdV_wK18EQm0Vw/0/da\"><img src=\"http://feedads.g.doubleclick.net/~a/rAvv-ho9NuIVxBdV_wK18EQm0Vw/0/di\" border=\"0\" ismap=\"true\"></img></a><br/>\n<a href=\"http://feedads.g.doubleclick.net/~a/rAvv-ho9NuIVxBdV_wK18EQm0Vw/1/da\"><img src=\"http://feedads.g.doubleclick.net/~a/rAvv-ho9NuIVxBdV_wK18EQm0Vw/1/di\" border=\"0\" ismap=\"true\"></img></a></p><div class=\"feedflare\">\n<a href=\"http://feeds.feedburner.com/~ff/aakashweb?a=7fEQybhfXB4:NAqv1Z37D6o:nieoB45qJOU\"><img src=\"http://feeds.feedburner.com/~ff/aakashweb?i=7fEQybhfXB4:NAqv1Z37D6o:nieoB45qJOU\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/aakashweb?a=7fEQybhfXB4:NAqv1Z37D6o:qj6IDK7rITs\"><img src=\"http://feeds.feedburner.com/~ff/aakashweb?d=qj6IDK7rITs\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/aakashweb?a=7fEQybhfXB4:NAqv1Z37D6o:V_sGLiPBpWU\"><img src=\"http://feeds.feedburner.com/~ff/aakashweb?i=7fEQybhfXB4:NAqv1Z37D6o:V_sGLiPBpWU\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/aakashweb?a=7fEQybhfXB4:NAqv1Z37D6o:-BTjWOF_DHI\"><img src=\"http://feeds.feedburner.com/~ff/aakashweb?i=7fEQybhfXB4:NAqv1Z37D6o:-BTjWOF_DHI\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/aakashweb?a=7fEQybhfXB4:NAqv1Z37D6o:yIl2AUoC8zA\"><img src=\"http://feeds.feedburner.com/~ff/aakashweb?d=yIl2AUoC8zA\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/aakashweb?a=7fEQybhfXB4:NAqv1Z37D6o:gIN9vFwOqvQ\"><img src=\"http://feeds.feedburner.com/~ff/aakashweb?i=7fEQybhfXB4:NAqv1Z37D6o:gIN9vFwOqvQ\" border=\"0\"></img></a>\n</div><img src=\"http://feeds.feedburner.com/~r/aakashweb/~4/7fEQybhfXB4\" height=\"1\" width=\"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:\"http://feedproxy.google.com/~r/aakashweb/~3/7fEQybhfXB4/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"http://www.aakashweb.com/blog/wp-socializer-v2-0-released/\";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			\";s: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:3:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"WP Socializer\";s: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:1860:\"WP Socializer is a advanced and powerful plugin for adding social bookmarking links, retweet buttons, Google buzz buttons, Digg buttons, Addthis buttons, Facebook buttons.\n<p><a href=\"http://feedads.g.doubleclick.net/~a/P7cuftIx_oCB837hp67L9LY3JHI/0/da\"><img src=\"http://feedads.g.doubleclick.net/~a/P7cuftIx_oCB837hp67L9LY3JHI/0/di\" border=\"0\" ismap=\"true\"></img></a><br/>\n<a href=\"http://feedads.g.doubleclick.net/~a/P7cuftIx_oCB837hp67L9LY3JHI/1/da\"><img src=\"http://feedads.g.doubleclick.net/~a/P7cuftIx_oCB837hp67L9LY3JHI/1/di\" border=\"0\" ismap=\"true\"></img></a></p><div class=\"feedflare\">\n<a href=\"http://feeds.feedburner.com/~ff/aakashweb?a=5y1iGmR-GdA:gpjw4enGevA:nieoB45qJOU\"><img src=\"http://feeds.feedburner.com/~ff/aakashweb?i=5y1iGmR-GdA:gpjw4enGevA:nieoB45qJOU\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/aakashweb?a=5y1iGmR-GdA:gpjw4enGevA:qj6IDK7rITs\"><img src=\"http://feeds.feedburner.com/~ff/aakashweb?d=qj6IDK7rITs\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/aakashweb?a=5y1iGmR-GdA:gpjw4enGevA:V_sGLiPBpWU\"><img src=\"http://feeds.feedburner.com/~ff/aakashweb?i=5y1iGmR-GdA:gpjw4enGevA:V_sGLiPBpWU\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/aakashweb?a=5y1iGmR-GdA:gpjw4enGevA:-BTjWOF_DHI\"><img src=\"http://feeds.feedburner.com/~ff/aakashweb?i=5y1iGmR-GdA:gpjw4enGevA:-BTjWOF_DHI\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/aakashweb?a=5y1iGmR-GdA:gpjw4enGevA:yIl2AUoC8zA\"><img src=\"http://feeds.feedburner.com/~ff/aakashweb?d=yIl2AUoC8zA\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/aakashweb?a=5y1iGmR-GdA:gpjw4enGevA:gIN9vFwOqvQ\"><img src=\"http://feeds.feedburner.com/~ff/aakashweb?i=5y1iGmR-GdA:gpjw4enGevA:gIN9vFwOqvQ\" border=\"0\"></img></a>\n</div><img src=\"http://feeds.feedburner.com/~r/aakashweb/~4/5y1iGmR-GdA\" height=\"1\" width=\"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:\"http://feedproxy.google.com/~r/aakashweb/~3/5y1iGmR-GdA/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"http://www.aakashweb.com/wordpress-plugins/wp-socializer/\";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			\";s: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:3:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Manual placement\";s: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:1780:\"WP Socializer can be used externally in theme files, in bettween posts and in widgets also.\n<p><a href=\"http://feedads.g.doubleclick.net/~a/JTLnAQxqcHu7p8RLhFYjFnL-PwI/0/da\"><img src=\"http://feedads.g.doubleclick.net/~a/JTLnAQxqcHu7p8RLhFYjFnL-PwI/0/di\" border=\"0\" ismap=\"true\"></img></a><br/>\n<a href=\"http://feedads.g.doubleclick.net/~a/JTLnAQxqcHu7p8RLhFYjFnL-PwI/1/da\"><img src=\"http://feedads.g.doubleclick.net/~a/JTLnAQxqcHu7p8RLhFYjFnL-PwI/1/di\" border=\"0\" ismap=\"true\"></img></a></p><div class=\"feedflare\">\n<a href=\"http://feeds.feedburner.com/~ff/aakashweb?a=RSA1kjmDa4I:7RGLMZQvXOI:nieoB45qJOU\"><img src=\"http://feeds.feedburner.com/~ff/aakashweb?i=RSA1kjmDa4I:7RGLMZQvXOI:nieoB45qJOU\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/aakashweb?a=RSA1kjmDa4I:7RGLMZQvXOI:qj6IDK7rITs\"><img src=\"http://feeds.feedburner.com/~ff/aakashweb?d=qj6IDK7rITs\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/aakashweb?a=RSA1kjmDa4I:7RGLMZQvXOI:V_sGLiPBpWU\"><img src=\"http://feeds.feedburner.com/~ff/aakashweb?i=RSA1kjmDa4I:7RGLMZQvXOI:V_sGLiPBpWU\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/aakashweb?a=RSA1kjmDa4I:7RGLMZQvXOI:-BTjWOF_DHI\"><img src=\"http://feeds.feedburner.com/~ff/aakashweb?i=RSA1kjmDa4I:7RGLMZQvXOI:-BTjWOF_DHI\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/aakashweb?a=RSA1kjmDa4I:7RGLMZQvXOI:yIl2AUoC8zA\"><img src=\"http://feeds.feedburner.com/~ff/aakashweb?d=yIl2AUoC8zA\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/aakashweb?a=RSA1kjmDa4I:7RGLMZQvXOI:gIN9vFwOqvQ\"><img src=\"http://feeds.feedburner.com/~ff/aakashweb?i=RSA1kjmDa4I:7RGLMZQvXOI:gIN9vFwOqvQ\" border=\"0\"></img></a>\n</div><img src=\"http://feeds.feedburner.com/~r/aakashweb/~4/RSA1kjmDa4I\" height=\"1\" width=\"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:\"http://feedproxy.google.com/~r/aakashweb/~3/RSA1kjmDa4I/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"http://www.aakashweb.com/docs/wp-socializer-docs/manual-placement/\";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			\";s: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:3:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"Creating a custom template\";s: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:1965:\"From version 2.0, WP Socializer has feature called One Click setup. Using this users can select pre-made templates for their site. Also, custom templates can also be created for regular use and customizations. Following steps tells, how to create a template for WP Socializer.\n<p><a href=\"http://feedads.g.doubleclick.net/~a/uwDyRX7JUEx8RVC7tOVpyTC3AYg/0/da\"><img src=\"http://feedads.g.doubleclick.net/~a/uwDyRX7JUEx8RVC7tOVpyTC3AYg/0/di\" border=\"0\" ismap=\"true\"></img></a><br/>\n<a href=\"http://feedads.g.doubleclick.net/~a/uwDyRX7JUEx8RVC7tOVpyTC3AYg/1/da\"><img src=\"http://feedads.g.doubleclick.net/~a/uwDyRX7JUEx8RVC7tOVpyTC3AYg/1/di\" border=\"0\" ismap=\"true\"></img></a></p><div class=\"feedflare\">\n<a href=\"http://feeds.feedburner.com/~ff/aakashweb?a=Eo6gkk16f68:1kSfV42waSw:nieoB45qJOU\"><img src=\"http://feeds.feedburner.com/~ff/aakashweb?i=Eo6gkk16f68:1kSfV42waSw:nieoB45qJOU\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/aakashweb?a=Eo6gkk16f68:1kSfV42waSw:qj6IDK7rITs\"><img src=\"http://feeds.feedburner.com/~ff/aakashweb?d=qj6IDK7rITs\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/aakashweb?a=Eo6gkk16f68:1kSfV42waSw:V_sGLiPBpWU\"><img src=\"http://feeds.feedburner.com/~ff/aakashweb?i=Eo6gkk16f68:1kSfV42waSw:V_sGLiPBpWU\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/aakashweb?a=Eo6gkk16f68:1kSfV42waSw:-BTjWOF_DHI\"><img src=\"http://feeds.feedburner.com/~ff/aakashweb?i=Eo6gkk16f68:1kSfV42waSw:-BTjWOF_DHI\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/aakashweb?a=Eo6gkk16f68:1kSfV42waSw:yIl2AUoC8zA\"><img src=\"http://feeds.feedburner.com/~ff/aakashweb?d=yIl2AUoC8zA\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/aakashweb?a=Eo6gkk16f68:1kSfV42waSw:gIN9vFwOqvQ\"><img src=\"http://feeds.feedburner.com/~ff/aakashweb?i=Eo6gkk16f68:1kSfV42waSw:gIN9vFwOqvQ\" border=\"0\"></img></a>\n</div><img src=\"http://feeds.feedburner.com/~r/aakashweb/~4/Eo6gkk16f68\" height=\"1\" width=\"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:\"http://feedproxy.google.com/~r/aakashweb/~3/Eo6gkk16f68/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"http://www.aakashweb.com/docs/wp-socializer-docs/creating-a-custom-template/\";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			\";s: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:3:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Function reference\";s: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:1732:\"Function reference of WP Socializer plugin.\n<p><a href=\"http://feedads.g.doubleclick.net/~a/1PgfYzhLP2FToWDctBy0GAFNyl8/0/da\"><img src=\"http://feedads.g.doubleclick.net/~a/1PgfYzhLP2FToWDctBy0GAFNyl8/0/di\" border=\"0\" ismap=\"true\"></img></a><br/>\n<a href=\"http://feedads.g.doubleclick.net/~a/1PgfYzhLP2FToWDctBy0GAFNyl8/1/da\"><img src=\"http://feedads.g.doubleclick.net/~a/1PgfYzhLP2FToWDctBy0GAFNyl8/1/di\" border=\"0\" ismap=\"true\"></img></a></p><div class=\"feedflare\">\n<a href=\"http://feeds.feedburner.com/~ff/aakashweb?a=HMNhXXEmT1A:arkSKfZj4Hg:nieoB45qJOU\"><img src=\"http://feeds.feedburner.com/~ff/aakashweb?i=HMNhXXEmT1A:arkSKfZj4Hg:nieoB45qJOU\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/aakashweb?a=HMNhXXEmT1A:arkSKfZj4Hg:qj6IDK7rITs\"><img src=\"http://feeds.feedburner.com/~ff/aakashweb?d=qj6IDK7rITs\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/aakashweb?a=HMNhXXEmT1A:arkSKfZj4Hg:V_sGLiPBpWU\"><img src=\"http://feeds.feedburner.com/~ff/aakashweb?i=HMNhXXEmT1A:arkSKfZj4Hg:V_sGLiPBpWU\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/aakashweb?a=HMNhXXEmT1A:arkSKfZj4Hg:-BTjWOF_DHI\"><img src=\"http://feeds.feedburner.com/~ff/aakashweb?i=HMNhXXEmT1A:arkSKfZj4Hg:-BTjWOF_DHI\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/aakashweb?a=HMNhXXEmT1A:arkSKfZj4Hg:yIl2AUoC8zA\"><img src=\"http://feeds.feedburner.com/~ff/aakashweb?d=yIl2AUoC8zA\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/aakashweb?a=HMNhXXEmT1A:arkSKfZj4Hg:gIN9vFwOqvQ\"><img src=\"http://feeds.feedburner.com/~ff/aakashweb?i=HMNhXXEmT1A:arkSKfZj4Hg:gIN9vFwOqvQ\" border=\"0\"></img></a>\n</div><img src=\"http://feeds.feedburner.com/~r/aakashweb/~4/HMNhXXEmT1A\" height=\"1\" width=\"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:\"http://feedproxy.google.com/~r/aakashweb/~3/HMNhXXEmT1A/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"http://www.aakashweb.com/docs/wp-socializer-docs/function-reference/\";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			\";s: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:3:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"WP Socializer v2.0 Beta 2 – Released\";s: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:1964:\"The WP Socializer v2.0 Beta 2 is now released after a good response from the users. The beta 1 had some bugs and now in beta 2 those bugs are fixed. Also beta 2 has some new features and admin UI tweaks. The beta 2 was tested in WordPress 3.2.1 and it ran smoothly with [...]\n<p><a href=\"http://feedads.g.doubleclick.net/~a/RjWVlDlLHCcU3bm1Wvqo1YNo1CI/0/da\"><img src=\"http://feedads.g.doubleclick.net/~a/RjWVlDlLHCcU3bm1Wvqo1YNo1CI/0/di\" border=\"0\" ismap=\"true\"></img></a><br/>\n<a href=\"http://feedads.g.doubleclick.net/~a/RjWVlDlLHCcU3bm1Wvqo1YNo1CI/1/da\"><img src=\"http://feedads.g.doubleclick.net/~a/RjWVlDlLHCcU3bm1Wvqo1YNo1CI/1/di\" border=\"0\" ismap=\"true\"></img></a></p><div class=\"feedflare\">\n<a href=\"http://feeds.feedburner.com/~ff/aakashweb?a=8nkALHxrqGU:cgqTZZSp5gs:nieoB45qJOU\"><img src=\"http://feeds.feedburner.com/~ff/aakashweb?i=8nkALHxrqGU:cgqTZZSp5gs:nieoB45qJOU\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/aakashweb?a=8nkALHxrqGU:cgqTZZSp5gs:qj6IDK7rITs\"><img src=\"http://feeds.feedburner.com/~ff/aakashweb?d=qj6IDK7rITs\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/aakashweb?a=8nkALHxrqGU:cgqTZZSp5gs:V_sGLiPBpWU\"><img src=\"http://feeds.feedburner.com/~ff/aakashweb?i=8nkALHxrqGU:cgqTZZSp5gs:V_sGLiPBpWU\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/aakashweb?a=8nkALHxrqGU:cgqTZZSp5gs:-BTjWOF_DHI\"><img src=\"http://feeds.feedburner.com/~ff/aakashweb?i=8nkALHxrqGU:cgqTZZSp5gs:-BTjWOF_DHI\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/aakashweb?a=8nkALHxrqGU:cgqTZZSp5gs:yIl2AUoC8zA\"><img src=\"http://feeds.feedburner.com/~ff/aakashweb?d=yIl2AUoC8zA\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/aakashweb?a=8nkALHxrqGU:cgqTZZSp5gs:gIN9vFwOqvQ\"><img src=\"http://feeds.feedburner.com/~ff/aakashweb?i=8nkALHxrqGU:cgqTZZSp5gs:gIN9vFwOqvQ\" border=\"0\"></img></a>\n</div><img src=\"http://feeds.feedburner.com/~r/aakashweb/~4/8nkALHxrqGU\" height=\"1\" width=\"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:\"http://feedproxy.google.com/~r/aakashweb/~3/8nkALHxrqGU/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"http://www.aakashweb.com/blog/wp-socializer-v2-0-beta-2-released/\";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			\";s: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:3:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"HTML Javascript Adder v3.3 – Released\";s: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:2027:\"HTML Javascript Adder version 3.3 is released with some additional features and fixes. Whats new in version 3.3 ? Added integration with WP Socializer (v2.0 and above). If you are using WP Socializer version 2.0 beta, then you can insert all social buttons inside the sidebar with this version. Added persian language (now there are [...]\n<p><a href=\"http://feedads.g.doubleclick.net/~a/dVD_Q2CFSNLHUJTNCebVz84EPW0/0/da\"><img src=\"http://feedads.g.doubleclick.net/~a/dVD_Q2CFSNLHUJTNCebVz84EPW0/0/di\" border=\"0\" ismap=\"true\"></img></a><br/>\n<a href=\"http://feedads.g.doubleclick.net/~a/dVD_Q2CFSNLHUJTNCebVz84EPW0/1/da\"><img src=\"http://feedads.g.doubleclick.net/~a/dVD_Q2CFSNLHUJTNCebVz84EPW0/1/di\" border=\"0\" ismap=\"true\"></img></a></p><div class=\"feedflare\">\n<a href=\"http://feeds.feedburner.com/~ff/aakashweb?a=x2rTh4rg4j0:-Buh0yybl8o:nieoB45qJOU\"><img src=\"http://feeds.feedburner.com/~ff/aakashweb?i=x2rTh4rg4j0:-Buh0yybl8o:nieoB45qJOU\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/aakashweb?a=x2rTh4rg4j0:-Buh0yybl8o:qj6IDK7rITs\"><img src=\"http://feeds.feedburner.com/~ff/aakashweb?d=qj6IDK7rITs\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/aakashweb?a=x2rTh4rg4j0:-Buh0yybl8o:V_sGLiPBpWU\"><img src=\"http://feeds.feedburner.com/~ff/aakashweb?i=x2rTh4rg4j0:-Buh0yybl8o:V_sGLiPBpWU\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/aakashweb?a=x2rTh4rg4j0:-Buh0yybl8o:-BTjWOF_DHI\"><img src=\"http://feeds.feedburner.com/~ff/aakashweb?i=x2rTh4rg4j0:-Buh0yybl8o:-BTjWOF_DHI\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/aakashweb?a=x2rTh4rg4j0:-Buh0yybl8o:yIl2AUoC8zA\"><img src=\"http://feeds.feedburner.com/~ff/aakashweb?d=yIl2AUoC8zA\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/aakashweb?a=x2rTh4rg4j0:-Buh0yybl8o:gIN9vFwOqvQ\"><img src=\"http://feeds.feedburner.com/~ff/aakashweb?i=x2rTh4rg4j0:-Buh0yybl8o:gIN9vFwOqvQ\" border=\"0\"></img></a>\n</div><img src=\"http://feeds.feedburner.com/~r/aakashweb/~4/x2rTh4rg4j0\" height=\"1\" width=\"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:\"http://feedproxy.google.com/~r/aakashweb/~3/x2rTh4rg4j0/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"http://www.aakashweb.com/blog/html-javascript-adder-v3-3-released/\";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			\";s: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:3:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"WP Socializer v2.0 (Beta) – Released\";s: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:2011:\"After receiving a lot of requests to release WP Socializer v2.0 as soon as possible, I decided to release the beta version. This beta version has no documentation (it will be published when the full version is released) and partial translation. This is due to lack of time for development. The beta version is tested [...]\n<p><a href=\"http://feedads.g.doubleclick.net/~a/BJLYwLIPYmiXw5WvsCS6HwYZ3DI/0/da\"><img src=\"http://feedads.g.doubleclick.net/~a/BJLYwLIPYmiXw5WvsCS6HwYZ3DI/0/di\" border=\"0\" ismap=\"true\"></img></a><br/>\n<a href=\"http://feedads.g.doubleclick.net/~a/BJLYwLIPYmiXw5WvsCS6HwYZ3DI/1/da\"><img src=\"http://feedads.g.doubleclick.net/~a/BJLYwLIPYmiXw5WvsCS6HwYZ3DI/1/di\" border=\"0\" ismap=\"true\"></img></a></p><div class=\"feedflare\">\n<a href=\"http://feeds.feedburner.com/~ff/aakashweb?a=n57cXLwbtiY:ciCmnWoXObw:nieoB45qJOU\"><img src=\"http://feeds.feedburner.com/~ff/aakashweb?i=n57cXLwbtiY:ciCmnWoXObw:nieoB45qJOU\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/aakashweb?a=n57cXLwbtiY:ciCmnWoXObw:qj6IDK7rITs\"><img src=\"http://feeds.feedburner.com/~ff/aakashweb?d=qj6IDK7rITs\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/aakashweb?a=n57cXLwbtiY:ciCmnWoXObw:V_sGLiPBpWU\"><img src=\"http://feeds.feedburner.com/~ff/aakashweb?i=n57cXLwbtiY:ciCmnWoXObw:V_sGLiPBpWU\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/aakashweb?a=n57cXLwbtiY:ciCmnWoXObw:-BTjWOF_DHI\"><img src=\"http://feeds.feedburner.com/~ff/aakashweb?i=n57cXLwbtiY:ciCmnWoXObw:-BTjWOF_DHI\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/aakashweb?a=n57cXLwbtiY:ciCmnWoXObw:yIl2AUoC8zA\"><img src=\"http://feeds.feedburner.com/~ff/aakashweb?d=yIl2AUoC8zA\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/aakashweb?a=n57cXLwbtiY:ciCmnWoXObw:gIN9vFwOqvQ\"><img src=\"http://feeds.feedburner.com/~ff/aakashweb?i=n57cXLwbtiY:ciCmnWoXObw:gIN9vFwOqvQ\" border=\"0\"></img></a>\n</div><img src=\"http://feeds.feedburner.com/~r/aakashweb/~4/n57cXLwbtiY\" height=\"1\" width=\"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:\"http://feedproxy.google.com/~r/aakashweb/~3/n57cXLwbtiY/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"http://www.aakashweb.com/blog/wp-socializer-v2-beta-released/\";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			\";s: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:3:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"Removing the “Generator” meta tag in 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:1943:\"In your wordpress website source, you can notice that there is a meta tag called &#34;generator&#34; which tells which wordpress version you are using. This causes a serious issue to wordpress sites as they give more information about the Wordpress used.\n<p><a href=\"http://feedads.g.doubleclick.net/~a/mRZyYQAFEm1q4Xuo6rxsAxBzbWE/0/da\"><img src=\"http://feedads.g.doubleclick.net/~a/mRZyYQAFEm1q4Xuo6rxsAxBzbWE/0/di\" border=\"0\" ismap=\"true\"></img></a><br/>\n<a href=\"http://feedads.g.doubleclick.net/~a/mRZyYQAFEm1q4Xuo6rxsAxBzbWE/1/da\"><img src=\"http://feedads.g.doubleclick.net/~a/mRZyYQAFEm1q4Xuo6rxsAxBzbWE/1/di\" border=\"0\" ismap=\"true\"></img></a></p><div class=\"feedflare\">\n<a href=\"http://feeds.feedburner.com/~ff/aakashweb?a=O7QxgmCFBKA:SMU5P_9kGe8:nieoB45qJOU\"><img src=\"http://feeds.feedburner.com/~ff/aakashweb?i=O7QxgmCFBKA:SMU5P_9kGe8:nieoB45qJOU\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/aakashweb?a=O7QxgmCFBKA:SMU5P_9kGe8:qj6IDK7rITs\"><img src=\"http://feeds.feedburner.com/~ff/aakashweb?d=qj6IDK7rITs\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/aakashweb?a=O7QxgmCFBKA:SMU5P_9kGe8:V_sGLiPBpWU\"><img src=\"http://feeds.feedburner.com/~ff/aakashweb?i=O7QxgmCFBKA:SMU5P_9kGe8:V_sGLiPBpWU\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/aakashweb?a=O7QxgmCFBKA:SMU5P_9kGe8:-BTjWOF_DHI\"><img src=\"http://feeds.feedburner.com/~ff/aakashweb?i=O7QxgmCFBKA:SMU5P_9kGe8:-BTjWOF_DHI\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/aakashweb?a=O7QxgmCFBKA:SMU5P_9kGe8:yIl2AUoC8zA\"><img src=\"http://feeds.feedburner.com/~ff/aakashweb?d=yIl2AUoC8zA\" border=\"0\"></img></a> <a href=\"http://feeds.feedburner.com/~ff/aakashweb?a=O7QxgmCFBKA:SMU5P_9kGe8:gIN9vFwOqvQ\"><img src=\"http://feeds.feedburner.com/~ff/aakashweb?i=O7QxgmCFBKA:SMU5P_9kGe8:gIN9vFwOqvQ\" border=\"0\"></img></a>\n</div><img src=\"http://feeds.feedburner.com/~r/aakashweb/~4/O7QxgmCFBKA\" height=\"1\" width=\"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:\"http://feedproxy.google.com/~r/aakashweb/~3/O7QxgmCFBKA/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"http://www.aakashweb.com/tips-tricks/wordpress/removing-the-generator-meta-tag-in-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:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:4:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"Links for 2011-08-21 [Digg]\";s:7:\"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:\"http://feedproxy.google.com/~r/aakashweb/~3/CGBfowHk7Tk/null\";s: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:29:\"Mon, 22 Aug 2011 00:00:00 PDT\";s: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:537:\"<ul>\n<li><a href=\"http://digg.com/news/technology/wp_socializer_v2_0_beta_2_is_released_aakash_web?utm_campaign=Feed%3A+http%3A%2F%2Fservices.digg.com%2F2.0%2Fuser.getActivity%3Ftype%3Drss%26activity_type%3Ddigg%26username%3Dvaakash&utm_medium=feed&utm_source=diggapi\">WP Socializer v2.0-Beta 2 is released - Aakash Web</a><br/>\nThe WP Socializer v2.0 Beta 2 is now released after a good response from the users. You can download it now.</li>\n</ul><img src=\"http://feeds.feedburner.com/~r/aakashweb/~4/CGBfowHk7Tk\" height=\"1\" width=\"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:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"http://www.aakashweb.com/null#2011-08-21\";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:0:\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:4:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"Links for 2011-03-31 [Digg]\";s:7:\"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:\"http://feedproxy.google.com/~r/aakashweb/~3/aJCAXk0h06A/\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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Fri, 01 Apr 2011 00:00:00 PDT\";s: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:422:\"<ul>\n<li><a href=\"http://digg.com/news/technology/gmail_motion_beta\">Gmail Motion BETA</a><br/>\nNow you can control Gmail with your body. Gmail Motion uses your computer\'s built-in webcam and Google\'s patented spatial tracking technology to detect your movements and translate them into meaningful characters and commands.</li>\n</ul><img src=\"http://feeds.feedburner.com/~r/aakashweb/~4/aJCAXk0h06A\" height=\"1\" width=\"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:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"http://digg.com/\n		#2011-03-31\";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:0:\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:4:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"Links for 2011-01-10 [Digg]\";s:7:\"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:\"http://feedproxy.google.com/~r/aakashweb/~3/ZWnAXA_eXso/\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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Tue, 11 Jan 2011 00:00:00 PST\";s: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:419:\"<ul>\n<li><a href=\"http://digg.com/news/technology/wp_socializer_wordpress_plugin_aakash_web\">WP Socializer - Wordpress Plugin - Aakash Web</a><br/>\nWP Socializer is a advanced and powerful plugin for adding social bookmarking links, retweet buttons, Google buzz buttons, Digg buttons, Addthis buttons, Facebook buttons.</li>\n</ul><img src=\"http://feeds.feedburner.com/~r/aakashweb/~4/ZWnAXA_eXso\" height=\"1\" width=\"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:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"http://digg.com/\n		#2011-01-10\";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:0:\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:4:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"Links for 2010-11-03 [Digg]\";s:7:\"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:\"http://feedproxy.google.com/~r/aakashweb/~3/SoHa0KN7iNk/\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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Thu, 04 Nov 2010 00:00:00 PDT\";s: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:465:\"<ul>\n<li><a href=\"http://digg.com/news/technology/15_famous_and_successful_logo_redesigns_what_has_been_improved\">15 Famous And Successful Logo Redesigns - What Has Been Improved?</a><br/>\nBelow is a list, in no particular order of what I think to be famous and successful logo redesign from their old logo to the latest with explanations of what has been improved.</li>\n</ul><img src=\"http://feeds.feedburner.com/~r/aakashweb/~4/SoHa0KN7iNk\" height=\"1\" width=\"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:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"http://digg.com/\n		#2010-11-03\";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:0:\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:4:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"Links for 2010-10-01 [Digg]\";s:7:\"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:\"http://feedproxy.google.com/~r/aakashweb/~3/zD-dunuriAs/\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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Sat, 02 Oct 2010 00:00:00 PDT\";s: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:380:\"<ul>\n<li><a href=\"http://digg.com/news/technology/rising_browser_powers_chrome_ios_mobile\">Rising browser powers: Chrome, iOS, mobile</a><br/>\nNet Applications\' latest statistics show the up-and-comers of Web usage. The new IE9 beta now is used to view one of every 400 Web pages.</li>\n</ul><img src=\"http://feeds.feedburner.com/~r/aakashweb/~4/zD-dunuriAs\" height=\"1\" width=\"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:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"http://digg.com/\n		#2010-10-01\";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:0:\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:4:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"Links for 2010-07-31 [Digg]\";s:7:\"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:\"http://feedproxy.google.com/~r/aakashweb/~3/GNGuNIQO-U8/\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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Sun, 01 Aug 2010 00:00:00 PDT\";s: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:509:\"<ul>\n<li><a href=\"http://digg.com/news/technology/How_to_use_App_Tabs_in_Firefox_video\">How to use App Tabs in Firefox (video)</a><br/>\nMozilla has given tabs some long-overdue love in the second Firefox 4 beta with App Tabs, a feature that annihilates your scramble to search for that one elusive open tab. Watch what it does in this How To video. Read this blog post by Seth Rosenblatt on The Download Blog.</li>\n</ul><img src=\"http://feeds.feedburner.com/~r/aakashweb/~4/GNGuNIQO-U8\" height=\"1\" width=\"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:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"http://digg.com/\n		#2010-07-31\";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:0:\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:4:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"Links for 2010-07-30 [Digg]\";s:7:\"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:\"http://feedproxy.google.com/~r/aakashweb/~3/58J70sVXRXE/\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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Sat, 31 Jul 2010 00:00:00 PDT\";s: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:562:\"<ul>\n<li><a href=\"http://digg.com/news/technology/Automation_partnerships_drive_Webroot_revamp\">Automation, partnerships drive Webroot revamp</a><br/>\nBest known for Spy Sweeper, Webroot introduces the new Internet Security Complete 2011 in an attempt to offer comprehensive security that includes password management, file synchronization, and identity protection along with modern threat protection. Read this blog post by Seth Rosenblatt on The Download Blog.</li>\n</ul><img src=\"http://feeds.feedburner.com/~r/aakashweb/~4/58J70sVXRXE\" height=\"1\" width=\"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:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"http://digg.com/\n		#2010-07-30\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:28:\"http://www.w3.org/1999/xhtml\";a:1:{s:4:\"meta\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:4:\"name\";s:6:\"robots\";s:7:\"content\";s:7:\"noindex\";}}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:2:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:15:\"application/xml\";s:4:\"href\";s:37:\"http://feeds.feedburner.com/aakashweb\";}}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:2:{s:3:\"rel\";s:3:\"hub\";s:4:\"href\";s:32:\"http://pubsubhubbub.appspot.com/\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:4:{s:4:\"info\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"uri\";s:9:\"aakashweb\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:14:\"emailServiceId\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"aakashweb\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:18:\"feedburnerHostname\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://feedburner.google.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:9:\"feedFlare\";a:19:{i:0;a:5:{s:4:\"data\";s:24:\"Subscribe with My Yahoo!\";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:4:\"href\";s:77:\"http://add.my.yahoo.com/rss?url=http%3A%2F%2Ffeeds.feedburner.com%2Faakashweb\";s:3:\"src\";s:59:\"http://us.i1.yimg.com/us.yimg.com/i/us/my/addtomyyahoo4.gif\";}}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:24:\"Subscribe with NewsGator\";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:4:\"href\";s:101:\"http://www.newsgator.com/ngs/subscriber/subext.aspx?url=http%3A%2F%2Ffeeds.feedburner.com%2Faakashweb\";s:3:\"src\";s:42:\"http://www.newsgator.com/images/ngsub1.gif\";}}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:21:\"Subscribe with My AOL\";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:4:\"href\";s:81:\"http://feeds.my.aol.com/add.jsp?url=http%3A%2F%2Ffeeds.feedburner.com%2Faakashweb\";s:3:\"src\";s:108:\"http://o.aolcdn.com/favorites.my.aol.com/webmaster/ffclient/webroot/locale/en-US/images/myAOLButtonSmall.gif\";}}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:24:\"Subscribe with Bloglines\";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:4:\"href\";s:66:\"http://www.bloglines.com/sub/http://feeds.feedburner.com/aakashweb\";s:3:\"src\";s:48:\"http://www.bloglines.com/images/sub_modern11.gif\";}}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:23:\"Subscribe with Netvibes\";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:4:\"href\";s:87:\"http://www.netvibes.com/subscribe.php?url=http%3A%2F%2Ffeeds.feedburner.com%2Faakashweb\";s:3:\"src\";s:44:\"http://www.netvibes.com/img/add2netvibes.gif\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:5;a:5:{s:4:\"data\";s:21:\"Subscribe with Google\";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:4:\"href\";s:82:\"http://fusion.google.com/add?feedurl=http%3A%2F%2Ffeeds.feedburner.com%2Faakashweb\";s:3:\"src\";s:51:\"http://buttons.googlesyndication.com/fusion/add.gif\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:6;a:5:{s:4:\"data\";s:25:\"Subscribe with Pageflakes\";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:4:\"href\";s:90:\"http://www.pageflakes.com/subscribe.aspx?url=http%3A%2F%2Ffeeds.feedburner.com%2Faakashweb\";s:3:\"src\";s:87:\"http://www.pageflakes.com/ImageFile.ashx?instanceId=Static_4&fileName=ATP_blu_91x17.gif\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:7;a:5:{s:4:\"data\";s:21:\"Subscribe with Plusmo\";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:4:\"href\";s:75:\"http://www.plusmo.com/add?url=http%3A%2F%2Ffeeds.feedburner.com%2Faakashweb\";s:3:\"src\";s:43:\"http://plusmo.com/res/graphics/fbplusmo.gif\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:8;a:5:{s:4:\"data\";s:34:\"Subscribe with The Free Dictionary\";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:4:\"href\";s:95:\"http://www.thefreedictionary.com/_/hp/AddRSS.aspx?http%3A%2F%2Ffeeds.feedburner.com%2Faakashweb\";s:3:\"src\";s:48:\"http://img.tfd.com/hp/addToTheFreeDictionary.gif\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:9;a:5:{s:4:\"data\";s:28:\"Subscribe with Bitty Browser\";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:4:\"href\";s:107:\"http://www.bitty.com/manual/?contenttype=rssfeed&contentvalue=http%3A%2F%2Ffeeds.feedburner.com%2Faakashweb\";s:3:\"src\";s:48:\"http://www.bitty.com/img/bittychicklet_91x17.gif\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:10;a:5:{s:4:\"data\";s:24:\"Subscribe with NewsAlloy\";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:4:\"href\";s:75:\"http://www.newsalloy.com/?rss=http%3A%2F%2Ffeeds.feedburner.com%2Faakashweb\";s:3:\"src\";s:36:\"http://www.newsalloy.com/subrss3.gif\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:11;a:5:{s:4:\"data\";s:23:\"Subscribe with Live.com\";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:4:\"href\";s:70:\"http://www.live.com/?add=http%3A%2F%2Ffeeds.feedburner.com%2Faakashweb\";s:3:\"src\";s:141:\"http://tkfiles.storage.msn.com/x1piYkpqHC_35nIp1gLE68-wvzLZO8iXl_JMledmJQXP-XTBOLfmQv4zhj4MhcWEJh_GtoBIiAl1Mjh-ndp9k47If7hTaFno0mxW9_i3p_5qQw\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:12;a:5:{s:4:\"data\";s:25:\"Subscribe with Excite MIX\";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:4:\"href\";s:78:\"http://mix.excite.eu/add?feedurl=http%3A%2F%2Ffeeds.feedburner.com%2Faakashweb\";s:3:\"src\";s:42:\"http://image.excite.co.uk/mix/addtomix.gif\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:13;a:5:{s:4:\"data\";s:34:\"Subscribe with Attensa for Outlook\";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:4:\"href\";s:102:\"http://download.attensa.com/app/get_attensa.html?feedurl=http%3A%2F%2Ffeeds.feedburner.com%2Faakashweb\";s:3:\"src\";s:104:\"http://www.attensa.com/blogs/attensa/WindowsLiveWriter/BadgeredintoBadges_10C02/attensa_feed_button5.gif\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:14;a:5:{s:4:\"data\";s:21:\"Subscribe with Webwag\";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:4:\"href\";s:83:\"http://www.webwag.com/wwgthis.php?url=http%3A%2F%2Ffeeds.feedburner.com%2Faakashweb\";s:3:\"src\";s:40:\"http://www.webwag.com/images/wwgthis.gif\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:15;a:5:{s:4:\"data\";s:28:\"Subscribe with Podcast Ready\";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:4:\"href\";s:99:\"http://www.podcastready.com/oneclick_bookmark.php?url=http%3A%2F%2Ffeeds.feedburner.com%2Faakashweb\";s:3:\"src\";s:58:\"http://www.podcastready.com/images/podcastready_button.gif\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:16;a:5:{s:4:\"data\";s:21:\"Subscribe with Flurry\";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:4:\"href\";s:91:\"http://www.flurry.com/pushRssFeed.do?r=fb&url=http%3A%2F%2Ffeeds.feedburner.com%2Faakashweb\";s:3:\"src\";s:49:\"http://www.flurry.com/images/flurry_rss_logo2.gif\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:17;a:5:{s:4:\"data\";s:20:\"Subscribe with Wikio\";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:4:\"href\";s:80:\"http://www.wikio.com/subscribe?url=http%3A%2F%2Ffeeds.feedburner.com%2Faakashweb\";s:3:\"src\";s:45:\"http://www.wikio.com/shared/img/add2wikio.gif\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:18;a:5:{s:4:\"data\";s:29:\"Subscribe with Daily Rotation\";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:4:\"href\";s:89:\"http://www.dailyrotation.com/index.php?feed=http%3A%2F%2Ffeeds.feedburner.com%2Faakashweb\";s:3:\"src\";s:40:\"http://www.dailyrotation.com/rss-dr2.gif\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:8;s:7:\"headers\";a:9:{s:13:\"last-modified\";s:29:\"Fri, 16 Dec 2011 09:24:24 GMT\";s:4:\"etag\";s:27:\"GLK7gl9wo3Ut1EYJy+uf0Udj2n0\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:4:\"date\";s:29:\"Fri, 16 Dec 2011 09:24:24 GMT\";s:7:\"expires\";s:29:\"Fri, 16 Dec 2011 09:24:24 GMT\";s:13:\"cache-control\";s:18:\"private, max-age=0\";s:22:\"x-content-type-options\";s:7:\"nosniff\";s:16:\"x-xss-protection\";s:13:\"1; mode=block\";s:6:\"server\";s:3:\"GSE\";}s:5:\"build\";s:14:\"20090627192103\";}','no'),(3542,0,'_transient_feed_mod_cb68174497b56497870e8b93ea839ea6','1324027468','no'),(3547,0,'_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca','1324070671','no'),(3548,0,'_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:50:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s: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:25:\"http://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:\"Mon, 12 Dec 2011 22:58: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: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:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/?v=3.4-alpha\";s:7:\"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:41:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"WordPress 3.3 “Sonny”\";s:7:\"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:\"http://wordpress.org/news/2011/12/sonny/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"http://wordpress.org/news/2011/12/sonny/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 12 Dec 2011 22:58: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: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:33:\"http://wordpress.org/news/?p=2135\";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:382:\"The latest and greatest version of the WordPress software &#8212; 3.3, named &#8220;Sonny&#8221; in honor of the great jazz saxophonist Sonny Stitt &#8212; is immediately available for download or update inside your WordPress dashboard. WordPress has had over 65 million downloads since version 3.0 was released, and in this third major iteration we&#8217;ve added significant [...]\";s: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:17036:\"<p>The latest and greatest version of the WordPress software &#8212; 3.3, named &#8220;Sonny&#8221; in honor of the great jazz saxophonist Sonny Stitt &#8212; is <a href=\"http://wordpress.org/download/\">immediately available for download</a> or update inside your WordPress dashboard.</p>\n<p>WordPress has had over 65 million downloads since version 3.0 was released, and in this third major iteration we&#8217;ve added significant polish around the new user experience, navigation, uploading, and imports. Check out this short video that summarizes the things we think you&#8217;ll find are the cat&#8217;s pajamas:</p>\n<div id=\"v-I7NAw9Zk-1\" class=\"video-player\"><embed id=\"v-I7NAw9Zk-1-video\" src=\"http://s0.videopress.com/player.swf?v=1.03&amp;guid=I7NAw9Zk&amp;isDynamicSeeking=true\" type=\"application/x-shockwave-flash\" width=\"692\" height=\"388\" title=\"Introducing WordPress 3.3 &quot;Sonny&quot;\" wmode=\"direct\" seamlesstabbing=\"true\" allowfullscreen=\"true\" allowscriptaccess=\"always\" overstretch=\"true\"></embed></div>\n<h3>For Users</h3>\n<p>Experienced users will appreciate the new <strong>drag-and-drop uploader</strong>, hover menus for the navigation, the new toolbar, improved co-editing support, and the new Tumblr importer. We&#8217;ve also been thinking a ton about what the WordPress experience is like for people completely new to the software. Version 3.3 has significant improvements there with<strong> pointer tips</strong> for new features included in each update, a friendly welcome message for first-time users, and revamped help tabs throughout the interface. Finally we&#8217;ve improved the dashboard experience on the iPad and other tablets with better touch support.</p>\n<h3>For Developers</h3>\n<p>There is a ton of candy for developers as well. I&#8217;d recommend starting your exploration with the <a href=\"http://codex.wordpress.org/Function_Reference/wp_editor\">new editor API</a>, new jQuery version, better ways to hook into the help screens, more performant post-slug-only permalinks, and of course the entire list of improvements <a href=\"http://codex.wordpress.org/Version_3.3\">on the Codex</a> and <a href=\"http://core.trac.wordpress.org/milestone/3.3\">in Trac</a>.</p>\n<h3>Roll the Credits</h3>\n<p>The Credits tab on the new About WordPress screen in the WordPress dashboard provides recognition for contributors to each release, but we like to thank them here as well.</p>\n<p><a href=\"http://profiles.wordpress.org/users/aaroncampbell\">Aaron D. Campbell</a>, <a href=\"http://profiles.wordpress.org/users/jorbin\">Aaron Jorbin</a>, <a href=\"http://profiles.wordpress.org/users/adambackstrom\">Adam Backstrom</a>, <a href=\"http://profiles.wordpress.org/users/kawauso\">Adam Harley</a>, <a href=\"http://profiles.wordpress.org/users/xknown\">Alex Concha</a>, <a href=\"http://profiles.wordpress.org/users/alexkingorg\">Alex King</a>, <a href=\"http://profiles.wordpress.org/users/viper007bond\">Alex Mills (Viper007Bond)</a>, <a href=\"http://profiles.wordpress.org/users/amereservant\">amereservant</a>, <a href=\"http://profiles.wordpress.org/users/ampt\">ampt</a>, <a href=\"http://profiles.wordpress.org/users/lordandrei\">Andrei Freeman</a>, <a href=\"http://profiles.wordpress.org/users/arena\">Andre Renaut</a>, <a href=\"http://profiles.wordpress.org/users/andrewfrazier\">andrewfrazier</a>, <a href=\"http://profiles.wordpress.org/users/nacin\">Andrew Nacin</a>, <a href=\"http://profiles.wordpress.org/users/azaozz\">Andrew Ozz</a>, <a href=\"http://profiles.wordpress.org/users/andrewryno\">Andrew Ryno</a>, <a href=\"http://profiles.wordpress.org/users/andy\">Andy Skelton</a>, <a href=\"http://profiles.wordpress.org/users/lumination\">Anthony Atkinson</a>, <a href=\"http://profiles.wordpress.org/users/filosofo\">Austin Matzko</a>, <a href=\"http://profiles.wordpress.org/users/simek\">Bartosz Kaszubowski</a>, <a href=\"http://profiles.wordpress.org/users/benbalter\">Benjamin J. Balter</a>, <a href=\"http://profiles.wordpress.org/users/brandondove\">Brandon Dove</a>, <a href=\"http://profiles.wordpress.org/users/carlospaulino\">carlospaulino</a>, <a href=\"http://profiles.wordpress.org/users/caspie\">Caspie</a>, <a href=\"http://profiles.wordpress.org/users/cebradesign\">cebradesign</a>, <a href=\"http://profiles.wordpress.org/users/chexee\">Chelsea Otakan</a>, <a href=\"http://profiles.wordpress.org/users/chipbennett\">Chip Bennett</a>, <a href=\"http://profiles.wordpress.org/users/chrisbliss18\">Chris Jean</a>, <a href=\"http://profiles.wordpress.org/users/coenjacobs\">Coen Jacobs</a>, <a href=\"http://profiles.wordpress.org/users/cgrymala\">Curtiss Grymala</a>, <a href=\"http://profiles.wordpress.org/users/danielbachhuber\">Daniel Bachhuber</a>, <a href=\"http://profiles.wordpress.org/users/koopersmith\">Daryl Koopersmith</a>, <a href=\"http://profiles.wordpress.org/users/dllh\">Daryl L. L. Houston</a>, <a href=\"http://profiles.wordpress.org/users/davecpage\">David</a>, <a href=\"http://profiles.wordpress.org/users/dcowgill\">David Cowgill</a>, <a href=\"http://profiles.wordpress.org/users/dgwyer\">David Gwyer</a>, <a href=\"http://profiles.wordpress.org/users/damst\">Da^MsT</a>, <a href=\"http://profiles.wordpress.org/users/deltafactory\">deltafactory</a>, <a href=\"http://profiles.wordpress.org/users/demetris\">demetris</a>, <a href=\"http://profiles.wordpress.org/users/valendesigns\">Derek Herman</a>, <a href=\"http://profiles.wordpress.org/users/devinreams\">Devin Reams</a>, <a href=\"http://profiles.wordpress.org/users/adeptris\">Digital Raindrops</a>, <a href=\"http://profiles.wordpress.org/users/dd32\">Dion Hulse (@dd32)</a>, <a href=\"http://profiles.wordpress.org/users/ocean90\">Dominik Schilling (ocean90)</a>, <a href=\"http://profiles.wordpress.org/users/dougwrites\">Doug Provencio</a>, <a href=\"http://profiles.wordpress.org/users/dragoonis\">dragoonis</a>, <a href=\"http://profiles.wordpress.org/users/drewapicture\">DrewAPicture</a>, <a href=\"http://profiles.wordpress.org/users/cyberhobo\">Dylan Kuhn</a>, <a href=\"http://profiles.wordpress.org/users/eduplessis\">eduplessis</a>, <a href=\"http://profiles.wordpress.org/users/eightamrock\">Eightamrock</a>, <a href=\"http://profiles.wordpress.org/users/eko-fr\">eko-fr</a>, <a href=\"http://profiles.wordpress.org/users/elpie\">Elpie</a>, <a href=\"http://profiles.wordpress.org/users/elyobo\">elyobo</a>, <a href=\"http://profiles.wordpress.org/users/empireoflight\">Empireoflight</a>, <a href=\"http://profiles.wordpress.org/users/ethitter\">Erick Hitter</a>, <a href=\"http://profiles.wordpress.org/users/ericmann\">Eric Mann</a>, <a href=\"http://profiles.wordpress.org/users/ejdanderson\">Evan Anderson</a>, <a href=\"http://profiles.wordpress.org/users/evansolomon\">Evan Solomon</a>, <a href=\"http://profiles.wordpress.org/users/fonglh\">fonglh</a>, <a href=\"http://profiles.wordpress.org/users/garyc40\">garyc40</a>, <a href=\"http://profiles.wordpress.org/users/garyj\">Gary Jones</a>, <a href=\"http://profiles.wordpress.org/users/logiclord\">Gaurav Aggarwal</a>, <a href=\"http://profiles.wordpress.org/users/georgestephanis\">George Stephanis</a>, <a href=\"http://profiles.wordpress.org/users/goldenapples\">goldenapples</a>, <a href=\"http://profiles.wordpress.org/users/goto10\">goto10</a>, <a href=\"http://profiles.wordpress.org/users/hakre\">hakre</a>, <a href=\"http://profiles.wordpress.org/users/helenyhou\">Helen Hou-Sandi</a>, <a href=\"http://profiles.wordpress.org/users/iandstewart\">Ian Stewart</a>, <a href=\"http://profiles.wordpress.org/users/ipstenu\">Ipstenu</a>, <a href=\"http://profiles.wordpress.org/users/madjax\">Jackson</a>, <a href=\"http://profiles.wordpress.org/users/jacobwg\">Jacob Gillespie</a>, <a href=\"http://profiles.wordpress.org/users/jakemgold\">Jake Goldman</a>, <a href=\"http://profiles.wordpress.org/users/jamescollins\">James Collins</a>, <a href=\"http://profiles.wordpress.org/users/jane\">Jane Wells</a>, <a href=\"http://profiles.wordpress.org/users/jeremyclarke\">jeremyclarke</a>, <a href=\"http://profiles.wordpress.org/users/jayjdk\">Jesper Johansen (Jayjdk)</a>, <a href=\"http://profiles.wordpress.org/users/jgadbois\">jgadbois</a>, <a href=\"http://profiles.wordpress.org/users/jick\">Jick</a>, <a href=\"http://profiles.wordpress.org/users/joehoyle\">Joe Hoyle</a>, <a href=\"http://profiles.wordpress.org/users/johnbillion\">John Blackbourn</a>, <a href=\"http://profiles.wordpress.org/users/vegasgeek\">John Hawkins</a>, <a href=\"http://profiles.wordpress.org/users/johnonolan\">JohnONolan</a>, <a href=\"http://profiles.wordpress.org/users/johnpbloch\">John P. Bloch</a>, <a href=\"http://profiles.wordpress.org/users/duck_\">Jon Cave</a>, <a href=\"http://profiles.wordpress.org/users/koke\">Jorge Bernal</a>, <a href=\"http://profiles.wordpress.org/users/josephscott\">Joseph Scott</a>, <a href=\"http://profiles.wordpress.org/users/jtclarke\">jtclarke</a>, <a href=\"http://profiles.wordpress.org/users/yuraz\">Jurica Zuanovic</a>, <a href=\"http://profiles.wordpress.org/users/justindgivens\">Justin Givens</a>, <a href=\"http://profiles.wordpress.org/users/justinsainton\">Justin Sainton</a>, <a href=\"http://profiles.wordpress.org/users/trepmal\">Kailey Lampert (trepmal)</a>, <a href=\"http://profiles.wordpress.org/users/kevinb\">kevinB</a>, <a href=\"http://profiles.wordpress.org/users/kitchin\">kitchin</a>, <a href=\"http://profiles.wordpress.org/users/kovshenin\">Konstantin Kovshenin</a>, <a href=\"http://profiles.wordpress.org/users/tenpura\">Kuraishi</a>, <a href=\"http://profiles.wordpress.org/users/kurtpayne\">Kurt Payne</a>, <a href=\"http://profiles.wordpress.org/users/lancewillett\">Lance Willett</a>, <a href=\"http://profiles.wordpress.org/users/latz\">Latz</a>, <a href=\"http://profiles.wordpress.org/users/linuxologos\">linuxologos</a>, <a href=\"http://profiles.wordpress.org/users/lloydbudd\">Lloyd Budd</a>, <a href=\"http://profiles.wordpress.org/users/ldebrouwer\">Luc De Brouwer</a>, <a href=\"http://profiles.wordpress.org/users/lukeschlather\">lukeschlather</a>, <a href=\"http://profiles.wordpress.org/users/mako09\">Mako</a>, <a href=\"http://profiles.wordpress.org/users/settle\">Mantas Malcius</a>, <a href=\"http://profiles.wordpress.org/users/marcuspope\">MarcusPope</a>, <a href=\"http://profiles.wordpress.org/users/mark-k\">mark-k</a>, <a href=\"http://profiles.wordpress.org/users/markjaquith\">Mark Jaquith</a>, <a href=\"http://profiles.wordpress.org/users/markmcwilliams\">Mark McWilliams</a>, <a href=\"http://profiles.wordpress.org/users/markoheijnen\">Marko Heijnen</a>, <a href=\"http://profiles.wordpress.org/users/tfnab\">Martin Lormes</a>, <a href=\"http://profiles.wordpress.org/users/masonjames\">masonjames</a>, <a href=\"http://profiles.wordpress.org/users/matveb\">Matias Ventura</a>, <a href=\"http://profiles.wordpress.org/users/matt\">Matt Mullenweg</a>, <a href=\"http://profiles.wordpress.org/users/iammattthomas\">Matt Thomas</a>, <a href=\"http://profiles.wordpress.org/users/mattwiebe\">Matt Wiebe</a>, <a href=\"http://profiles.wordpress.org/users/mattyrob\">MattyRob</a>, <a href=\"http://profiles.wordpress.org/users/merty\">Mert Yazicioglu</a>, <a href=\"http://profiles.wordpress.org/users/mdawaffe\">Michael Adams (mdawaffe)</a>, <a href=\"http://profiles.wordpress.org/users/mfields\">Michael Fields</a>, <a href=\"http://profiles.wordpress.org/users/mau\">Michal &#8220;Mau&#8221; Pliska</a>, <a href=\"http://profiles.wordpress.org/users/mbijon\">Mike Bijon</a>, <a href=\"http://profiles.wordpress.org/users/dh-shredder\">Mike Schroder</a>, <a href=\"http://profiles.wordpress.org/users/dimadin\">Milan Dinic</a>, <a href=\"http://profiles.wordpress.org/users/mitchoyoshitaka\">mitchoyoshitaka</a>, <a href=\"http://profiles.wordpress.org/users/batmoo\">Mohammad Jangda</a>, <a href=\"http://profiles.wordpress.org/users/mhauan\">Morten Hauan</a>, <a href=\"http://profiles.wordpress.org/users/usermrpapa\">Mr Papa</a>, <a href=\"http://profiles.wordpress.org/users/mrtorrent\">mrtorrent</a>, <a href=\"http://profiles.wordpress.org/users/Nao\">Naoko McCracken</a>, <a href=\"http://profiles.wordpress.org/users/natebedortha\">natebedortha</a>, <a href=\"http://profiles.wordpress.org/users/nbachiyski\">Nikolay Bachiyski</a>, <a href=\"http://profiles.wordpress.org/users/olivm\">olivM</a>, <a href=\"http://profiles.wordpress.org/users/olleicua\">olleicua</a>, <a href=\"http://profiles.wordpress.org/users/otto42\">Otto</a>, <a href=\"http://profiles.wordpress.org/users/pagesimplify\">pagesimplify</a>, <a href=\"http://profiles.wordpress.org/users/paulhastings0\">paulhastings0</a>, <a href=\"http://profiles.wordpress.org/users/pavelevap\">pavelevap</a>, <a href=\"http://profiles.wordpress.org/users/petemall\">pete.mall</a>, <a href=\"http://profiles.wordpress.org/users/westi\">Peter Westwood</a>, <a href=\"http://profiles.wordpress.org/users/peterwilsoncc\">peterwilsoncc</a>, <a href=\"http://profiles.wordpress.org/users/ppaire\">ppaire</a>, <a href=\"http://profiles.wordpress.org/users/ptahdunbar\">Ptah Dunbar</a>, <a href=\"http://profiles.wordpress.org/users/r-a-y\">r-a-y</a>, <a href=\"http://profiles.wordpress.org/users/ramiy\">Rami Y</a>, <a href=\"http://profiles.wordpress.org/users/rasheed\">Rasheed Bydousi</a>, <a href=\"http://profiles.wordpress.org/users/miqrogroove\">Robert Chapin (miqrogroove)</a>, <a href=\"http://profiles.wordpress.org/users/wpmuguru\">Ron Rennick</a>, <a href=\"http://profiles.wordpress.org/users/rosshanney\">Ross Hanney</a>, <a href=\"http://profiles.wordpress.org/users/ruslany\">ruslany</a>, <a href=\"http://profiles.wordpress.org/users/ryan\">Ryan Boren</a>, <a href=\"http://profiles.wordpress.org/users/ryanhellyer\">ryanhellyer</a>, <a href=\"http://profiles.wordpress.org/users/ryanimel\">Ryan Imel</a>, <a href=\"http://profiles.wordpress.org/users/zeo\">Safirul Alredha</a>, <a href=\"http://profiles.wordpress.org/users/solarissmoke\">Samir Shah</a>, <a href=\"http://profiles.wordpress.org/users/gluten\">Sam Margulies</a>, <a href=\"http://profiles.wordpress.org/users/saracannon\">saracannon</a>, <a href=\"http://profiles.wordpress.org/users/scottbasgaard\">Scott Basgaard</a>, <a href=\"http://profiles.wordpress.org/users/sbressler\">Scott Bressler</a>, <a href=\"http://profiles.wordpress.org/users/l3rady\">Scott Cariss</a>, <a href=\"http://profiles.wordpress.org/users/scottconnerly\">scottconnerly</a>, <a href=\"http://profiles.wordpress.org/users/coffee2code\">Scott Reilly</a>, <a href=\"http://profiles.wordpress.org/users/wonderboymusic\">Scott Taylor</a>, <a href=\"http://profiles.wordpress.org/users/scribu\">scribu</a>, <a href=\"http://profiles.wordpress.org/users/sergeybiryukov\">Sergey Biryukov</a>, <a href=\"http://profiles.wordpress.org/users/designsimply\">Sheri Bigelow</a>, <a href=\"http://profiles.wordpress.org/users/simonwheatley\">Simon Wheatley</a>, <a href=\"http://profiles.wordpress.org/users/sirzooro\">sirzooro</a>, <a href=\"http://profiles.wordpress.org/users/sillybean\">Stephanie Leary</a>, <a href=\"http://profiles.wordpress.org/users/tech163\">tech163</a>, <a href=\"http://profiles.wordpress.org/users/thedeadmedic\">TheDeadMedic</a>, <a href=\"http://profiles.wordpress.org/users/tmoorewp\">Tim Moore</a>, <a href=\"http://profiles.wordpress.org/users/tomauger\">Tom Auger</a>, <a href=\"http://profiles.wordpress.org/users/ansimation\">Travis Ballard</a>, <a href=\"http://profiles.wordpress.org/users/sorich87\">Ulrich Sossou</a>, <a href=\"http://profiles.wordpress.org/users/vnsavage\">vnsavage</a>, <a href=\"http://profiles.wordpress.org/users/wpweaver\">wpweaver</a>, <a href=\"http://profiles.wordpress.org/users/wraithkenny\">WraithKenny</a>, <a href=\"http://profiles.wordpress.org/users/yoavf\">Yoav Farhi</a>, and <a href=\"http://profiles.wordpress.org/users/vanillalounge\">Ze Fontainhas</a>.</p>\n<p>As well, we&#8217;d like to give a shout out to these users who have been particularly active <a href=\"http://wordpress.org/support/\">on the support forums</a> since the release of 3.2:</p>\n<p><a href=\"http://profiles.wordpress.org/users/alchymyth\">alchymyth</a>, <a href=\"http://profiles.wordpress.org/users/andrea_r\">Andrea_r</a>, <a href=\"http://profiles.wordpress.org/users/claytonjames\">ClaytonJames</a>, <a href=\"http://profiles.wordpress.org/users/numeeja\">cubecolour</a>, <a href=\"http://profiles.wordpress.org/users/eranmiller\">Eran Miller</a>, <a href=\"http://profiles.wordpress.org/users/esmi\">esmi</a>, <a href=\"http://profiles.wordpress.org/users/fredericktownes\">Frederick Townes</a>, <a href=\"http://profiles.wordpress.org/users/govpatel\">govpatel</a>, <a href=\"http://profiles.wordpress.org/users/ipstenu\">Ipstenu</a>, <a href=\"http://profiles.wordpress.org/users/keesiemeijer\">keesiemeijer</a>, <a href=\"http://profiles.wordpress.org/users/kmessinger\">kmessinger</a>, <a href=\"http://profiles.wordpress.org/users/netweblogic\">Marcus</a>, <a href=\"http://profiles.wordpress.org/users/otto42\">Otto</a>, <a href=\"http://profiles.wordpress.org/users/peredur\">peredur</a>, <a href=\"http://profiles.wordpress.org/users/rvoodoo\">Rev. Voodoo</a>, <a href=\"http://profiles.wordpress.org/users/samboll\">Samuel B</a>, <a href=\"http://profiles.wordpress.org/users/tobiasbg\">Tobias</a>, <a href=\"http://profiles.wordpress.org/users/vtxyzzy\">vtxyzzy</a>, and <a href=\"http://profiles.wordpress.org/users/zoonini\">zoonini</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"http://wordpress.org/news/2011/12/sonny/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:44:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress 3.3 Release Candidate 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:52:\"http://wordpress.org/news/2011/12/wordpress-3-3-rc3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"http://wordpress.org/news/2011/12/wordpress-3-3-rc3/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 11 Dec 2011 00:27:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s: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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=2130\";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:364:\"The third (and hopefully final!) release candidate for WordPress 3.3 is now available. Since RC2, we&#8217;ve done a handful of last-minute tweaks and bugfixes that we felt were necessary. Our goal is to release version 3.3 early next week, so plugin and theme authors, this is your last pre-release chance to  test your plugins and themes  to find any [...]\";s: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:\"Jane Wells\";s: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:1726:\"<p>The third (and hopefully final!) release candidate for WordPress 3.3 is now available. Since RC2, we&#8217;ve done <a href=\"http://core.trac.wordpress.org/log/trunk/?action=stop_on_copy&amp;mode=stop_on_copy&amp;rev=19587&amp;stop_rev=19568&amp;limit=100\">a handful of last-minute tweaks and bugfixes</a> that we felt were necessary.</p>\n<p>Our goal is to release version 3.3 early next week, so <strong>plugin and theme authors, this is your last pre-release chance to  test your plugins and themes </strong> to find any compatibility issues before the final release. We&#8217;ve published <a href=\"http://wpdevel.wordpress.com/tag/3-3-dev-notes/\">a number of posts</a> on the development blog that explain important things you need to know as you prepare for WordPress 3.3. Please review this information immediately if you have not done so already.</p>\n<p>If you think you&#8217;ve found a bug, you can post to the <a href=\"http://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. Or, if you&#8217;re comfortable writing a reproducible bug report, file one on <a href=\"http://core.trac.wordpress.org/\">WordPress Trac</a>. Known issues that crop up will be listed <a href=\"http://core.trac.wordpress.org/report/6\">here</a>, but let&#8217;s all keep our fingers crossed for a quiet Sunday so we can get these new features into your hands early next week!</p>\n<p><em>To test WordPress 3.3, try the <a href=\"http://wordpress.org/extend/plugins/wordpress-beta-tester/\">WordPress Beta Tester plugin</a> (you’ll want &#8220;bleeding edge nightlies&#8221;). Or you can <a href=\"http://wordpress.org/wordpress-3.3-RC3.zip\">download the release candidate here</a> (zip).</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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"http://wordpress.org/news/2011/12/wordpress-3-3-rc3/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:41:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"Core Team Meetup Time\";s:7:\"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:\"http://wordpress.org/news/2011/12/core-team-meetup-time/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"http://wordpress.org/news/2011/12/core-team-meetup-time/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 11 Dec 2011 00:06: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:8:\"category\";a:1:{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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=2127\";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:352:\"It&#8217;s almost that time again, when the WordPress core development team gets together in person to review the year&#8217;s progress and talk about priorities for the coming year. Next week Matt Mullenweg, Mark Jaquith, Peter Westwood, Andrew Ozz, Andrew Nacin, Dion Hulse, Daryl Koopersmith, Jon Cave, and I will meet at Tybee Island, GA, the [...]\";s: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:\"Jane Wells\";s: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:2152:\"<p>It&#8217;s almost that time again, when the WordPress core development team gets together in person to review the year&#8217;s progress and talk about priorities for the coming year. Next week <a href=\"http://profiles.wordpress.org/users/matt\">Matt Mullenweg</a>, <a href=\"http://profiles.wordpress.org/users/markjaquith\">Mark Jaquith</a>, <a href=\"http://profiles.wordpress.org/users/westi\">Peter Westwood</a>, <a href=\"http://profiles.wordpress.org/users/azaozz\">Andrew Ozz</a>, <a href=\"http://profiles.wordpress.org/users/nacin\">Andrew Nacin</a>, <a href=\"http://profiles.wordpress.org/users/dd32\">Dion Hulse</a>, <a href=\"http://profiles.wordpress.org/users/koopersmith\">Daryl Koopersmith</a>, <a href=\"http://profiles.wordpress.org/users/duck_\">Jon Cave</a>, and <a href=\"http://profiles.wordpress.org/users/jane\">I</a> will meet at Tybee Island, GA, the same location as the last meetup.</p>\n<p>Last year we wanted to do a video town hall, but ran into technical and scheduling difficulties. This year we&#8217;re planning ahead, and will definitely make it happen. <a title=\"Questions thread\" href=\"http://wordpress.org/support/topic/core-dev-team-meetup-qa\">We&#8217;re currently taking questions</a>, and will record a series of town hall-style videos where we answer your questions. Ask about the roadmap, code, community, contributing, WordCamps, meetups, themes, plugins, features, you name it. No topic (as long as it is about WordPress) is off limits, and we&#8217;ll do our best to answer as many questions as we can while we are together. The videos will be posted to this blog and archived at <a href=\"http://wordpress.tv\">WordPress.tv</a>.</p>\n<p>Last year the people who were in attendance also posted pictures and updates to Twitter using the <a title=\"#wptybee on Twitter\" href=\"https://twitter.com/#!/search?q=%23wptybee\">#wptybee</a> tag. We&#8217;ll use the same tag this year, so if you&#8217;re interested in following along, add it to your Twitter client as a search.</p>\n<p>What do you want to know from us? <a title=\"Questions thread\" href=\"http://wordpress.org/support/topic/core-dev-team-meetup-qa\">Ask away</a>!</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"http://wordpress.org/news/2011/12/core-team-meetup-time/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:44:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress 3.3 Release Candidate 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:68:\"http://wordpress.org/news/2011/12/wordpress-3-3-release-candidate-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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"http://wordpress.org/news/2011/12/wordpress-3-3-release-candidate-2/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 07 Dec 2011 06:26: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:2:{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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=2119\";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:349:\"The second release candidate for WordPress 3.3 is now available! As the first release candidate was well-received, we think we&#8217;re really close to a final release. Primarily, we&#8217;ve ensured that new toolbar (the admin bar in 3.2) has a consistent appearance across all browsers, and the API for developers is now final. You can check [...]\";s: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:\"Andrew Nacin\";s: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:2123:\"<p>The second release candidate for WordPress 3.3 is now available!</p>\n<p>As the first release candidate was well-received, we think we&#8217;re <em>really</em> close to a final release. Primarily, we&#8217;ve ensured that new toolbar (the admin bar in 3.2) has a consistent appearance across all browsers, and the API for developers is now final. You can check our bug tracker for the <a href=\"http://core.trac.wordpress.org/log/trunk?action=stop_on_copy&amp;mode=stop_on_copy&amp;rev=19567&amp;stop_rev=19531&amp;limit=100&amp;verbose=on\">complete list of changes</a>.</p>\n<p><strong>Plugin and theme authors, please test your plugins and themes now</strong>, so that if there is a compatibility issue, we can figure it out before the final release. On our development blog, we&#8217;ve published <a href=\"http://wpdevel.wordpress.com/tag/3-3-dev-notes/\">a number of posts</a> that explain important things you need to know as you prepare for WordPress 3.3.</p>\n<p>If you haven’t tested WordPress 3.3 yet, now is the time — please though, not on your live site unless you’re adventurous. Once you install RC2, you can visit About WordPress page (hover over the WordPress logo in the top left) to see an overview of what&#8217;s to come in WordPress 3.3 (and what to test, of course).</p>\n<p>If you think you&#8217;ve found a bug, you can post to the <a href=\"http://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. Or, if you&#8217;re comfortable writing a reproducible bug report, file one on <a href=\"http://core.trac.wordpress.org/\">WordPress Trac</a>. Known issues that crop up will be listed <a href=\"http://core.trac.wordpress.org/report/6\">here</a>.</p>\n<p>Enjoy!</p>\n<p><em>To test WordPress 3.3, try the <a href=\"http://wordpress.org/extend/plugins/wordpress-beta-tester/\">WordPress Beta Tester plugin</a> (you’ll want &#8220;bleeding edge nightlies&#8221;). Or you can <a href=\"http://wordpress.org/wordpress-3.3-RC2.zip\">download the release candidate here</a> (zip).</em></p>\n<p>Sometimes time slows down<br />\nbetween releases &#8211; like now<br />\nThis is RC2</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://wordpress.org/news/2011/12/wordpress-3-3-release-candidate-2/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:41:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress 3.3 Release Candidate 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:68:\"http://wordpress.org/news/2011/12/wordpress-3-3-release-candidate-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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"http://wordpress.org/news/2011/12/wordpress-3-3-release-candidate-1/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 01 Dec 2011 05:55:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s: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:33:\"http://wordpress.org/news/?p=2113\";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:334:\"Release Candidate stage means we think we&#8217;re done and are about ready to launch this version, but are doing one last check before we officially call it. So take a look, and as always, please check your themes and plugins for compatibility if you&#8217;re a developer. Stayed up late tonight, Hammering toward RC1. Now with [...]\";s: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:\"Ryan Boren\";s: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:475:\"<p>Release Candidate stage means we think we&#8217;re done and are about ready to launch this version, but are doing one last check before we officially call it. So take a look, and as always, please check your themes and plugins for compatibility if you&#8217;re a developer.</p>\n<p>Stayed up late tonight,<br />\nHammering toward RC1.<br />\nNow with more icons!</p>\n<p><a href=\"http://wordpress.org/wordpress-3.3-RC1.zip\">Download WordPress 3.3 Release Candidate 1</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://wordpress.org/news/2011/12/wordpress-3-3-release-candidate-1/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:41:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"WordPress 3.3 Beta 4 Available Now\";s:7:\"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:\"http://wordpress.org/news/2011/11/wordpress-3-3-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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"http://wordpress.org/news/2011/11/wordpress-3-3-beta-4/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 24 Nov 2011 01:44:28 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s: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:33:\"http://wordpress.org/news/?p=2106\";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:312:\"The march toward 3.3 continues! With all our major tickets closed, we are very close to a release candidate. In Beta 4 we&#8217;ve fixed a bunch of bugs, cleaned up the UI, added real text in some of the screens that still had placeholder text in Beta 3 (post-update screen, the Dashboard welcome area, new [...]\";s: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:\"Jane Wells\";s: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:817:\"<p>The march toward 3.3 continues!</p>\n<p>With all our major tickets closed, we are very close to a release candidate. In Beta 4 we&#8217;ve fixed a bunch of bugs, cleaned up the UI, added real text in some of the screens that still had placeholder text in Beta 3 (post-update screen, the Dashboard welcome area, new feature pointers), and generally tightened things up. We updated to jQuery 1.7.1 and addressed a LOT of bugs.</p>\n<p>If you are a plugin or theme developer (or distributor), please test against Beta 4 to ensure there are no issues.</p>\n<p>If you find any problems, please report them as usual. Many thanks!</p>\n<p>Thought 3 was the last?<br />\nHa ha! Beta 4 is here &#8211;<br />\nBetter get testing!</p>\n<p><a href=\"http://wordpress.org/wordpress-3.3-beta4.zip\">Download WordPress 3.3 Beta 4</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"http://wordpress.org/news/2011/11/wordpress-3-3-beta-4/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:41:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"Wherefore Art Thou, Widgets?\";s:7:\"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:61:\"http://wordpress.org/news/2011/11/wherefore-art-thou-widgets/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"http://wordpress.org/news/2011/11/wherefore-art-thou-widgets/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 20 Nov 2011 18:18: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: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:33:\"http://wordpress.org/news/?p=2097\";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:317:\"We need your opinion! One of the features we&#8217;re adding to WordPress 3.3 (currently in beta 3) is intended to reduce widget pain. Say you&#8217;re using Theme A and you have a handful of widgets set up. You switch to Theme B, and it has different widget areas, so you add/remove/edit your widgets. Then you [...]\";s: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:\"Jane Wells\";s: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:1305:\"<p>We need your opinion! One of the features we&#8217;re adding to WordPress 3.3 (currently in beta 3) is intended to reduce widget pain. Say you&#8217;re using Theme A and you have a handful of widgets set up. You switch to Theme B, and it has different widget areas, so you add/remove/edit your widgets. Then you realize that you hate Theme B. &#8220;This theme doesn&#8217;t represent my innermost soul!&#8221; you cry to the heavens. You switch back to Theme A, but because it had different widget areas, now your widgets are messed up. Argh, right? Not for long!</p>\n<p>Imagine being able to change themes and modify widgets as needed, and if you decided to go back to your old theme, it would return your widgets to how they were the last time you had that theme activated.  Sounds good, yeah? The problem we&#8217;re facing is deciding how long to save the old widget configuration, since there are so many potential workflows. If you changed From Theme A to Theme B and added more widgets over the next few weeks, if you switched back to Theme A after a month, would you still expect it to go back to the widgets from a month ago? At what point does it go from handy timesaver to unexpected widget mangler?  What do you think?</p>\n<a href=\"http://polldaddy.com/poll/5686875/\">View This Poll</a>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"http://wordpress.org/news/2011/11/wherefore-art-thou-widgets/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:44:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"Taking WordPress to War\";s:7:\"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:\"http://wordpress.org/news/2011/11/taking-wordpress-to-war/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"http://wordpress.org/news/2011/11/taking-wordpress-to-war/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 11 Nov 2011 14:54: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:8:\"category\";a:2:{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: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:33:\"http://wordpress.org/news/?p=2093\";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:\"Today is the eleventh day of the eleventh month of the (20)eleventh year, and in several parts of the world, it is a holiday related to war. In the U.S., where I live, it is Veterans Day, which honors military veterans. In much of Europe, today is Armistice Day or Remembrance Day, commemorating the armistice signed at [...]\";s: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:\"Jane Wells\";s: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:1973:\"<p>Today is the eleventh day of the eleventh month of the (20)eleventh year, and in several parts of the world, it is a holiday related to war. In the U.S., where I live, it is Veterans Day, which honors military veterans. In much of Europe, today is Armistice Day or Remembrance Day, commemorating the armistice signed at the &#8220;eleventh hour of the eleventh day of the eleventh month&#8221; of 1918 that ended the fighting on the Western Front in World War I.</p>\n<p>Whether serving in the military, living in an area of unrest or attack, having friends or family in the fray, or just being human enough to think war sucks (there&#8217;s really no gentler way to say that, is there?), war impacts most people in the world today.</p>\n<p>The mission of WordPress is to democratize publishing. Sometimes we&#8217;re fortunate enough for that to mean providing a platform for communication that helps people work toward peace in their communities and around the world. Sometimes it means providing a platform for keeping people informed and aware of the other things that are happening around the world, including the horror of wars and revolutions.</p>\n<p>At WordCamp San Francisco in August, one of the most popular and well-respected sessions was led by Teru Kuwayama of <a href=\"http://basetrack.org/\">Basetrack.org</a>. On this day of remembrance, I thought it would be good to share the video of his presentation. Not only is it a very cool example of how WordPress can be used in unexpected ways (this is not your <del datetime=\"2011-11-11T14:23:43+00:00\">father&#8217;s Oldsmobile</del> usual blog), it&#8217;s a reminder of how much work still needs to be done to move from war to peace. So here is <em>Taking WordPress to War: Basetrack.org</em>. Peace out, yo.</p>\n<p><embed src=\"http://v.wordpress.com/nuNdMtHy\" type=\"application/x-shockwave-flash\" width=\"600\" height=\"337\" allowscriptaccess=\"always\" allowfullscreen=\"true\" wmode=\"transparent\"></embed></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"http://wordpress.org/news/2011/11/taking-wordpress-to-war/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:41:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"WordPress 3.3 Beta 3 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"http://wordpress.org/news/2011/11/wordpress-3-3-beta-3-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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"http://wordpress.org/news/2011/11/wordpress-3-3-beta-3-available/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 08 Nov 2011 22:51:55 +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:65:\"http://wordpress.org/news/2011/11/wordpress-3-3-beta-3-available/\";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:307:\"Testers, Beta 3 is now available! You know the drill: use a test install, see what you can break, and report any bugs you find. There have been 200 commits since Beta 2, but at this point, betas are not adding new features &#8212; it&#8217;s all about fixing bugs, making things a little prettier, and [...]\";s: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:\"Jane Wells\";s: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:945:\"<p>Testers, Beta 3 is now available! You know the drill: use a test install, see what you can break, and report any bugs you find. There have been 200 commits since Beta 2, but at this point, betas are not adding new features &#8212; it&#8217;s all about fixing bugs, making things a little prettier, and editing text strings. </p>\n<p>As always, plugin and theme authors, PLEASE test your code against the beta so you can catch any incompatibilities now rather than after your users update their WordPress installation and find bugs for you. <strong>This time we really mean it, especially if your plugin uses jQuery.</strong> We&#8217;ve now updated to jQuery 1.7 in core, so please please pretty please check your plugins and themes against beta 3.</p>\n<p>These silly haikus &#8211;<br />\nWith so many releases,<br />\nI run out of words.</p>\n<p>Download <a href=\"http://wordpress.org/wordpress-3.3-beta3.zip\">WordPress 3.3 Beta 3</a> now.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"http://wordpress.org/news/2011/11/wordpress-3-3-beta-3-available/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:41:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 3.3 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:55:\"http://wordpress.org/news/2011/10/wordpress-3-3-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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"http://wordpress.org/news/2011/10/wordpress-3-3-beta-2/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 20 Oct 2011 02:39:28 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s: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:33:\"http://wordpress.org/news/?p=2080\";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:344:\"Changes since Beta 1: Updated the Blue theme Fixed IE7 and RTL support Improved flyout menu styling and fixed several glitches Finished the Pointers implementation Landed the dashboard Welcome box for new installs Improved contextual help styling Tweaked the admin bar a little more Fixed a bunch of bugs Consult the full change log  for [...]\";s: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:\"Ryan Boren\";s: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:917:\"<p>Changes since Beta 1:</p>\n<ul>\n<li>Updated the Blue theme</li>\n<li>Fixed IE7 and RTL support</li>\n<li>Improved flyout menu styling and fixed several glitches</li>\n<li>Finished the Pointers implementation</li>\n<li>Landed the dashboard Welcome box for new installs</li>\n<li>Improved contextual help styling</li>\n<li>Tweaked the admin bar a little more</li>\n<li>Fixed a bunch of bugs</li>\n</ul>\n<p>Consult the <a href=\"http://core.trac.wordpress.org/log/trunk/?action=stop_on_copy&amp;mode=stop_on_copy&amp;rev=&amp;stop_rev=18939&amp;limit=100\">full change log</a>  for details, and see the <a href=\"http://wordpress.org/news/2011/10/wordpress-3-3-beta-1/\">Beta 1 announcement</a> for information on how to help test Beta 2.</p>\n<blockquote><p>Welcome for the new &#8211;<br />\n3.3 at beta 2.<br />\n(IE7, woo!)</p></blockquote>\n<p>Download <a href=\"http://wordpress.org/wordpress-3.3-beta2.zip\">3.3 Beta 2</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"http://wordpress.org/news/2011/10/wordpress-3-3-beta-2/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:31:\"http://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:4:\"type\";i:128;s:7:\"headers\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Fri, 16 Dec 2011 09:24:27 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:10:\"x-pingback\";s:36:\"http://wordpress.org/news/xmlrpc.php\";s:13:\"last-modified\";s:29:\"Mon, 12 Dec 2011 22:58:50 GMT\";s:4:\"x-nc\";s:11:\"HIT luv 139\";}s:5:\"build\";s:14:\"20090627192103\";}','no'),(3543,0,'_transient_timeout_feed_b0916a3e9aaf473633d3ed3ce2a3a504','1324070670','no'),(3544,0,'_transient_feed_b0916a3e9aaf473633d3ed3ce2a3a504','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:4:\"\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:33:\"\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:3:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"link:http://bestecommerce-uk.com/ - Google Blog Search\";s:7:\"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:\"http://www.google.com/search?ie=utf-8&q=link:http://bestecommerce-uk.com/&tbm=blg&tbs=sbd: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:87:\"Your search - <b>link:http://bestecommerce-uk.com/</b> - did not match any documents.  \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://a9.com/-/spec/opensearch/1.1/\";a:3:{s:12:\"totalResults\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:10:\"startIndex\";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:12:\"itemsPerPage\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"10\";s:7:\"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\";a:9:{s:12:\"content-type\";s:28:\"text/xml; charset=ISO-8859-1\";s:4:\"date\";s:29:\"Fri, 16 Dec 2011 09:24:26 GMT\";s:7:\"expires\";s:2:\"-1\";s:13:\"cache-control\";s:18:\"private, max-age=0\";s:10:\"set-cookie\";a:2:{i:0;s:143:\"PREF=ID=9a8f9dd28409dc1c:FF=0:TM=1324027466:LM=1324027466:S=QWDTsZfF5AsJeeQr; expires=Sun, 15-Dec-2013 09:24:26 GMT; path=/; domain=.google.com\";i:1;s:212:\"NID=54=hdO9HwDct9h9J83bOgoxF6Y5DiMcGLO1wQzdsEKENvHFiCbgcKSNZyMAh0YA46QhZ027GzQJQ8w37r22-rSefFXBBKzLmcWSY_Bi-n7iyQiMuxrpAYl56AMArqNPit41; expires=Sat, 16-Jun-2012 09:24:26 GMT; path=/; domain=.google.com; HttpOnly\";}s:3:\"p3p\";s:122:\"CP=\"This is not a P3P policy! See http://www.google.com/support/accounts/bin/answer.py?hl=en&answer=151657 for more info.\"\";s:6:\"server\";s:3:\"gws\";s:16:\"x-xss-protection\";s:13:\"1; mode=block\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";}s:5:\"build\";s:14:\"20090627192103\";}','no'),(3546,0,'_transient_feed_mod_b0916a3e9aaf473633d3ed3ce2a3a504','1324027470','no'),(3563,0,'_transient_timeout_feed_1a5f760f2e2b48827d4974a60857e7c2','1324070672','no'),(3564,0,'_transient_feed_1a5f760f2e2b48827d4974a60857e7c2','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:72:\"\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:43:\"WordPress Plugins » View: Recently Updated\";s:7:\"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:\"http://wordpress.org/extend/plugins/browse/updated/\";s: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:43:\"WordPress Plugins » View: Recently Updated\";s: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:\"Fri, 16 Dec 2011 09:24: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: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:15:{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:34:\"jokerbr313 on \"Advanced Post List\"\";s:7:\"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:\"http://wordpress.org/extend/plugins/advanced-post-list/#post-30731\";s: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, 01 Oct 2011 09:18: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"30731@http://wordpress.org/extend/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:132:\"Create a large variety of post lists with easy to use advanced settings. Highly customizable for designing unique post-list designs.\";s: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:\"jokerbr313\";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:59:\"feedmeastraycat on \"Twitter Tools - Exclude Tweets in Feed\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"http://wordpress.org/extend/plugins/twitter-tools-exclude-tweets-in-feed/#post-20624\";s: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, 05 Sep 2010 19:17: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:42:\"20624@http://wordpress.org/extend/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:83:\"Small extension for the Twitter Tools plugin to exlude imported tweets in the feed.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"feedmeastraycat\";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:43:\"igoseonet on \"Nofollow Home Internal Links\"\";s:7:\"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:\"http://wordpress.org/extend/plugins/nofollow-home-internal-links/#post-32928\";s: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, 14 Dec 2011 06:39:00 +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:42:\"32928@http://wordpress.org/extend/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:\"This plugin will add the &#34;nofollow&#34; rel attribute to unimportant internal link in the homepage ,including: read more, tag cloud links,post 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:9:\"igoseonet\";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:32:\"jakob42 on \"SWTOR Server Status\"\";s:7:\"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:\"http://wordpress.org/extend/plugins/swtor-server-status/#post-32993\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 15 Dec 2011 17:20:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"32993@http://wordpress.org/extend/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:99:\"Shows the population, queue size and type (PvP, PvE, RP) of a shard (server) from the MMORPG SWTOR.\";s: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:\"jakob42\";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:32:\"1tui8 on \"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:58:\"http://wordpress.org/extend/plugins/wp-alicart/#post-31912\";s: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 2011 05:44: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"31912@http://wordpress.org/extend/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:102:\"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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"1tui8\";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:54:\"Vladimir Prelovac on \"What should we write about next\"\";s:7:\"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:79:\"http://wordpress.org/extend/plugins/what-should-we-write-about-next/#post-32990\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 15 Dec 2011 15:45: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"32990@http://wordpress.org/extend/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:\"What should we write about next allows your users to quickly leave feedback at the end of your posts.\";s: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:\"Vladimir Prelovac\";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:40:\"AgentsOfValue on \"Rate This Page 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:69:\"http://wordpress.org/extend/plugins/rate-this-page-plugin/#post-30209\";s: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, 16 Sep 2011 02:19: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"30209@http://wordpress.org/extend/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:124:\"Wikipedia Style Rate This Page Plugin - a plugin which allows registered user and visitor to rate an article posts or 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:13:\"AgentsOfValue\";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:33:\"igoseonet on \"Sitemap Navigation\"\";s:7:\"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:\"http://wordpress.org/extend/plugins/sitemap-navigation/#post-32929\";s: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, 14 Dec 2011 06:55: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:42:\"32929@http://wordpress.org/extend/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:\"Sitemap Navigation plugin can generate simple Archives/Sitemap based on your website posts and pages. This is not another XML sitemap plugin, but rath\";s: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:\"igoseonet\";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:42:\"Kreg Wallace on \"SpeakUp! Email Petitions\"\";s:7:\"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:\"http://wordpress.org/extend/plugins/speakup-email-petitions/#post-27217\";s: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, 05 Jun 2011 10:47: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"27217@http://wordpress.org/extend/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:93:\"Promote your cause and involve your community with email petitions targeted at policy makers.\";s: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:\"Kreg Wallace\";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:29:\"erikpbogaerts on \"The Slider\"\";s:7:\"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:\"http://wordpress.org/extend/plugins/the-slider/#post-32844\";s: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, 11 Dec 2011 09:29: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:42:\"32844@http://wordpress.org/extend/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:95:\"The Slider is a catchy featured content slider ideal for showcasing your products and services.\";s: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:\"erikpbogaerts\";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:44:\"Mousewel on \"Custom Affiliate Links Cloaker\"\";s:7:\"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:78:\"http://wordpress.org/extend/plugins/custom-affiliate-links-cloaker/#post-32927\";s: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, 14 Dec 2011 05:29: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:42:\"32927@http://wordpress.org/extend/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:87:\"This plugin gathers link information via web service and cloaks affiliate links on page\";s: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:\"Mousewel\";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:31:\"Travis Smith on \"Genesis Hooks\"\";s:7:\"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:61:\"http://wordpress.org/extend/plugins/genesis-hooks/#post-30602\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 27 Sep 2011 19:46: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:42:\"30602@http://wordpress.org/extend/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:81:\"Automatically displays Genesis structual hook names in the browser for all 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:12:\"Travis Smith\";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:27:\"gn_themes on \"Power slider\"\";s:7:\"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:\"http://wordpress.org/extend/plugins/power-slider/#post-32968\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 15 Dec 2011 04:00: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"32968@http://wordpress.org/extend/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:47:\"Content slider by posts from specified category\";s: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:\"gn_themes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}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:24:\"Mark Jaquith on \"Hotfix\"\";s:7:\"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:\"http://wordpress.org/extend/plugins/hotfix/#post-24281\";s: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 Feb 2011 14:20: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:42:\"24281@http://wordpress.org/extend/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:122:\"Provides unofficial fixes for selected WordPress bugs, so you don&#039;t have to wait for the next WordPress core 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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Mark Jaquith\";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:\"Internet Techies on \"Smooth Slider\"\";s:7:\"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:61:\"http://wordpress.org/extend/plugins/smooth-slider/#post-12949\";s: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 Sep 2009 15:35: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:42:\"12949@http://wordpress.org/extend/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:133:\"Smooth Slider adds a smooth content and image slideshow with customizable background and slide intervals to any location of 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:16:\"Internet Techies\";s: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:52:\"http://wordpress.org/extend/plugins/rss/view/updated\";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\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Fri, 16 Dec 2011 09:24:28 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:19:\"2011-10-01 09:18:52\";s:14:\"content-length\";s:4:\"8006\";s:4:\"x-nc\";s:11:\"HIT luv 138\";}s:5:\"build\";s:14:\"20090627192103\";}','no'),(3553,0,'_transient_timeout_feed_mod_a5420c83891a9c88ad2a4f04584a5efc','1324070671','no'),(3554,0,'_transient_feed_mod_a5420c83891a9c88ad2a4f04584a5efc','1324027471','no'),(3551,0,'_transient_timeout_feed_a5420c83891a9c88ad2a4f04584a5efc','1324070671','no'),(3552,0,'_transient_feed_a5420c83891a9c88ad2a4f04584a5efc','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:72:\"\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:39:\"WordPress Plugins » View: Most 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:51:\"http://wordpress.org/extend/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:39:\"WordPress Plugins » View: Most 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:\"Fri, 16 Dec 2011 09:13: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: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:15:{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:33:\"uberdose on \"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:65:\"http://wordpress.org/extend/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:40:\"753@http://wordpress.org/extend/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:92:\"Automatically optimizes your Wordpress blog for Search Engines (Search Engine Optimization).\";s: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: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:30:\"Alex Rabe on \"NextGEN Gallery\"\";s:7:\"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:\"http://wordpress.org/extend/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:41:\"1169@http://wordpress.org/extend/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:108:\"NextGEN Gallery is a full integrated Image Gallery plugin for WordPress with dozens of options and features.\";s: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: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:54:\"Michael Adams (mdawaffe) on \"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:55:\"http://wordpress.org/extend/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:42:\"23862@http://wordpress.org/extend/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:104:\"Supercharge your WordPress site with powerful features previously only available to WordPress.com users.\";s: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:24:\"Michael Adams (mdawaffe)\";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:36:\"Donncha O Caoimh on \"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:61:\"http://wordpress.org/extend/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:41:\"2572@http://wordpress.org/extend/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: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:36:\"Takayuki Miyoshi on \"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:61:\"http://wordpress.org/extend/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:41:\"2141@http://wordpress.org/extend/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: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:29:\"Arne on \"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:70:\"http://wordpress.org/extend/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:40:\"132@http://wordpress.org/extend/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:4:\"Arne\";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:41:\"Joost de Valk on \"WordPress SEO by Yoast\"\";s:7:\"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:\"http://wordpress.org/extend/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:41:\"8321@http://wordpress.org/extend/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:131:\"Improve your WordPress SEO: Write better content and have a fully optimized WordPress site using the WordPress SEO plugin by Yoast.\";s: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: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:66:\"mitcho (Michael ?? Erlewine) on \"Yet Another Related Posts 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:79:\"http://wordpress.org/extend/plugins/yet-another-related-posts-plugin/#post-2769\";s: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, 02 Jan 2008 13:05: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:41:\"2769@http://wordpress.org/extend/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:133:\"Display a list of related entries on your site and feeds based on a unique algorithm. Templating allows customization of the display.\";s: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:28:\"mitcho (Michael ?? Erlewine)\";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:42:\"Mike Challis on \"Fast Secure Contact Form\"\";s:7:\"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:\"http://wordpress.org/extend/plugins/si-contact-form/#post-12636\";s: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 Aug 2009 01:20: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:42:\"12636@http://wordpress.org/extend/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:131:\"A super customizable contact form that lets your visitors send you email. Blocks all automated spammers. No templates to mess with.\";s: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:\"Mike Challis\";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:38:\"Brian Colinger on \"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:66:\"http://wordpress.org/extend/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:42:\"18101@http://wordpress.org/extend/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: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:32:\"Andrew Ozz on \"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:63:\"http://wordpress.org/extend/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:41:\"2082@http://wordpress.org/extend/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:\"Enables the advanced features of TinyMCE, the WordPress WYSIWYG 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: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:38:\"Mike Challis on \"SI CAPTCHA Anti-Spam\"\";s:7:\"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:\"http://wordpress.org/extend/plugins/si-captcha-for-wordpress/#post-6731\";s: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, 21 Aug 2008 23:43: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:41:\"6731@http://wordpress.org/extend/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:\"Adds CAPTCHA anti-spam methods to WordPress on the forms for comments, registration, lost password, login, or all. For WP, WPMU, and BuddyPress.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Mike Challis\";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:37:\"J?nis Elsts on \"Broken Link Checker\"\";s:7:\"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:\"http://wordpress.org/extend/plugins/broken-link-checker/#post-2441\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 08 Oct 2007 21:35: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:41:\"2441@http://wordpress.org/extend/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:131:\"This plugin will check your posts, comments and other content for broken links and missing images, and notify you if any are found.\";s: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:\"J?nis Elsts\";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:34:\"flash gallery on \"1 Flash Gallery\"\";s:7:\"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:\"http://wordpress.org/extend/plugins/1-flash-gallery/#post-24163\";s: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 Feb 2011 14:02: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:42:\"24163@http://wordpress.org/extend/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:\"1 Flash Gallery is a Photo Gallery with slideshow function, many skins and powerfull admin to manage your image gallery without any program skills\";s: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:\"flash gallery\";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:28:\"Lester Chan on \"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:57:\"http://wordpress.org/extend/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:40:\"363@http://wordpress.org/extend/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:\"\";}}}}}}}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:52:\"http://wordpress.org/extend/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\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Fri, 16 Dec 2011 09:24:27 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:19:\"2007-03-30 20:08:18\";s:14:\"content-length\";s:4:\"7964\";s:4:\"x-nc\";s:11:\"HIT luv 138\";}s:5:\"build\";s:14:\"20090627192103\";}','no'),(3561,0,'_transient_timeout_feed_mod_867bd5c64f85878d03a060509cd2f92c','1324070672','no'),(3565,0,'_transient_timeout_feed_mod_1a5f760f2e2b48827d4974a60857e7c2','1324070672','no'),(3566,0,'_transient_feed_mod_1a5f760f2e2b48827d4974a60857e7c2','1324027472','no');
/*!40000 ALTER TABLE `wp_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_postmeta`
--

DROP TABLE IF EXISTS `wp_postmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_postmeta` (
  `meta_id` bigint(20) unsigned NOT NULL auto_increment,
  `post_id` bigint(20) unsigned NOT NULL default '0',
  `meta_key` varchar(255) default NULL,
  `meta_value` longtext,
  PRIMARY KEY  (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`)
) ENGINE=MyISAM AUTO_INCREMENT=3861 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_postmeta`
--

LOCK TABLES `wp_postmeta` WRITE;
/*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */;
INSERT INTO `wp_postmeta` VALUES (1,2,'_wp_page_template','default'),(2,4,'_wp_attached_file','2011/06/slide-3.jpg'),(3,4,'_wp_attachment_metadata','a:6:{s:5:\"width\";s:3:\"990\";s:6:\"height\";s:3:\"415\";s:14:\"hwstring_small\";s:23:\"height=\'53\' width=\'128\'\";s:4:\"file\";s:19:\"2011/06/slide-3.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:19:\"slide-3-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:19:\"slide-3-300x125.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"125\";}s:14:\"post-thumbnail\";a:3:{s:4:\"file\";s:19:\"slide-3-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(4,5,'_wp_attached_file','2011/06/slide-1.jpg'),(5,5,'_wp_attachment_metadata','a:6:{s:5:\"width\";s:3:\"990\";s:6:\"height\";s:3:\"415\";s:14:\"hwstring_small\";s:23:\"height=\'53\' width=\'128\'\";s:4:\"file\";s:19:\"2011/06/slide-1.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:19:\"slide-1-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:19:\"slide-1-300x125.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"125\";}s:14:\"post-thumbnail\";a:3:{s:4:\"file\";s:19:\"slide-1-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(6,6,'_wp_attached_file','2011/06/slide-2.jpg'),(7,6,'_wp_attachment_metadata','a:6:{s:5:\"width\";s:3:\"990\";s:6:\"height\";s:3:\"415\";s:14:\"hwstring_small\";s:23:\"height=\'53\' width=\'128\'\";s:4:\"file\";s:19:\"2011/06/slide-2.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:19:\"slide-2-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:19:\"slide-2-300x125.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"125\";}s:14:\"post-thumbnail\";a:3:{s:4:\"file\";s:19:\"slide-2-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(12,9,'_edit_last','1'),(197,110,'_wp_attached_file','2011/06/ecommerce_telephone.png'),(198,110,'_wp_attachment_metadata','a:6:{s:5:\"width\";s:3:\"198\";s:6:\"height\";s:2:\"19\";s:14:\"hwstring_small\";s:23:\"height=\'12\' width=\'128\'\";s:4:\"file\";s:31:\"2011/06/ecommerce_telephone.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:30:\"ecommerce_telephone-150x19.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:2:\"19\";}s:14:\"post-thumbnail\";a:3:{s:4:\"file\";s:30:\"ecommerce_telephone-150x19.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:2:\"19\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(13,9,'_edit_lock','1311246630:1'),(14,9,'layout','blog-layout'),(15,9,'layout_header','4d8q3srg3rok'),(16,9,'layout_footer','- Select -'),(17,9,'skin','- Select -'),(18,9,'wpautop','- Select -'),(24,12,'_edit_lock','1323961718:1'),(23,12,'_edit_last','1'),(25,12,'layout','about-ecommerce-uk-page-layout'),(26,12,'layout_header','4rfcxvvioksv'),(27,12,'layout_footer','u2x0ehy11o0'),(28,12,'skin','- Select -'),(29,12,'wpautop','- Select -'),(30,15,'_edit_last','1'),(31,15,'_edit_lock','1323704560:1'),(32,15,'layout','- Select -'),(33,15,'layout_header','- Select -'),(34,15,'layout_footer','- Select -'),(35,15,'skin','- Select -'),(36,15,'wpautop','- Select -'),(37,23,'_edit_last','1'),(38,23,'_edit_lock','1323875896:1'),(39,23,'layout','- Select -'),(40,23,'layout_header','- Select -'),(41,23,'layout_footer','- Select -'),(42,23,'skin','- Select -'),(43,23,'wpautop','- Select -'),(44,25,'_wp_attached_file','2011/06/designs.jpg'),(45,25,'_wp_attachment_metadata','a:6:{s:5:\"width\";s:3:\"206\";s:6:\"height\";s:3:\"117\";s:14:\"hwstring_small\";s:23:\"height=\'72\' width=\'128\'\";s:4:\"file\";s:19:\"2011/06/designs.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:19:\"designs-150x117.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"117\";}s:14:\"post-thumbnail\";a:3:{s:4:\"file\";s:19:\"designs-150x117.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"117\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(46,30,'_edit_last','1'),(47,30,'_edit_lock','1323961422:1'),(48,30,'layout','contact-page-layout'),(49,30,'layout_header','4gqhr7yixgok'),(50,30,'layout_footer','- Select -'),(51,30,'skin','- Select -'),(52,30,'wpautop','- Select -'),(53,30,'hide_title','1'),(175,93,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(174,93,'_menu_item_target',''),(173,93,'_menu_item_object','page'),(172,93,'_menu_item_object_id','30'),(171,93,'_menu_item_menu_item_parent','0'),(170,93,'_menu_item_type','post_type'),(73,49,'_edit_lock','1323961479:1'),(63,48,'_menu_item_type','post_type'),(64,48,'_menu_item_menu_item_parent','0'),(65,48,'_menu_item_object_id','12'),(66,48,'_menu_item_object','page'),(67,48,'_menu_item_target',''),(68,48,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(69,48,'_menu_item_xfn',''),(70,48,'_menu_item_url',''),(72,49,'_edit_last','1'),(74,49,'layout','left-sidebar-layout'),(75,49,'layout_header','40a43upfrg2v'),(76,49,'layout_footer','u2x0ehy11o0'),(77,49,'skin','- Select -'),(78,49,'wpautop','- Select -'),(79,51,'_edit_last','1'),(80,51,'_edit_lock','1322583043:1'),(81,51,'layout','- Select -'),(82,51,'layout_header','- Select -'),(83,51,'layout_footer','- Select -'),(84,51,'skin','- Select -'),(85,51,'wpautop','- Select -'),(86,53,'_edit_last','1'),(87,53,'_edit_lock','1323943907:1'),(88,53,'layout','- Select -'),(89,53,'layout_header','- Select -'),(90,53,'layout_footer','- Select -'),(91,53,'skin','- Select -'),(92,53,'wpautop','- Select -'),(180,95,'_wp_attachment_metadata','a:6:{s:5:\"width\";s:3:\"312\";s:6:\"height\";s:2:\"70\";s:14:\"hwstring_small\";s:23:\"height=\'28\' width=\'128\'\";s:4:\"file\";s:37:\"2011/06/bestecommerce-uk.com_logo.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:36:\"bestecommerce-uk.com_logo-150x70.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:2:\"70\";}s:6:\"medium\";a:3:{s:4:\"file\";s:36:\"bestecommerce-uk.com_logo-300x67.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:2:\"67\";}s:14:\"post-thumbnail\";a:3:{s:4:\"file\";s:36:\"bestecommerce-uk.com_logo-150x70.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:2:\"70\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(179,95,'_wp_attached_file','2011/06/bestecommerce-uk.com_logo.png'),(99,68,'_edit_last','1'),(100,68,'_edit_lock','1323961490:1'),(101,68,'layout','blog-layout'),(102,68,'layout_header','4rcd6k6z8nc4'),(103,68,'layout_footer','u2x0ehy11o0'),(104,68,'skin','- Select -'),(105,68,'wpautop','- Select -'),(106,71,'_edit_last','1'),(107,71,'_edit_lock','1324042945:1'),(108,71,'layout','best-ecommerce-package-layout'),(109,71,'layout_header','4r9hbluslnb0'),(110,71,'layout_footer','u2x0ehy11o0'),(111,71,'skin','- Select -'),(112,71,'wpautop','- Select -'),(113,74,'_edit_last','1'),(114,74,'_edit_lock','1324042737:1'),(115,74,'layout','best-ecommerce-package-layout'),(116,74,'layout_header','4r9hbluslnb0'),(117,74,'layout_footer','u2x0ehy11o0'),(118,74,'skin','- Select -'),(119,74,'wpautop','- Select -'),(120,74,'hide_title',''),(121,77,'_wp_attached_file','2011/06/webshop_30pro.png'),(122,77,'_wp_attachment_metadata','a:6:{s:5:\"width\";s:3:\"178\";s:6:\"height\";s:3:\"189\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'90\'\";s:4:\"file\";s:25:\"2011/06/webshop_30pro.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:25:\"webshop_30pro-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:14:\"post-thumbnail\";a:3:{s:4:\"file\";s:25:\"webshop_30pro-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(123,83,'_wp_attached_file','2011/06/webshop_30prox.png'),(124,83,'_wp_attachment_metadata','a:6:{s:5:\"width\";s:3:\"178\";s:6:\"height\";s:3:\"189\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'90\'\";s:4:\"file\";s:26:\"2011/06/webshop_30prox.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:26:\"webshop_30prox-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:14:\"post-thumbnail\";a:3:{s:4:\"file\";s:26:\"webshop_30prox-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(125,88,'_menu_item_type','post_type'),(126,88,'_menu_item_menu_item_parent','0'),(127,88,'_menu_item_object_id','71'),(128,88,'_menu_item_object','page'),(129,88,'_menu_item_target',''),(130,88,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(131,88,'_menu_item_xfn',''),(132,88,'_menu_item_url',''),(485,261,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(484,261,'_menu_item_target',''),(483,261,'_menu_item_object','page'),(482,261,'_menu_item_object_id','137'),(481,261,'_menu_item_menu_item_parent','0'),(480,261,'_menu_item_type','post_type'),(745,453,'skin','- Select -'),(746,453,'wpautop','- Select -'),(737,449,'_menu_item_url',''),(736,449,'_menu_item_xfn',''),(161,92,'_menu_item_type','post_type'),(162,92,'_menu_item_menu_item_parent','0'),(163,92,'_menu_item_object_id','74'),(164,92,'_menu_item_object','page'),(165,92,'_menu_item_target',''),(166,92,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(167,92,'_menu_item_xfn',''),(168,92,'_menu_item_url',''),(176,93,'_menu_item_xfn',''),(177,93,'_menu_item_url',''),(183,97,'_edit_last','1'),(184,97,'_edit_lock','1310123973:1'),(185,97,'layout','right-sidebar-layout'),(186,97,'layout_header','4rcd6k6z8nc4'),(187,97,'layout_footer','u2x0ehy11o0'),(188,97,'skin','- Select -'),(189,97,'wpautop','- Select -'),(191,104,'_wp_attached_file','2011/06/postimage1.jpg'),(192,104,'_wp_attachment_metadata','a:6:{s:5:\"width\";s:3:\"309\";s:6:\"height\";s:3:\"212\";s:14:\"hwstring_small\";s:23:\"height=\'87\' width=\'128\'\";s:4:\"file\";s:22:\"2011/06/postimage1.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:22:\"postimage1-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:22:\"postimage1-300x205.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"205\";}s:14:\"post-thumbnail\";a:3:{s:4:\"file\";s:22:\"postimage1-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(193,9,'_thumbnail_id','104'),(195,109,'_wp_attached_file','2011/06/bestecommerce-uk.com_logox.png'),(196,109,'_wp_attachment_metadata','a:6:{s:5:\"width\";s:3:\"312\";s:6:\"height\";s:2:\"70\";s:14:\"hwstring_small\";s:23:\"height=\'28\' width=\'128\'\";s:4:\"file\";s:38:\"2011/06/bestecommerce-uk.com_logox.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:37:\"bestecommerce-uk.com_logox-150x70.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:2:\"70\";}s:6:\"medium\";a:3:{s:4:\"file\";s:37:\"bestecommerce-uk.com_logox-300x67.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:2:\"67\";}s:14:\"post-thumbnail\";a:3:{s:4:\"file\";s:37:\"bestecommerce-uk.com_logox-150x70.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:2:\"70\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(203,117,'_wp_attached_file','2011/07/slider1a.jpg'),(204,117,'_wp_attachment_metadata','a:6:{s:5:\"width\";s:3:\"990\";s:6:\"height\";s:3:\"415\";s:14:\"hwstring_small\";s:23:\"height=\'53\' width=\'128\'\";s:4:\"file\";s:20:\"2011/07/slider1a.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:20:\"slider1a-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:20:\"slider1a-300x125.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"125\";}s:14:\"post-thumbnail\";a:3:{s:4:\"file\";s:20:\"slider1a-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(201,115,'_wp_attached_file','2011/07/bestecommerce-uk.com_logoy.png'),(202,115,'_wp_attachment_metadata','a:6:{s:5:\"width\";s:3:\"312\";s:6:\"height\";s:2:\"70\";s:14:\"hwstring_small\";s:23:\"height=\'28\' width=\'128\'\";s:4:\"file\";s:38:\"2011/07/bestecommerce-uk.com_logoy.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:37:\"bestecommerce-uk.com_logoy-150x70.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:2:\"70\";}s:6:\"medium\";a:3:{s:4:\"file\";s:37:\"bestecommerce-uk.com_logoy-300x67.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:2:\"67\";}s:14:\"post-thumbnail\";a:3:{s:4:\"file\";s:37:\"bestecommerce-uk.com_logoy-150x70.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:2:\"70\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(205,118,'_wp_attached_file','2011/07/slider3a.jpg'),(206,118,'_wp_attachment_metadata','a:6:{s:5:\"width\";s:3:\"990\";s:6:\"height\";s:3:\"415\";s:14:\"hwstring_small\";s:23:\"height=\'53\' width=\'128\'\";s:4:\"file\";s:20:\"2011/07/slider3a.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:20:\"slider3a-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:20:\"slider3a-300x125.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"125\";}s:14:\"post-thumbnail\";a:3:{s:4:\"file\";s:20:\"slider3a-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(207,119,'_wp_attached_file','2011/07/slider2a.jpg'),(208,119,'_wp_attachment_metadata','a:6:{s:5:\"width\";s:3:\"990\";s:6:\"height\";s:3:\"415\";s:14:\"hwstring_small\";s:23:\"height=\'53\' width=\'128\'\";s:4:\"file\";s:20:\"2011/07/slider2a.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:20:\"slider2a-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:20:\"slider2a-300x125.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"125\";}s:14:\"post-thumbnail\";a:3:{s:4:\"file\";s:20:\"slider2a-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(209,137,'_edit_last','1'),(210,137,'_edit_lock','1324042757:1'),(211,137,'layout','best-ecommerce-package-layout'),(212,137,'layout_header','4r9hbluslnb0'),(213,137,'layout_footer','u2x0ehy11o0'),(214,137,'skin','- Select -'),(215,137,'wpautop','- Select -'),(216,141,'_menu_item_type','post_type'),(217,141,'_menu_item_menu_item_parent','0'),(218,141,'_menu_item_object_id','137'),(219,141,'_menu_item_object','page'),(220,141,'_menu_item_target',''),(221,141,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(222,141,'_menu_item_xfn',''),(223,141,'_menu_item_url',''),(234,137,'hide_title',''),(548,331,'_wp_attached_file','2011/08/ex_annbrownlie.jpg'),(547,328,'wpautop','- Select -'),(546,328,'skin','- Select -'),(238,115,'_wp_attachment_image_alt','Best eCommerce UK'),(239,146,'_edit_last','1'),(240,146,'_edit_lock','1322570595:1'),(241,147,'_wp_attached_file','2011/07/bestconv1.jpg'),(242,147,'_wp_attachment_metadata','a:6:{s:5:\"width\";s:3:\"356\";s:6:\"height\";s:3:\"270\";s:14:\"hwstring_small\";s:23:\"height=\'96\' width=\'126\'\";s:4:\"file\";s:21:\"2011/07/bestconv1.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:21:\"bestconv1-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:21:\"bestconv1-300x227.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"227\";}s:14:\"post-thumbnail\";a:3:{s:4:\"file\";s:21:\"bestconv1-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(243,147,'_wp_attachment_image_alt','Site Conversion Graph'),(694,146,'_aioseop_description','How to help convert site visitors to sales'),(693,146,'_aioseop_keywords','Conversions, Site, Sales, Convert, Visitors, ecommerce, How, convert site visitors'),(247,146,'layout','blog-layout'),(248,146,'layout_header','4rcd6k6z8nc4'),(249,146,'layout_footer','u2x0ehy11o0'),(250,146,'skin','- Select -'),(251,146,'wpautop','- Select -'),(316,156,'_edit_lock','1324042362:1'),(695,146,'_aioseop_title','Help Convert site visitors to sales'),(301,146,'_thumbnail_id','147'),(315,156,'_edit_last','1'),(317,156,'layout','best-ecommerce-package-layout'),(318,156,'layout_header','4r9hbluslnb0'),(319,156,'layout_footer','u2x0ehy11o0'),(320,156,'skin','- Select -'),(321,156,'wpautop','- Select -'),(3860,425,'_aioseop_title','Web Design UK: Why we matter'),(331,159,'_menu_item_type','post_type'),(332,159,'_menu_item_menu_item_parent','0'),(333,159,'_menu_item_object_id','156'),(334,159,'_menu_item_object','page'),(335,159,'_menu_item_target',''),(336,159,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(337,159,'_menu_item_xfn',''),(338,159,'_menu_item_url',''),(340,156,'hide_title',''),(341,2,'_edit_lock','1322817623:1'),(342,187,'_edit_last','1'),(343,187,'_edit_lock','1322561473:1'),(1175,187,'_aioseop_description','Document outlining 5 key tips for beginners to organic SEO'),(347,187,'layout','blog-layout'),(348,187,'layout_header','4rcd6k6z8nc4'),(349,187,'layout_footer','u2x0ehy11o0'),(350,187,'skin','- Select -'),(351,187,'wpautop','- Select -'),(401,193,'_edit_last','1'),(1176,187,'_aioseop_title','Top 5 organic SEO tips for beginners'),(402,193,'_edit_lock','1324042933:1'),(403,193,'layout','full-width-layout'),(404,193,'layout_header','4r9hbluslnb0'),(405,193,'layout_footer','u2x0ehy11o0'),(406,193,'skin','- Select -'),(407,193,'wpautop','- Select -'),(699,425,'layout_header','5xsr55z7v0ho'),(700,425,'layout_footer','u2x0ehy11o0'),(701,425,'skin','- Select -'),(702,425,'wpautop','On'),(735,449,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(734,449,'_menu_item_target',''),(733,449,'_menu_item_object','page'),(732,449,'_menu_item_object_id','425'),(731,449,'_menu_item_menu_item_parent','0'),(730,449,'_menu_item_type','post_type'),(486,261,'_menu_item_xfn',''),(545,328,'layout_footer','u2x0ehy11o0'),(544,328,'layout_header','4d8q3srg3rok'),(543,328,'layout','full-width-layout'),(542,328,'_edit_lock','1323957688:1'),(541,328,'_edit_last','1'),(749,455,'_wp_attached_file','2011/11/danielgalmiche.co_.uk_.png'),(750,455,'_wp_attachment_metadata','a:6:{s:5:\"width\";s:3:\"728\";s:6:\"height\";s:3:\"505\";s:14:\"hwstring_small\";s:23:\"height=\'88\' width=\'128\'\";s:4:\"file\";s:34:\"2011/11/danielgalmiche.co_.uk_.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:34:\"danielgalmiche.co_.uk_-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:34:\"danielgalmiche.co_.uk_-300x208.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"208\";}s:14:\"post-thumbnail\";a:3:{s:4:\"file\";s:34:\"danielgalmiche.co_.uk_-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(751,455,'_wp_attachment_image_alt','web_design_example'),(755,463,'_wp_attached_file','2011/11/advert-col-right.png'),(756,463,'_wp_attachment_metadata','a:6:{s:5:\"width\";s:3:\"223\";s:6:\"height\";s:3:\"351\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'60\'\";s:4:\"file\";s:28:\"2011/11/advert-col-right.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:28:\"advert-col-right-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:28:\"advert-col-right-190x300.png\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"300\";}s:14:\"post-thumbnail\";a:3:{s:4:\"file\";s:28:\"advert-col-right-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(696,425,'_edit_last','1'),(697,425,'_edit_lock','1324046203:1'),(487,261,'_menu_item_url',''),(499,263,'_menu_item_menu_item_parent','0'),(489,262,'_menu_item_type','post_type'),(490,262,'_menu_item_menu_item_parent','0'),(491,262,'_menu_item_object_id','74'),(492,262,'_menu_item_object','page'),(493,262,'_menu_item_target',''),(494,262,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(495,262,'_menu_item_xfn',''),(496,262,'_menu_item_url',''),(498,263,'_menu_item_type','post_type'),(500,263,'_menu_item_object_id','156'),(501,263,'_menu_item_object','page'),(502,263,'_menu_item_target',''),(503,263,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(504,263,'_menu_item_xfn',''),(505,263,'_menu_item_url',''),(517,265,'_menu_item_menu_item_parent','0'),(507,264,'_menu_item_type','post_type'),(508,264,'_menu_item_menu_item_parent','0'),(509,264,'_menu_item_object_id','74'),(510,264,'_menu_item_object','page'),(511,264,'_menu_item_target',''),(512,264,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(513,264,'_menu_item_xfn',''),(514,264,'_menu_item_url',''),(516,265,'_menu_item_type','post_type'),(518,265,'_menu_item_object_id','156'),(519,265,'_menu_item_object','page'),(520,265,'_menu_item_target',''),(521,265,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(522,265,'_menu_item_xfn',''),(523,265,'_menu_item_url',''),(535,318,'_edit_lock','1323272204:1'),(525,266,'_menu_item_type','post_type'),(526,266,'_menu_item_menu_item_parent','0'),(527,266,'_menu_item_object_id','137'),(528,266,'_menu_item_object','page'),(529,266,'_menu_item_target',''),(530,266,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(531,266,'_menu_item_xfn',''),(532,266,'_menu_item_url',''),(534,318,'_edit_last','1'),(536,318,'layout','- Select -'),(537,318,'layout_header','- Select -'),(538,318,'layout_footer','- Select -'),(539,318,'skin','- Select -'),(540,318,'wpautop','- Select -'),(549,331,'_wp_attachment_metadata','a:6:{s:5:\"width\";s:3:\"728\";s:6:\"height\";s:3:\"509\";s:14:\"hwstring_small\";s:23:\"height=\'89\' width=\'128\'\";s:4:\"file\";s:26:\"2011/08/ex_annbrownlie.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:26:\"ex_annbrownlie-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:26:\"ex_annbrownlie-300x209.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"209\";}s:14:\"post-thumbnail\";a:3:{s:4:\"file\";s:26:\"ex_annbrownlie-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(550,333,'_wp_attached_file','2011/08/ex_castle.jpg'),(551,333,'_wp_attachment_metadata','a:6:{s:5:\"width\";s:3:\"728\";s:6:\"height\";s:3:\"509\";s:14:\"hwstring_small\";s:23:\"height=\'89\' width=\'128\'\";s:4:\"file\";s:21:\"2011/08/ex_castle.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:21:\"ex_castle-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:21:\"ex_castle-300x209.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"209\";}s:14:\"post-thumbnail\";a:3:{s:4:\"file\";s:21:\"ex_castle-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(552,335,'_menu_item_type','post_type'),(553,335,'_menu_item_menu_item_parent','88'),(554,335,'_menu_item_object_id','328'),(555,335,'_menu_item_object','page'),(556,335,'_menu_item_target',''),(557,335,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(558,335,'_menu_item_xfn',''),(559,335,'_menu_item_url',''),(561,336,'_wp_attached_file','2011/08/ex_woodstock.jpg'),(562,336,'_wp_attachment_metadata','a:6:{s:5:\"width\";s:3:\"728\";s:6:\"height\";s:3:\"496\";s:14:\"hwstring_small\";s:23:\"height=\'87\' width=\'128\'\";s:4:\"file\";s:24:\"2011/08/ex_woodstock.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:24:\"ex_woodstock-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:24:\"ex_woodstock-300x204.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"204\";}s:14:\"post-thumbnail\";a:3:{s:4:\"file\";s:24:\"ex_woodstock-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(563,337,'_wp_attached_file','2011/08/ex_garland.jpg'),(564,337,'_wp_attachment_metadata','a:6:{s:5:\"width\";s:3:\"728\";s:6:\"height\";s:3:\"509\";s:14:\"hwstring_small\";s:23:\"height=\'89\' width=\'128\'\";s:4:\"file\";s:22:\"2011/08/ex_garland.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:22:\"ex_garland-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:22:\"ex_garland-300x209.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"209\";}s:14:\"post-thumbnail\";a:3:{s:4:\"file\";s:22:\"ex_garland-150x150.jpg\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(698,425,'layout','web-design-layout'),(1174,187,'_aioseop_keywords','SEO, organic, top 5 tips, beginners, serch engine optimisation, optimization'),(643,356,'_edit_last','1'),(644,356,'_edit_lock','1323943896:1'),(645,356,'layout','best-ecommerce-package-layout'),(646,356,'layout_header','4r9hbluslnb0'),(647,356,'layout_footer','- Select -'),(648,356,'skin','- Select -'),(649,356,'wpautop','- Select -'),(650,372,'_wp_attached_file','2011/09/Webshop_3.0_features_list.pdf'),(651,372,'_wp_attachment_metadata','a:0:{}'),(744,453,'layout_footer','u2x0ehy11o0'),(743,453,'layout_header','5xsr55z7v0ho'),(742,453,'layout','full-width-layout'),(740,453,'_edit_lock','1323961570:1'),(739,453,'_edit_last','1'),(712,431,'_menu_item_type','post_type'),(713,431,'_menu_item_menu_item_parent','0'),(714,431,'_menu_item_object_id','68'),(715,431,'_menu_item_object','page'),(716,431,'_menu_item_target',''),(717,431,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(718,431,'_menu_item_xfn',''),(719,431,'_menu_item_url',''),(721,432,'_menu_item_type','post_type'),(722,432,'_menu_item_menu_item_parent','0'),(723,432,'_menu_item_object_id','49'),(724,432,'_menu_item_object','page'),(725,432,'_menu_item_target',''),(726,432,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(727,432,'_menu_item_xfn',''),(728,432,'_menu_item_url',''),(757,464,'_wp_attached_file','2011/07/advert-col-right.png'),(758,464,'_wp_attachment_metadata','a:6:{s:5:\"width\";s:3:\"223\";s:6:\"height\";s:3:\"351\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'60\'\";s:4:\"file\";s:28:\"2011/07/advert-col-right.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:28:\"advert-col-right-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:28:\"advert-col-right-190x300.png\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"300\";}s:14:\"post-thumbnail\";a:3:{s:4:\"file\";s:28:\"advert-col-right-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(759,470,'_wp_attached_file','2011/11/browsers.png'),(760,470,'_wp_attachment_metadata','a:6:{s:5:\"width\";s:3:\"503\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'50\' width=\'128\'\";s:4:\"file\";s:20:\"2011/11/browsers.png\";s:5:\"sizes\";a:1:{s:14:\"post-thumbnail\";a:3:{s:4:\"file\";s:20:\"browsers-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(764,478,'_edit_lock','1323958713:1'),(765,479,'_wp_attached_file','2011/11/advert-col-right1.png'),(761,470,'_wp_attachment_image_alt','search engine logos'),(766,479,'_wp_attachment_metadata','a:6:{s:5:\"width\";s:3:\"223\";s:6:\"height\";s:3:\"351\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'60\'\";s:4:\"file\";s:29:\"2011/11/advert-col-right1.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:29:\"advert-col-right1-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:29:\"advert-col-right1-190x300.png\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"300\";}s:14:\"post-thumbnail\";a:3:{s:4:\"file\";s:29:\"advert-col-right1-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(763,478,'_edit_last','1'),(762,470,'_wp_attachment_backup_sizes','a:2:{s:9:\"full-orig\";a:3:{s:5:\"width\";s:3:\"503\";s:6:\"height\";s:3:\"200\";s:4:\"file\";s:12:\"browsers.png\";}s:18:\"full-1321968109138\";a:3:{s:5:\"width\";s:3:\"251\";s:6:\"height\";s:2:\"99\";s:4:\"file\";s:27:\"browsers-e1321968038387.png\";}}'),(767,478,'layout','web-design-layout'),(768,478,'layout_header','5xsr55z7v0ho'),(769,478,'layout_footer','u2x0ehy11o0'),(770,478,'skin','- Select -'),(771,478,'wpautop','- Select -'),(817,502,'_wp_attached_file','2011/11/edinburghhearing.co_.uk_.png'),(772,491,'_menu_item_type','post_type'),(773,491,'_menu_item_menu_item_parent','48'),(774,491,'_menu_item_object_id','478'),(775,491,'_menu_item_object','page'),(776,491,'_menu_item_target',''),(777,491,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(778,491,'_menu_item_xfn',''),(779,491,'_menu_item_url',''),(3538,1091,'_menu_item_object','page'),(781,492,'_menu_item_type','post_type'),(782,492,'_menu_item_menu_item_parent','48'),(783,492,'_menu_item_object_id','453'),(784,492,'_menu_item_object','page'),(785,492,'_menu_item_target',''),(786,492,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(787,492,'_menu_item_xfn',''),(788,492,'_menu_item_url',''),(3539,1091,'_menu_item_target',''),(3537,1091,'_menu_item_object_id','328'),(3536,1091,'_menu_item_menu_item_parent','0'),(3535,1091,'_menu_item_type','post_type'),(3471,626,'_aioseop_title','Web Design UK\'s Client Testimonials'),(3486,12,'_aioseop_menulabel','Web Design Company UK'),(3485,12,'_aioseop_titleatr','Web Design Company UK'),(3367,328,'_aioseop_keywords','web design, uk, website'),(818,502,'_wp_attachment_metadata','a:6:{s:5:\"width\";s:3:\"728\";s:6:\"height\";s:3:\"494\";s:14:\"hwstring_small\";s:23:\"height=\'86\' width=\'128\'\";s:4:\"file\";s:36:\"2011/11/edinburghhearing.co_.uk_.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:36:\"edinburghhearing.co_.uk_-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:36:\"edinburghhearing.co_.uk_-300x203.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"203\";}s:14:\"post-thumbnail\";a:3:{s:4:\"file\";s:36:\"edinburghhearing.co_.uk_-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(819,503,'_wp_attached_file','2011/11/panpanbridal.co_.uk_.png'),(820,503,'_wp_attachment_metadata','a:6:{s:5:\"width\";s:3:\"728\";s:6:\"height\";s:3:\"487\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:32:\"2011/11/panpanbridal.co_.uk_.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:32:\"panpanbridal.co_.uk_-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:32:\"panpanbridal.co_.uk_-300x200.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"200\";}s:14:\"post-thumbnail\";a:3:{s:4:\"file\";s:32:\"panpanbridal.co_.uk_-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(821,504,'_wp_attached_file','2011/11/violetbankhouse.co_.uk_.png'),(822,504,'_wp_attachment_metadata','a:6:{s:5:\"width\";s:3:\"728\";s:6:\"height\";s:3:\"494\";s:14:\"hwstring_small\";s:23:\"height=\'86\' width=\'128\'\";s:4:\"file\";s:35:\"2011/11/violetbankhouse.co_.uk_.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:35:\"violetbankhouse.co_.uk_-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:35:\"violetbankhouse.co_.uk_-300x203.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"203\";}s:14:\"post-thumbnail\";a:3:{s:4:\"file\";s:35:\"violetbankhouse.co_.uk_-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(826,506,'_edit_last','1'),(827,506,'layout','web-marketing'),(828,506,'layout_header','402iget3p1qy'),(829,506,'layout_footer','u2x0ehy11o0'),(830,506,'skin','- Select -'),(831,506,'wpautop','On'),(832,506,'_edit_lock','1324028361:1'),(833,523,'_edit_last','1'),(834,523,'_edit_lock','1323943314:1'),(835,523,'layout','web-marketing'),(836,523,'layout_header','402iget3p1qy'),(837,523,'layout_footer','u2x0ehy11o0'),(838,523,'skin','- Select -'),(839,523,'wpautop','On'),(840,525,'_edit_last','1'),(841,525,'_edit_lock','1323943337:1'),(842,525,'layout','web-marketing'),(843,525,'layout_header','402iget3p1qy'),(844,525,'layout_footer','u2x0ehy11o0'),(845,525,'skin','- Select -'),(846,525,'wpautop','On'),(847,528,'_edit_last','1'),(848,528,'_edit_lock','1323943418:1'),(849,528,'layout','web-marketing'),(850,528,'layout_header','402iget3p1qy'),(851,528,'layout_footer','u2x0ehy11o0'),(852,528,'skin','- Select -'),(853,528,'wpautop','On'),(854,530,'_edit_last','1'),(855,530,'_edit_lock','1323943397:1'),(856,530,'layout','web-marketing'),(857,530,'layout_header','402iget3p1qy'),(858,530,'layout_footer','u2x0ehy11o0'),(859,530,'skin','- Select -'),(860,530,'wpautop','On'),(861,533,'_menu_item_type','post_type'),(862,533,'_menu_item_menu_item_parent','0'),(863,533,'_menu_item_object_id','530'),(864,533,'_menu_item_object','page'),(865,533,'_menu_item_target',''),(866,533,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(867,533,'_menu_item_xfn',''),(868,533,'_menu_item_url',''),(900,538,'_menu_item_type','post_type'),(870,534,'_menu_item_type','post_type'),(871,534,'_menu_item_menu_item_parent','0'),(872,534,'_menu_item_object_id','528'),(873,534,'_menu_item_object','page'),(874,534,'_menu_item_target',''),(875,534,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(876,534,'_menu_item_xfn',''),(877,534,'_menu_item_url',''),(879,535,'_menu_item_type','post_type'),(880,535,'_menu_item_menu_item_parent','0'),(881,535,'_menu_item_object_id','525'),(882,535,'_menu_item_object','page'),(883,535,'_menu_item_target',''),(884,535,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(885,535,'_menu_item_xfn',''),(886,535,'_menu_item_url',''),(901,538,'_menu_item_menu_item_parent','0'),(888,536,'_menu_item_type','post_type'),(889,536,'_menu_item_menu_item_parent','0'),(890,536,'_menu_item_object_id','523'),(891,536,'_menu_item_object','page'),(892,536,'_menu_item_target',''),(893,536,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(894,536,'_menu_item_xfn',''),(895,536,'_menu_item_url',''),(902,538,'_menu_item_object_id','506'),(903,538,'_menu_item_object','page'),(904,538,'_menu_item_target',''),(905,538,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(906,538,'_menu_item_xfn',''),(907,538,'_menu_item_url',''),(915,566,'_wp_attached_file','2011/11/webmarketing-1-col-right.png'),(916,566,'_wp_attachment_metadata','a:6:{s:5:\"width\";s:3:\"223\";s:6:\"height\";s:3:\"351\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'60\'\";s:4:\"file\";s:36:\"2011/11/webmarketing-1-col-right.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:36:\"webmarketing-1-col-right-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:36:\"webmarketing-1-col-right-190x300.png\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"300\";}s:14:\"post-thumbnail\";a:3:{s:4:\"file\";s:36:\"webmarketing-1-col-right-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(917,566,'_wp_attachment_image_alt','web marketing'),(918,567,'_wp_attached_file','2011/11/webdesign-1-col-right.png'),(919,567,'_wp_attachment_metadata','a:6:{s:5:\"width\";s:3:\"223\";s:6:\"height\";s:3:\"351\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'60\'\";s:4:\"file\";s:33:\"2011/11/webdesign-1-col-right.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:33:\"webdesign-1-col-right-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:33:\"webdesign-1-col-right-190x300.png\";s:5:\"width\";s:3:\"190\";s:6:\"height\";s:3:\"300\";}s:14:\"post-thumbnail\";a:3:{s:4:\"file\";s:33:\"webdesign-1-col-right-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(920,567,'_wp_attachment_image_alt','web design'),(1041,604,'_edit_last','1'),(1042,604,'_edit_lock','1322663317:1'),(1043,604,'layout','404-redirect-layout'),(1044,604,'layout_header','5aietn5db53y'),(1045,604,'layout_footer','u2x0ehy11o0'),(1046,604,'skin','- Select -'),(1047,604,'wpautop','- Select -'),(1048,612,'_menu_item_type','post_type'),(1049,612,'_menu_item_menu_item_parent','538'),(1050,612,'_menu_item_object_id','530'),(1051,612,'_menu_item_object','page'),(1052,612,'_menu_item_target',''),(1053,612,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1054,612,'_menu_item_xfn',''),(1055,612,'_menu_item_url',''),(1089,626,'layout','testimonials'),(1057,613,'_menu_item_type','post_type'),(1058,613,'_menu_item_menu_item_parent','538'),(1059,613,'_menu_item_object_id','528'),(1060,613,'_menu_item_object','page'),(1061,613,'_menu_item_target',''),(1062,613,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1063,613,'_menu_item_xfn',''),(1064,613,'_menu_item_url',''),(1087,626,'_edit_last','1'),(1066,614,'_menu_item_type','post_type'),(1067,614,'_menu_item_menu_item_parent','538'),(1068,614,'_menu_item_object_id','525'),(1069,614,'_menu_item_object','page'),(1070,614,'_menu_item_target',''),(1071,614,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1072,614,'_menu_item_xfn',''),(1073,614,'_menu_item_url',''),(1088,626,'_edit_lock','1323961640:1'),(1075,615,'_menu_item_type','post_type'),(1076,615,'_menu_item_menu_item_parent','538'),(1077,615,'_menu_item_object_id','523'),(1078,615,'_menu_item_object','page'),(1079,615,'_menu_item_target',''),(1080,615,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1081,615,'_menu_item_xfn',''),(1082,615,'_menu_item_url',''),(1090,626,'layout_header','1o1zf9hjyaar'),(1091,626,'layout_footer','u2x0ehy11o0'),(1092,626,'skin','- Select -'),(1093,626,'wpautop','- Select -'),(1094,628,'_menu_item_type','post_type'),(1095,628,'_menu_item_menu_item_parent','48'),(1096,628,'_menu_item_object_id','626'),(1097,628,'_menu_item_object','page'),(1098,628,'_menu_item_target',''),(1099,628,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1100,628,'_menu_item_xfn',''),(1101,628,'_menu_item_url',''),(1103,629,'_wp_attached_file','2011/11/browsers1.png'),(1104,629,'_wp_attachment_metadata','a:6:{s:5:\"width\";s:3:\"503\";s:6:\"height\";s:3:\"200\";s:14:\"hwstring_small\";s:23:\"height=\'50\' width=\'128\'\";s:4:\"file\";s:21:\"2011/11/browsers1.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:21:\"browsers1-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}s:6:\"medium\";a:3:{s:4:\"file\";s:21:\"browsers1-300x119.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"119\";}s:14:\"post-thumbnail\";a:3:{s:4:\"file\";s:21:\"browsers1-150x150.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(1105,629,'_wp_attachment_image_alt','search engine logos'),(2306,15,'_aioseop_title','Welcome to eCommerce UK'),(1125,626,'_wpsr-disable-template1','1'),(3644,137,'_wp_trash_meta_status','publish'),(1781,187,'_wp_trash_meta_status','publish'),(1145,453,'_wpsr-disable-template1','1'),(2024,523,'_wpsr-disable-template1','1'),(3189,528,'_aioseop_title','Web Design UK\'s SEO Package 4'),(3399,12,'_wpsr-disable-template2','1'),(1157,30,'_wpsr-disable-template1','1'),(1158,30,'_wpsr-disable-template2','1'),(1159,356,'_wpsr-disable-template1','1'),(1160,356,'_wpsr-disable-template2','1'),(1161,68,'_wpsr-disable-template1','1'),(2304,15,'_aioseop_keywords','ecommerce, uk, website, design'),(1163,604,'_wpsr-disable-template1','1'),(1177,679,'_wp_attached_file','2011/11/ecommerce-uk.org_logo.png'),(1178,679,'_wp_attachment_metadata','a:6:{s:5:\"width\";s:3:\"312\";s:6:\"height\";s:2:\"70\";s:14:\"hwstring_small\";s:23:\"height=\'28\' width=\'128\'\";s:4:\"file\";s:33:\"2011/11/ecommerce-uk.org_logo.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:32:\"ecommerce-uk.org_logo-150x70.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:2:\"70\";}s:6:\"medium\";a:3:{s:4:\"file\";s:32:\"ecommerce-uk.org_logo-300x67.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:2:\"67\";}s:14:\"post-thumbnail\";a:3:{s:4:\"file\";s:32:\"ecommerce-uk.org_logo-150x70.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:2:\"70\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(1179,679,'_wp_attachment_image_alt','ecommerce uk'),(3540,1091,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3443,30,'_aioseop_keywords','web design, uk, contact'),(3451,49,'_aioseop_keywords','web design, uk, website, design, ecommerce, frequently asked questions'),(3444,30,'_aioseop_title','Contact Web Design UK'),(1782,187,'_wp_trash_meta_time','1323344059'),(3598,156,'_aioseop_title','Web Design UK\'s WebShop Lite Package'),(1559,193,'_wpsr-disable-template1','1'),(2305,15,'_aioseop_description','Welcome to eCommerce UK. We offer better website design for small enterprises and help their business grow online.'),(1783,146,'_wp_trash_meta_status','publish'),(1784,146,'_wp_trash_meta_time','1323344063'),(1785,97,'_wp_trash_meta_status','publish'),(1786,97,'_wp_trash_meta_time','1323344064'),(1787,9,'_wp_trash_meta_status','publish'),(1788,9,'_wp_trash_meta_time','1323344066'),(3505,506,'_aioseop_title','Web Marketing'),(2617,506,'_wpsr-disable-template1','1'),(3503,506,'_aioseop_keywords','web design, uk, web marketing, website, search engine, search engine optimisation, on-site, off-site, seo, ecommerce'),(3160,523,'_aioseop_keywords','web design, uk, website, search engine optimisation, seo'),(3859,425,'_aioseop_description','Why and how Web Design UK can make a difference to your company.'),(3858,425,'_aioseop_keywords','web design, uk, website, designer, developer'),(3665,425,'_wpsr-disable-template1','1'),(3638,71,'_aioseop_description','Website designer packages from Web Design UK.'),(2898,137,'_aioseop_description','Our standard web design package, for companies looking to start online sales.'),(2899,137,'_aioseop_title','Web Design UK\'s WebShop Standard Package'),(3596,156,'_aioseop_keywords','web design, uk, starter, small business, webshop, website'),(3597,156,'_aioseop_description','Our started package for small companies needing a professionally designed website.'),(3534,74,'_aioseop_title','Web Design UK\'s WebShop Pro package'),(3533,74,'_aioseop_description','Our best web design package for companies making online sales a major part of their business model.'),(3639,71,'_aioseop_title','Web Design UK Packages'),(3162,523,'_aioseop_title','Web Design UK\'s SEO Package 1'),(3161,523,'_aioseop_description','Web Design UK\'s SEO package 1 and what it offers.'),(3171,525,'_aioseop_title','Web Design UK\'s SEO Package 2'),(3178,530,'_aioseop_keywords','web design, uk, website, search engine optimisation, seo'),(3179,530,'_aioseop_description','Web Design UK\'s SEO package 3 and what it offers.'),(3180,530,'_aioseop_title','Web Design UK\'s SEO Package 3'),(3190,1053,'_menu_item_type','post_type'),(3188,528,'_aioseop_description','Web Design UK\'s SEO package 4 and what it offers.'),(3187,528,'_aioseop_keywords','web design, uk, website, search engine optimisation, seo'),(3170,525,'_aioseop_description','Web Design UK\'s SEO package 2 and what it offers.'),(3484,12,'_aioseop_title','The Web Design Company UK'),(3483,12,'_aioseop_description','Webdesign company UK designs and promotes websites for businesses with an emphasis on quality of products and great support.'),(3469,626,'_aioseop_keywords','web design, uk, testimonial'),(3368,328,'_aioseop_description','Some of the e-commerce websites designed by eCommerce UK for companies intending to sell their goods online.'),(3369,328,'_aioseop_title','Some e-commerce websites from Web Design UK'),(3453,49,'_aioseop_title','Frequently asked questions about Web Design UK'),(3452,49,'_aioseop_description','Web Design UK gives concise answers to the questions that customers most often ask about website design and search engine optimisation.'),(3462,453,'_aioseop_title','Examples of Website Design from Web Design UK'),(3461,453,'_aioseop_description','Some of the websites that Web Design UK has developed for clients.'),(3460,453,'_aioseop_keywords','web design, uk, website, design'),(3482,12,'_aioseop_keywords','Web Design Company UK, website, design'),(3360,478,'_aioseop_title','Web Design UK\'s procedure to develop websites'),(3359,478,'_aioseop_description','The process we follow when designing a website for a client, divided into 5 steps.'),(2146,528,'_wpsr-disable-template1','1'),(2288,15,'_wpsr-disable-template1','1'),(2300,15,'_wpsr-disable-template2','1'),(2309,916,'_wp_attached_file','2011/12/webdesign-uk.org_logo.png'),(2310,916,'_wp_attachment_metadata','a:6:{s:5:\"width\";s:3:\"312\";s:6:\"height\";s:2:\"70\";s:14:\"hwstring_small\";s:23:\"height=\'28\' width=\'128\'\";s:4:\"file\";s:33:\"2011/12/webdesign-uk.org_logo.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:3:{s:4:\"file\";s:32:\"webdesign-uk.org_logo-150x70.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:2:\"70\";}s:6:\"medium\";a:3:{s:4:\"file\";s:32:\"webdesign-uk.org_logo-300x67.png\";s:5:\"width\";s:3:\"300\";s:6:\"height\";s:2:\"67\";}s:14:\"post-thumbnail\";a:3:{s:4:\"file\";s:32:\"webdesign-uk.org_logo-150x70.png\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:2:\"70\";}}s:10:\"image_meta\";a:10:{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:\"\";}}'),(2311,916,'_wp_attachment_image_alt','Web Design UK'),(3398,12,'_wpsr-disable-template1','1'),(3637,71,'_aioseop_keywords','web design, uk, website, designer, developer'),(3633,71,'_wpsr-disable-template1','1'),(3504,506,'_aioseop_description','Web Design UK offers a range of web marketing options for ecommerce websites'),(2791,328,'_wpsr-disable-template1','1'),(2681,525,'_wpsr-disable-template1','1'),(2709,530,'_wpsr-disable-template1','1'),(2801,49,'_wpsr-disable-template1','1'),(2808,974,'_menu_item_type','post_type'),(2809,974,'_menu_item_menu_item_parent','88'),(2810,974,'_menu_item_object_id','193'),(2811,974,'_menu_item_object','page'),(2812,974,'_menu_item_target',''),(2813,974,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2814,974,'_menu_item_xfn',''),(2815,974,'_menu_item_url',''),(3532,74,'_aioseop_keywords','web design, uk, advanced, small business, sme, webshop, website'),(3022,998,'_edit_last','1'),(2897,137,'_aioseop_keywords','web design, uk, standard, small business, webshop, website'),(3023,998,'_edit_lock','1324043703:1'),(3024,998,'layout','web-design-layout'),(3025,998,'layout_header','5xsr55z7v0ho'),(3026,998,'layout_footer','u2x0ehy11o0'),(3027,998,'skin','- Select -'),(3028,998,'wpautop','- Select -'),(3470,626,'_aioseop_description','Testimonials from customers of Web Design UK.'),(3069,998,'_wpsr-disable-template1','1'),(3048,1017,'_edit_last','1'),(3049,1017,'_edit_lock','1324044870:1'),(3050,1017,'layout','web-design-layout'),(3051,1017,'layout_header','5xsr55z7v0ho'),(3052,1017,'layout_footer','u2x0ehy11o0'),(3053,1017,'skin','- Select -'),(3054,1017,'wpautop','- Select -'),(3055,1019,'_menu_item_type','post_type'),(3056,1019,'_menu_item_menu_item_parent','449'),(3057,1019,'_menu_item_object_id','998'),(3058,1019,'_menu_item_object','page'),(3059,1019,'_menu_item_target',''),(3060,1019,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3061,1019,'_menu_item_xfn',''),(3062,1019,'_menu_item_url',''),(3143,998,'_aioseop_keywords','web design, uk, website, developer, designer'),(3140,1017,'_aioseop_keywords','web design, uk, website, developer, designer'),(3105,1017,'_wpsr-disable-template1','1'),(3091,1030,'_edit_last','1'),(3092,1030,'_edit_lock','1324045032:1'),(3093,1030,'layout','web-design-layout'),(3094,1030,'layout_header','5xsr55z7v0ho'),(3095,1030,'layout_footer','u2x0ehy11o0'),(3096,1030,'skin','- Select -'),(3097,1030,'wpautop','- Select -'),(3100,1030,'_wpsr-disable-template1','1'),(3642,74,'_wp_trash_meta_status','publish'),(3169,525,'_aioseop_keywords','web design, uk, website, search engine optimisation, seo'),(3191,1053,'_menu_item_menu_item_parent','449'),(3192,1053,'_menu_item_object_id','1030'),(3193,1053,'_menu_item_object','page'),(3194,1053,'_menu_item_target',''),(3195,1053,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3196,1053,'_menu_item_xfn',''),(3197,1053,'_menu_item_url',''),(3208,1055,'_menu_item_type','post_type'),(3199,1054,'_menu_item_type','post_type'),(3200,1054,'_menu_item_menu_item_parent','449'),(3201,1054,'_menu_item_object_id','1017'),(3202,1054,'_menu_item_object','page'),(3203,1054,'_menu_item_target',''),(3204,1054,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3205,1054,'_menu_item_xfn',''),(3206,1054,'_menu_item_url',''),(3209,1055,'_menu_item_menu_item_parent','0'),(3210,1055,'_menu_item_object_id','1030'),(3211,1055,'_menu_item_object','page'),(3212,1055,'_menu_item_target',''),(3213,1055,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3214,1055,'_menu_item_xfn',''),(3215,1055,'_menu_item_url',''),(3235,1058,'_menu_item_type','post_type'),(3217,1056,'_menu_item_type','post_type'),(3218,1056,'_menu_item_menu_item_parent','0'),(3219,1056,'_menu_item_object_id','1017'),(3220,1056,'_menu_item_object','page'),(3221,1056,'_menu_item_target',''),(3222,1056,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3223,1056,'_menu_item_xfn',''),(3224,1056,'_menu_item_url',''),(3236,1058,'_menu_item_menu_item_parent','0'),(3226,1057,'_menu_item_type','post_type'),(3227,1057,'_menu_item_menu_item_parent','0'),(3228,1057,'_menu_item_object_id','998'),(3229,1057,'_menu_item_object','page'),(3230,1057,'_menu_item_target',''),(3231,1057,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3232,1057,'_menu_item_xfn',''),(3233,1057,'_menu_item_url',''),(3237,1058,'_menu_item_object_id','626'),(3238,1058,'_menu_item_object','page'),(3239,1058,'_menu_item_target',''),(3240,1058,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3241,1058,'_menu_item_xfn',''),(3242,1058,'_menu_item_url',''),(3358,478,'_aioseop_keywords','web design, uk, website, developer, designer'),(3244,1059,'_menu_item_type','post_type'),(3245,1059,'_menu_item_menu_item_parent','0'),(3246,1059,'_menu_item_object_id','478'),(3247,1059,'_menu_item_object','page'),(3248,1059,'_menu_item_target',''),(3249,1059,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3250,1059,'_menu_item_xfn',''),(3251,1059,'_menu_item_url',''),(3541,1091,'_menu_item_xfn',''),(3253,1060,'_menu_item_type','post_type'),(3254,1060,'_menu_item_menu_item_parent','0'),(3255,1060,'_menu_item_object_id','453'),(3256,1060,'_menu_item_object','page'),(3257,1060,'_menu_item_target',''),(3258,1060,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3259,1060,'_menu_item_xfn',''),(3260,1060,'_menu_item_url',''),(3542,1091,'_menu_item_url',''),(3640,156,'_wp_trash_meta_status','publish'),(3544,1092,'_menu_item_type','post_type'),(3545,1092,'_menu_item_menu_item_parent','0'),(3546,1092,'_menu_item_object_id','193'),(3547,1092,'_menu_item_object','page'),(3548,1092,'_menu_item_target',''),(3549,1092,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3550,1092,'_menu_item_xfn',''),(3551,1092,'_menu_item_url',''),(3641,156,'_wp_trash_meta_time','1324042726'),(3643,74,'_wp_trash_meta_time','1324042748'),(3645,137,'_wp_trash_meta_time','1324042761');
/*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_posts`
--

DROP TABLE IF EXISTS `wp_posts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_posts` (
  `ID` bigint(20) unsigned NOT NULL auto_increment,
  `post_author` bigint(20) unsigned NOT NULL default '0',
  `post_date` datetime NOT NULL default '0000-00-00 00:00:00',
  `post_date_gmt` datetime NOT NULL default '0000-00-00 00:00:00',
  `post_content` longtext NOT NULL,
  `post_title` text NOT NULL,
  `post_excerpt` text NOT NULL,
  `post_status` varchar(20) NOT NULL default 'publish',
  `comment_status` varchar(20) NOT NULL default 'open',
  `ping_status` varchar(20) NOT NULL default 'open',
  `post_password` varchar(20) NOT NULL default '',
  `post_name` varchar(200) NOT NULL default '',
  `to_ping` text NOT NULL,
  `pinged` text 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` text NOT NULL,
  `post_parent` bigint(20) unsigned NOT NULL default '0',
  `guid` varchar(255) NOT NULL default '',
  `menu_order` int(11) NOT NULL default '0',
  `post_type` varchar(20) NOT NULL default 'post',
  `post_mime_type` varchar(100) NOT NULL default '',
  `comment_count` bigint(20) NOT NULL default '0',
  PRIMARY KEY  (`ID`),
  KEY `post_name` (`post_name`),
  KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
  KEY `post_parent` (`post_parent`),
  KEY `post_author` (`post_author`)
) ENGINE=MyISAM AUTO_INCREMENT=1108 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_posts`
--

LOCK TABLES `wp_posts` WRITE;
/*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */;
INSERT INTO `wp_posts` VALUES (2,1,'2011-06-30 00:00:44','2011-06-29 22:00:44','This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:\n\n<blockquote>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my blog. I live in Los Angeles, have a great dog named Jack, and I like pi&#241;a coladas. (And gettin\' caught in the rain.)</blockquote>\n\n...or something like this:\n\n<blockquote>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickies to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</blockquote>\n\nAs a new WordPress user, you should go to <a href=\"http://www.webdesign-uk.org/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!','Sample Page','','publish','closed','open','','sample-page','','','2011-10-14 14:00:44','2011-10-14 14:00:44','',0,'http://bestecommerce-uk.com/?page_id=2',0,'page','',0),(146,1,'2011-07-08 11:38:50','2011-07-08 11:38:50','There are a multitude of factors which help you convert visitors to sales on an eCommerce site. Among these are:<br /><br />\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/07/bestconv1.jpg\"><img class=\"alignright size-full wp-image-147\" title=\"bestconv1\" src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/07/bestconv1.jpg\" alt=\"Site Conversion Graph\" width=\"356\" height=\"270\" /></a>\r\n\r\n<ol>\r\n	<li> Ensure your product descriptions are accurate and informative, and give the site visitor as much information as possible on the product, so they are not left with questions in their mind about, will it fit my lounge, is there a warranty, etc.</li>\r\n	<li>Implement useful image features like multi-position views or image zoom, so the user can see as much of the product as possible.</li>\r\n	<li>Ensure that product attributes are correctly set where appropriate so that the visitor can select the options they desire.</li>\r\n	<li>Check competitor pricing on the product to ensure that you are competitive on that item.</li>\r\n	<li>Ensure a logical flow of information through your product category pages so that your visitors do not get lost.</li>\r\n</ol>\r\n\r\n\r\n','How to help convert site visitors to sales?','','trash','closed','closed','','how-to-help-convert-site-visitors-to-sales','','','2011-12-08 11:34:23','2011-12-08 11:34:23','',0,'http://bestecommerce-uk.com/?p=146',0,'post','',0),(4,1,'2011-06-29 23:15:20','2011-06-29 23:15:20','','slide-3','','inherit','open','open','','slide-3','','','2011-06-29 23:15:20','2011-06-29 23:15:20','',0,'http://bestecommerce-uk.com/wp-content/uploads/2011/06/slide-3.jpg',0,'attachment','image/jpeg',0),(5,1,'2011-06-29 23:21:53','2011-06-29 23:21:53','','slide-1','','inherit','open','open','','slide-1','','','2011-06-29 23:21:53','2011-06-29 23:21:53','',0,'http://bestecommerce-uk.com/wp-content/uploads/2011/06/slide-1.jpg',0,'attachment','image/jpeg',0),(6,1,'2011-06-29 23:30:01','2011-06-29 23:30:01','','slide-2','','inherit','open','open','','slide-2','','','2011-06-29 23:30:01','2011-06-29 23:30:01','',0,'http://bestecommerce-uk.com/wp-content/uploads/2011/06/slide-2.jpg',0,'attachment','image/jpeg',0),(110,1,'2011-06-30 21:22:55','2011-06-30 21:22:55','','ecommerce_telephone','','inherit','closed','closed','','ecommerce_telephone','','','2011-06-30 21:22:55','2011-06-30 21:22:55','',0,'http://bestecommerce-uk.com/wp-content/uploads/2011/06/ecommerce_telephone.png',0,'attachment','image/png',0),(9,1,'2011-06-29 23:54:41','2011-06-29 23:54:41','Hot tips on e-commerce SEO in 2011 are...','SEO for 2011','','trash','closed','closed','','seo-for-2011','','','2011-12-08 11:34:26','2011-12-08 11:34:26','',0,'http://bestecommerce-uk.com/?p=9',0,'post','',0),(10,1,'2011-06-29 23:54:04','2011-06-29 23:54:04','','SEO for 2011','','inherit','open','open','','9-revision','','','2011-06-29 23:54:04','2011-06-29 23:54:04','',9,'http://bestecommerce-uk.com/?p=10',0,'revision','',0),(11,1,'2011-06-29 23:54:41','2011-06-29 23:54:41','Hot tips on e-commerce SEO in 2011 are...','SEO for 2011','','inherit','open','open','','9-revision-2','','','2011-06-29 23:54:41','2011-06-29 23:54:41','',9,'http://bestecommerce-uk.com/?p=11',0,'revision','',0),(12,1,'2011-06-30 08:03:59','2011-06-30 08:03:59','As a top <strong>web design company UK</strong>, Web Design UK was formed in 2002 by a small team of ambitious programmers. As well as designing websites for businesses, we help them attract the Internet traffic they need to grow. Our emphasis is on quality of products and great support. See <a title=\"ecommerce testimonials\" href=\"http://www.webdesign-uk.org/about-us/testimonials/\">our testimonials</a> from customers who have benefitted from our services.\r\n\r\nWe have a growing record of satisfied customers that comes from our principles of designing effective, user-friendly systems with ongoing support for our customers.','About the Webdesign Company UK','','publish','closed','open','','about-webdesigncompany-uk','','','2011-12-15 15:08:37','2011-12-15 15:08:37','',0,'http://bestecommerce-uk.com/?page_id=12',0,'page','',0),(918,1,'2011-12-12 16:12:37','2011-12-12 16:12:37','Web Design UK was formed in 2002 by a small team of programmers. As well as designing websites for businesses, we help them attract the Internet traffic they need to grow. Our emphasis is on quality of products and great support. See <a title=\"ecommerce testimonials\" href=\"http://www.webdesign-uk.org/about-us/testimonials/\">our testimonials</a> from customers who have benefitted from our services.\r\n\r\nWe have a growing record of satisfied customers and we continue to follow the principles of designing good, reliable systems with ongoing support for our customers.','About Web Design UK','','inherit','closed','closed','','12-revision-19','','','2011-12-12 16:12:37','2011-12-12 16:12:37','',12,'http://www.webdesign-uk.org/2011/12/12-revision-19/',0,'revision','',0),(13,1,'2011-06-30 08:03:44','2011-06-30 08:03:44','Best Ecommerce UK was formed in 2002 with the aim of providing ecommerce solutions and services to business with an emphasis on quality of products and great support.\n\nWith a growing base of loyal happy customers we feel we have achieved that aim and continue to hold good to those early business principles of supplying good, reliable systems and support to our customers.','About Us','','inherit','open','open','','12-revision','','','2011-06-30 08:03:44','2011-06-30 08:03:44','',12,'http://bestecommerce-uk.com/?p=13',0,'revision','',0),(14,1,'2011-06-30 08:03:59','2011-06-30 08:03:59','Best Ecommerce UK was formed in 2002 with the aim of providing ecommerce solutions and services to business with an emphasis on quality of products and great support.\r\n\r\nWith a growing base of loyal happy customers we feel we have achieved that aim and continue to hold good to those early business principles of supplying good, reliable systems and support to our customers.','About Us','','inherit','open','open','','12-revision-2','','','2011-06-30 08:03:59','2011-06-30 08:03:59','',12,'http://bestecommerce-uk.com/?p=14',0,'revision','',0),(15,1,'2011-06-30 08:36:13','2011-06-30 08:36:13','<h1>Welcome to the home of eCommerce UK</h1>\r\n<p>eCommerce UK was formed in 2002 by a small team of programmers. Our aim at the time was to provide a website design service to business with an emphasis on quality of products and great support, and that remains our aim today.</p>\r\n\r\n<p>ECommerce means reaching new customers through the Internet. Every company can benefit from it, but a real presence on-line requires more than a website. Designing and managing a website is as demanding in effort and expertise as any aspect of marketing, which is why our company exists as an outsourcing service for small and medium enterprises.</p>\r\n\r\n<p>Once we have considered your target market, we can build an attractive, user-friendly website that customers will want to read. We will also fine-tune the site so that it will feature prominently in Internet searches for your line of services, and help with adding good on-line content that draws in further attention. The process is ongoing and never really finished, which is why we stay with our clients for months and we do not stop our efforts before they have a good base on which to grow.</p>\r\n\r\n<p>We offer a range of services and prices, but remember you are not buying a pre-made package; you will have a lasting and rewarding relationship with an experienced team during which we will craft a customised service suited for your firm alone. See <a title=\"ecommerce testimonials\" href=\"../about-us/testimonials/\">our testimonials</a>.</p>\r\n\r\n<p>We encourage you to see what we offer and to contact us with any queries you may have. We can be of help for all your eCommerce needs.</p>','Welcome to eCommerce UK','','publish','closed','closed','','homebody','','','2011-12-09 15:59:45','2011-12-09 15:59:45','',0,'http://bestecommerce-uk.com/?page_id=15',0,'page','',0),(16,1,'2011-06-30 08:35:57','2011-06-30 08:35:57','<pre><code>[one_half]First column of content.[/one_half]\n[one_half_last]Last column of content.[/one_half_last]</code></pre>','HomeBody','','inherit','closed','closed','','15-revision','','','2011-06-30 08:35:57','2011-06-30 08:35:57','',15,'http://bestecommerce-uk.com/?p=16',0,'revision','',0),(17,1,'2011-12-09 15:40:44','2011-12-09 15:40:44','<h1>Welcome to the home of eCommerce UK</h1>\n<p>eCommerce UK was formed in 2002 by a small team of programmers. Our aim at the time was to provide a website design service to business with an emphasis on quality of products and great support, and that remains our aim today.</p>\n\n<p>ECommerce means reaching new customers through the Internet. Every company can benefit from it, but a real presence on-line requires more than a website. Designing and managing a website is as demanding in effort and expertise as any aspect of marketing, which is why our company exists as an outsourcing service for small and medium enterprises.</p>\n\n<p>Once we have considered your target market, we can build an attractive, user-friendly website that customers will want to read. We will also fine-tune the site so that it will feature prominently in Internet searches for your line of services, and help with adding good on-line content that draws in further attention. The process is ongoing and never really finished, which is why we stay with our clients for months and we do not stop our efforts before they have a good base on which to grow.</p>\n\n<p>We offer a range of services and prices, but remember you are not buying a pre-made package; you will have a lasting and rewarding relationship with an experienced team during which we will craft a customised service suited for your firm alone. See <a title=\"ecommerce testimonials\" href=\"../about-us/testimonials/\">our testimonials</a>.</p>\n\n<p>We encourage you to see what we offer and to contact us with any queries you may have. We can be of help for all your eCommerce needs.</p>','Welcome to eCommerce UK','','inherit','closed','closed','','15-autosave','','','2011-12-09 15:40:44','2011-12-09 15:40:44','',15,'http://bestecommerce-uk.com/?p=17',0,'revision','',0),(18,1,'2011-06-30 08:36:13','2011-06-30 08:36:13','<pre><code>[one_half]First column of content.[/one_half]\r\n[one_half_last]Last column of content.[/one_half_last]</code></pre>','HomeBody','','inherit','closed','closed','','15-revision-2','','','2011-06-30 08:36:13','2011-06-30 08:36:13','',15,'http://bestecommerce-uk.com/?p=18',0,'revision','',0),(23,1,'2011-06-30 09:20:35','2011-06-30 09:20:35','[tabs]\r\n	[tab title=\"What we offer\"]<h3>Webshop 3.0</h3> \r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" class=\"styled-image popup alignright\" title=\"Click to enlarge\" rel=\"tab-1\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" width=\"206\" height=\"117\" alt=\"Click to enlarge\" class=\"alignright\" /></a>\r\n<p>We offer Lite, Standard and Pro packages, suited for different budgets and business models or sizes. All packages include full Webshop 3.0, a fixed number of product uploads plus a monthly support and maintenance fee.</p>[/tab]\r\n	[tab title=\"What we do\"][bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Implementing e-commerce</li>\r\n                <li>Designing website </li>\r\n		<li>Search engine optimisation</li>\r\n	</ul>\r\n[/bullet_list][/tab]\r\n	[tab title=\"Our ongoing help\"]\r\n<p>Our work does not stop when the website goes live. Our support and maintenance agreement binds us to fix any problem with the site or hosted services at no extra cost. This does not include changes to site content or product maintenance. We will train you in these areas beforehand, or this can be carried out on an hourly rate basis.</p>[/tab]\r\n[/tabs]','HomeTabs','','publish','closed','closed','','hometabs','','','2011-12-14 15:18:15','2011-12-14 15:18:15','',0,'http://bestecommerce-uk.com/?page_id=23',0,'page','',0),(20,1,'2011-06-30 09:02:41','2011-06-30 09:02:41','[one_half]\r\nCurabitur sagittis placerat volutpat. In lore. Vestingue js venenatisdum  pretium. Morbi  odio, vitae consectetur justo. Maecenas sodales auctor dolor, \r\nid laoreet  arcu dignissim nec. Nunc interdum sagittis arcu, rhoncus convallis  augue pulvinar non. Mauris commodo bibendum magna nec commodo. Donec  \r\ngravida lobortis suscipit. Sed neque sapien, convallis id blandit ac,  euismod et dui.Sed blandit mattis risus, in dictum odio elementum vitae. \r\nAenean  sagittis urna eu velit feugiat sit amet pouris non enim malesuada et tincidunt nulla porta.  Suspendisse sit amet sem id lacus commodo conval\r\nlis in at nisl. Sed  facilisis iaculis mauris eu lacinia. Maecenas eu ultrices risus..[/one_half]\r\n[one_half_last]\r\n[tabs]\r\n	[tab title=\"Tab Title\"]Tab content...[/tab]\r\n	[tab title=\"Tab Title\"]Tab content...[/tab]\r\n	[tab title=\"Tab Title\"]Tab content...[/tab]\r\n[/tabs]\r\n[/one_half_last]','HomeBody','','inherit','closed','closed','','15-revision-4','','','2011-06-30 09:02:41','2011-06-30 09:02:41','',15,'http://bestecommerce-uk.com/?p=20',0,'revision','',0),(22,1,'2011-06-30 09:05:37','2011-06-30 09:05:37','[one_third]First column of content.[/one_third]\r\n[one_third]Second column of content.[/one_third]\r\n[one_third_last]Last column of content.[/one_third_last]','HomeBody','','inherit','closed','closed','','15-revision-6','','','2011-06-30 09:05:37','2011-06-30 09:05:37','',15,'http://bestecommerce-uk.com/?p=22',0,'revision','',0),(382,1,'2011-09-12 15:32:14','2011-09-12 15:32:14','[tabs]\r\n	[tab title=\"Our Packages\"]<h3>Webshop 3.0</h3> \r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" class=\"styled-image popup alignright\" title=\"Click me to enlarge!\" rel=\"tab-1\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" width=\"206\" height=\"117\" alt=\"Click me to enlarge!\" class=\"alignright\" /></a>\r\n<p>We have 3 packages on offer Lite, Standard and Pro each aimed at different entry levels. All packages include full Webshop 3.0, a fixed number of product uploads plus a monthly support and maintenance cost.</p>[/tab]\r\n	[tab title=\"Our Capabilities\"][bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n	</ul>\r\n[/bullet_list][/tab]\r\n	[tab title=\"Our Support\"]Tab content...[/tab]\r\n[/tabs]','HomeTabs','','inherit','closed','closed','','23-revision-5','','','2011-09-12 15:32:14','2011-09-12 15:32:14','',23,'http://bestecommerce-uk.com/2011/09/23-revision-5/',0,'revision','',0),(24,1,'2011-06-30 09:20:32','2011-06-30 09:20:32','[tabs]\n	[tab title=\"Our Packages\"]Curabitur sagittis placerat volutpat. Integer vitae sapien ipsum. Aliquam mi diam, convallis in fermentum a, blandit vel lorem. Mauris elit erat, dignissim id ultrices a, mattis ut nibh. Vestibulum ultricies, nisl ac aliquet molestie, sapien dolor congue justo, nec laoreet justo massa ut turpis. Vivamus imperdiet arcu ut augue aliquam ac viverra diam convallis. Sed at ornare sapien. Duis venenatis posuere tortor, in cursus urna hendrerit eu. Sed quis diam non massa interdum pretium. Morbi vitae arcu ut nulla luctus facilisis. Mauris vitae risus odio, vitae consectetur justo. Maecenas sodales auctor dolor, id laoreet arcu dignissim nec. Nunc interdum sagittis arcu, rhoncus convallis augue pulvinar non. Mauris commodo bibendum magna nec commodo. Donec gravida lobortis suscipit. Sed neque sapien, convallis id blandit ac, euismod et dui.[/tab]\n	[tab title=\"Our Capabilities\"]Curabitur sagittis placerat volutpat. Integer vitae sapien ipsum. Aliquam mi diam, convallis in fermentum a, blandit vel lorem. Mauris elit erat, dignissim id ultrices a, mattis ut nibh. Vestibulum ultricies, nisl ac aliquet molestagittis arcu, rhoncus convallis augue pulvinar non. Mauris commodo bibendum magna nec commodo. Donec gravida lobortis suscipit. Sed neque sapien, convallis id blandit ac, euismod et dui.[/tab]\n	[tab title=\"Our Support\"]Tab content...[/tab]\n[/tabs]','HomeTabs','','inherit','closed','closed','','23-revision','','','2011-06-30 09:20:32','2011-06-30 09:20:32','',23,'http://bestecommerce-uk.com/?p=24',0,'revision','',0),(21,1,'2011-06-30 09:04:33','2011-06-30 09:04:33','[one_half]\r\nCurabitur sagittis placerat volutpat. In lore. Vestingue js venenatisdum  pretium. Morbi  odio, vitae consectetur justo. Maecenas sodales auctor dolor, \r\nid laoreet  arcu dignissim nec. Nunc interdum sagittis arcu, rhoncus convallis  augue pulvinar non. Mauris commodo bibendum magna nec commodo. Donec  \r\ngravida lobortis suscipit. Sed neque sapien, convallis id blandit ac,  euismod et dui.Sed blandit mattis risus, in dictum odio elementum vitae. \r\nAenean  sagittis urna eu velit feugiat sit amet pouris non enim malesuada et tincidunt nulla porta.  Suspendisse sit amet sem id lacus commodo conval\r\nlis in at nisl. Sed  facilisis iaculis mauris eu lacinia. Maecenas eu ultrices risus..[/one_half]\r\n[one_half_last]\r\n[tabs]\r\n	[tab title=\"Tab Title\"]Tab content...[/tab]\r\n	[tab title=\"Tab Title\"]Tab content...[/tab]\r\n	[tab title=\"Tab Title\"]Tab content...[/tab]\r\n[/tabs]\r\n[/one_half_last]\r\n\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n	</ul>\r\n[/bullet_list]','HomeBody','','inherit','closed','closed','','15-revision-5','','','2011-06-30 09:04:33','2011-06-30 09:04:33','',15,'http://bestecommerce-uk.com/?p=21',0,'revision','',0),(19,1,'2011-06-30 08:59:21','2011-06-30 08:59:21','<pre><code>[one_half]</code>\r\nCurabitur sagittis placerat volutpat. Integer vitae sapien ipsum.  Aliquam mi diam, convallis in fermentum a, blandit vel lorem. Mauris  elit erat, dignissim id ultrices a, mattis ut nibh. Vestibulum  ultricies, nisl ac aliquet molestie, sapien dolor congue justo, nec  laoreet justo massa ut turpis. Vivamus imperdiet arcu ut augue aliquam  ac viverra diam convallis. Sed at ornare sapien. Duis venenatis posuere  tortor, in cursus urna hendrerit eu. Sed quis diam non massa interdum  pretium. Morbi vitae arcu ut nulla luctus facilisis. Mauris vitae risus  odio, vitae consectetur justo. Maecenas sodales auctor dolor, id laoreet  arcu dignissim nec. Nunc interdum sagittis arcu, rhoncus convallis  augue pulvinar non. Mauris commodo bibendum magna nec commodo. Donec  gravida lobortis suscipit. Sed neque sapien, convallis id blandit ac,  euismod et dui.Sed blandit mattis risus, in dictum odio elementum vitae. Aenean  sagittis urna eu velit feugiat sit amet porttitor tellus luctus. Cras  porttitor ultrices ligula id iaculis. Nam auctor leo dictum purus porta  fringilla. Proin a mattis urna. Donec aliquet felis non elit vestibulum  eu convallis nunc viverra. Aliquam congue mi tincidunt felis gravida a  euismod velit sollicitudin. Nulla vel justo urna. Nulla dapibus  pellentesque orci, eget vulputate mauris fermentum adipiscing. Ut  lobortis varius enim a vehicula. Vestibulum eu consequat nulla.  Suspendisse consectetur nulla id lorem auctor sed tristique risus  dignissim. Donec dictum condimentum mauris, eu scelerisque sem semper  nec. Curabitur neque magna, scelerisque ut lacinia in, pulvinar sed sem.  In luctus mauris non enim malesuada et tincidunt nulla porta.  Suspendisse sit amet sem id lacus commodo convallis in at nisl. Sed  facilisis iaculis mauris eu lacinia. Maecenas eu ultrices risus..[/one_half]\r\n[one_half_last]\r\n\r\nCurabitur sagittis placerat volutpat. Integer vitae sapien ipsum.  Aliquam mi diam, convallis in fermentum a, blandit vel lorem. Mauris  elit erat, dignissim id ultrices a, mattis ut nibh. Vestibulum  ultricies, nisl ac aliquet molestie, sapien dolor congue justo, nec  laoreet justo massa ut turpis. Vivamus imperdiet arcu ut augue aliquam  ac viverra diam convallis. Sed at ornare sapien. Duis venenatis posuere  tortor, in cursus urna hendrerit eu. Sed quis diam non massa interdum  pretium. Morbi vitae arcu ut nulla luctus facilisis. Mauris vitae risus  odio, vitae consectetur justo. Maecenas sodales auctor dolor, id laoreet  arcu dignissim nec. Nunc interdum sagittis arcu, rhoncus convallis  augue pulvinar non. Mauris commodo bibendum magna nec commodo. Donec  gravida lobortis suscipit. Sed neque sapien, convallis id blandit ac,  euismod et dui.\r\n \r\nSed blandit mattis risus, in dictum odio elementum vitae. Aenean  sagittis urna eu velit feugiat sit amet porttitor tellus luctus. Cras  porttitor ultrices ligula id iaculis. Nam auctor leo dictum purus porta  fringilla. Proin a mattis urna. Donec aliquet felis non elit vestibulum  eu convallis nunc viverra. Aliquam congue mi tincidunt felis gravida a  euismod velit sollicitudin. Nulla vel justo urna. Nulla dapibus  pellentesque orci, eget vulputate mauris fermentum adipiscing. Ut  lobortis varius enim a vehicula. Vestibulum eu consequat nulla.  Suspendisse consectetur nulla id lorem auctor sed tristique risus  dignissim. Donec dictum condimentum mauris, eu scelerisque sem semper  nec. Curabitur neque magna, scelerisque ut lacinia in, pulvinar sed sem.  In luctus mauris non enim malesuada et tincidunt nulla porta.  Suspendisse sit amet sem id lacus commodo convallis in at nisl. Sed  facilisis iaculis mauris eu lacinia. Maecenas eu ultrices risus.\r\n<code>[/one_half_last]</code></pre>','HomeBody','','inherit','closed','closed','','15-revision-3','','','2011-06-30 08:59:21','2011-06-30 08:59:21','',15,'http://bestecommerce-uk.com/?p=19',0,'revision','',0),(25,1,'2011-06-30 10:31:10','2011-06-30 10:31:10','','designs','','inherit','closed','closed','','designs','','','2011-06-30 10:31:10','2011-06-30 10:31:10','',0,'http://bestecommerce-uk.com/wp-content/uploads/2011/06/designs.jpg',0,'attachment','image/jpeg',0),(26,1,'2011-06-30 09:20:35','2011-06-30 09:20:35','[tabs]\r\n	[tab title=\"Our Packages\"]Curabitur sagittis placerat volutpat. Integer vitae sapien ipsum. Aliquam mi diam, convallis in fermentum a, blandit vel lorem. Mauris elit erat, dignissim id ultrices a, mattis ut nibh. Vestibulum ultricies, nisl ac aliquet molestie, sapien dolor congue justo, nec laoreet justo massa ut turpis. Vivamus imperdiet arcu ut augue aliquam ac viverra diam convallis. Sed at ornare sapien. Duis venenatis posuere tortor, in cursus urna hendrerit eu. Sed quis diam non massa interdum pretium. Morbi vitae arcu ut nulla luctus facilisis. Mauris vitae risus odio, vitae consectetur justo. Maecenas sodales auctor dolor, id laoreet arcu dignissim nec. Nunc interdum sagittis arcu, rhoncus convallis augue pulvinar non. Mauris commodo bibendum magna nec commodo. Donec gravida lobortis suscipit. Sed neque sapien, convallis id blandit ac, euismod et dui.[/tab]\r\n	[tab title=\"Our Capabilities\"]Curabitur sagittis placerat volutpat. Integer vitae sapien ipsum. Aliquam mi diam, convallis in fermentum a, blandit vel lorem. Mauris elit erat, dignissim id ultrices a, mattis ut nibh. Vestibulum ultricies, nisl ac aliquet molestagittis arcu, rhoncus convallis augue pulvinar non. Mauris commodo bibendum magna nec commodo. Donec gravida lobortis suscipit. Sed neque sapien, convallis id blandit ac, euismod et dui.[/tab]\r\n	[tab title=\"Our Support\"]Tab content...[/tab]\r\n[/tabs]','HomeTabs','','inherit','closed','closed','','23-revision-2','','','2011-06-30 09:20:35','2011-06-30 09:20:35','',23,'http://bestecommerce-uk.com/?p=26',0,'revision','',0),(74,1,'2011-06-30 14:19:18','2011-06-30 14:19:18','<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\">\r\n<div class=\"i0 ugc\">\r\n\r\n<p>This is the premium choice for companies with a vision of an online customer base. WebShop 3.0 Pro will give you an e-commerce hub short of nothing with the Internet giants.</p>\r\n<p>We can make a website that segregates products by a range of factors, directs customers to other products they might like and add commercial links with Amazon and eBay..</p> \r\n<h2>£2999 + £60/month   </h2>\r\n<p>See here our full list of <a href=\"http://www.webdesign-uk.org/webshop-3-0-feature-list\">Webshop features</a>.</p>\r\n<p>If the offer interests you, please complete a contact form through the button below for a call back, or call us directly to tell us of your requirements.<p/>\r\n<a class=\"btn orange\" href=\"/contact-form-2\"><span>Contact Form</span></a>\r\n\r\n</div>\r\n</div>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n\r\n</div>\r\n</div>','WebShop Pro Package','','trash','closed','closed','','e-commerce-webshop-pro','','','2011-12-16 13:39:08','2011-12-16 13:39:08','',71,'http://bestecommerce-uk.com/?page_id=74',0,'page','',0),(27,1,'2011-06-30 09:17:44','2011-06-30 09:17:44','text goes here','Welcome to Best eCommerce UK','','inherit','closed','closed','','15-revision-7','','','2011-06-30 09:17:44','2011-06-30 09:17:44','',15,'http://bestecommerce-uk.com/?p=27',0,'revision','',0),(28,1,'2011-06-30 10:43:55','2011-06-30 10:43:55','Hello from the team at Best Ecommerce UK!\r\n\r\nOur e-commerce solutions aim to empower our customers to take control of their on-line presence. With ecommerce solutions from Best Ecommerce our clients have ability to manage their own ecommerce websites easily and effectively with our leading edge technology.\r\n\r\nImportantly they can develop their businesses on-line whilst being safe in the knowledge that they have the expertise of a well established web development company on-hand to support them when they need help.\r\n\r\nThat\'s right! We don\'t just build websites for our clients then leave them to it. Our structured Support Programme means we are just a phone call or a mouse click away if you need us.\r\n\r\nWe hope you like what we have to offer and encourage you to contact us with any queries you may have. We\'re sure we can be of help.','Welcome to Best eCommerce UK','','inherit','closed','closed','','15-revision-8','','','2011-06-30 10:43:55','2011-06-30 10:43:55','',15,'http://bestecommerce-uk.com/?p=28',0,'revision','',0),(29,1,'2011-06-30 10:48:58','2011-06-30 10:48:58','<h1>Welcome to Best eCommerce UK</h1>\r\nHello from the team at Best Ecommerce UK!\r\n\r\nOur e-commerce solutions aim to empower our customers to take control of their on-line presence. With ecommerce solutions from Best Ecommerce our clients have ability to manage their own ecommerce websites easily and effectively with our leading edge technology.\r\n\r\nImportantly they can develop their businesses on-line whilst being safe in the knowledge that they have the expertise of a well established web development company on-hand to support them when they need help.\r\n\r\nThat\'s right! We don\'t just build websites for our clients then leave them to it. Our structured Support Programme means we are just a phone call or a mouse click away if you need us.\r\n\r\nWe hope you like what we have to offer and encourage you to contact us with any queries you may have. We\'re sure we can be of help.','Welcome to Best eCommerce UK','','inherit','closed','closed','','15-revision-9','','','2011-06-30 10:48:58','2011-06-30 10:48:58','',15,'http://bestecommerce-uk.com/?p=29',0,'revision','',0),(30,1,'2011-06-30 10:52:50','2011-06-30 10:52:50','','Contact Us','','publish','closed','closed','','contact-us','','','2011-12-15 15:03:41','2011-12-15 15:03:41','',0,'http://bestecommerce-uk.com/?page_id=30',0,'page','',0),(31,1,'2011-06-30 10:52:34','2011-06-30 10:52:34','','Contact Us','','inherit','closed','closed','','30-revision','','','2011-06-30 10:52:34','2011-06-30 10:52:34','',30,'http://bestecommerce-uk.com/?p=31',0,'revision','',0),(32,1,'2011-06-30 10:52:50','2011-06-30 10:52:50','[contact_form]','Contact Us','','inherit','closed','closed','','30-revision-2','','','2011-06-30 10:52:50','2011-06-30 10:52:50','',30,'http://bestecommerce-uk.com/?p=32',0,'revision','',0),(33,1,'2011-06-30 10:54:07','2011-06-30 10:54:07','[contact_form]','Contact Us','','inherit','closed','closed','','30-revision-3','','','2011-06-30 10:54:07','2011-06-30 10:54:07','',30,'http://bestecommerce-uk.com/?p=33',0,'revision','',0),(35,1,'2011-06-30 11:01:02','2011-06-30 11:01:02','\r\n[one_half]First column of content.[contact_form][/one_half]\r\n[one_half_last]Last column of content.[/one_half_last]','Contact Us','','inherit','closed','closed','','30-revision-5','','','2011-06-30 11:01:02','2011-06-30 11:01:02','',30,'http://bestecommerce-uk.com/?p=35',0,'revision','',0),(34,1,'2011-06-30 10:58:34','2011-06-30 10:58:34','[contact_form]\r\n<div style=\"margin: 10px 40px 0; float: right;\"><div class=\"styled-image\"><img src=\"http:themes/mingle-wp/wp-content/uploads/map.png\" width=\"400\" height=\"500\" alt=\"\" /></div></div>','Contact Us','','inherit','closed','closed','','30-revision-4','','','2011-06-30 10:58:34','2011-06-30 10:58:34','',30,'http://bestecommerce-uk.com/?p=34',0,'revision','',0),(36,1,'2011-06-30 11:03:05','2011-06-30 11:03:05','[one_half]First column of content.[contact_form][/one_half]\r\n[one_half_last]<img src=\"themes/mingle-wp/wp-content/uploads/map.png\" width=\"400\" height=\"500\" alt=\"\" />[/one_half_last]','Contact Us','','inherit','closed','closed','','30-revision-6','','','2011-06-30 11:03:05','2011-06-30 11:03:05','',30,'http://bestecommerce-uk.com/?p=36',0,'revision','',0),(37,1,'2011-06-30 11:09:17','2011-06-30 11:09:17','[one_half]First column of content.[contact_form][/one_half]\n\n[one_half_last]<h1>Our Location</h1>\n\n<p>Really, because of the way we work, we are located wherever you need us to be, but in real terms our offices are here.</p>\n\n<iframe width=\"600\" height=\"250\" frameborder=\"2\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"http://maps.google.co.uk/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=Edinburgh+EH14+3DE&amp;aq=0&amp;sll=53.800651,-4.064941&amp;sspn=17.256447,39.594727&amp;ie=UTF8&amp;hq=&amp;hnear=Edinburgh+EH14+3DE,+United+Kingdom&amp;ll=55.909721,-3.284747&amp;spn=0.007974,0.021973&amp;z=14&amp;output=embed\"></iframe><br /><small><a href=\"http://maps.google.co.uk/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=Edinburgh+EH14+3DE&amp;aq=0&amp;sll=53.800651,-4.064941&amp;sspn=17.256447,39.594727&amp;ie=UTF8&amp;hq=&amp;hnear=Edinburgh+EH14+3DE,+United+Kingdom&amp;ll=55.909721,-3.284747&amp;spn=0.007974,0.021973&amp;z=14\" style=\"color:#0000FF;text-align:left\">View Larger Map</a></small>[/one_half_last]\n\n38 Baberto\n\n','Contact Us','','inherit','closed','closed','','30-autosave','','','2011-06-30 11:09:17','2011-06-30 11:09:17','',30,'http://bestecommerce-uk.com/?p=37',0,'revision','',0),(38,1,'2011-06-30 11:04:36','2011-06-30 11:04:36','[one_half]First column of content.[contact_form][/one_half]\r\n[one_half_last]<iframe width=\"425\" height=\"350\" frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"http://maps.google.co.uk/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=Edinburgh+EH14+3DE&amp;aq=0&amp;sll=53.800651,-4.064941&amp;sspn=17.256447,39.594727&amp;ie=UTF8&amp;hq=&amp;hnear=Edinburgh+EH14+3DE,+United+Kingdom&amp;ll=55.909721,-3.284747&amp;spn=0.007974,0.021973&amp;z=14&amp;output=embed\"></iframe><br /><small><a href=\"http://maps.google.co.uk/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=Edinburgh+EH14+3DE&amp;aq=0&amp;sll=53.800651,-4.064941&amp;sspn=17.256447,39.594727&amp;ie=UTF8&amp;hq=&amp;hnear=Edinburgh+EH14+3DE,+United+Kingdom&amp;ll=55.909721,-3.284747&amp;spn=0.007974,0.021973&amp;z=14\" style=\"color:#0000FF;text-align:left\">View Larger Map</a></small>[/one_half_last]','Contact Us','','inherit','closed','closed','','30-revision-7','','','2011-06-30 11:04:36','2011-06-30 11:04:36','',30,'http://bestecommerce-uk.com/?p=38',0,'revision','',0),(39,1,'2011-06-30 11:06:40','2011-06-30 11:06:40','[one_half]First column of content.[contact_form][/one_half]\r\n\r\n[one_half_last]<h1>Our Location</h1>\r\n\r\nReally, because of the way we work, we are located wherever you need us to be, but in real terms our offices are here.\r\n\r\n<iframe width=\"625\" height=\"250\" frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"http://maps.google.co.uk/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=Edinburgh+EH14+3DE&amp;aq=0&amp;sll=53.800651,-4.064941&amp;sspn=17.256447,39.594727&amp;ie=UTF8&amp;hq=&amp;hnear=Edinburgh+EH14+3DE,+United+Kingdom&amp;ll=55.909721,-3.284747&amp;spn=0.007974,0.021973&amp;z=14&amp;output=embed\"></iframe><br /><small><a href=\"http://maps.google.co.uk/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=Edinburgh+EH14+3DE&amp;aq=0&amp;sll=53.800651,-4.064941&amp;sspn=17.256447,39.594727&amp;ie=UTF8&amp;hq=&amp;hnear=Edinburgh+EH14+3DE,+United+Kingdom&amp;ll=55.909721,-3.284747&amp;spn=0.007974,0.021973&amp;z=14\" style=\"color:#0000FF;text-align:left\">View Larger Map</a></small>[/one_half_last]\r\n\r\n','Contact Us','','inherit','closed','closed','','30-revision-8','','','2011-06-30 11:06:40','2011-06-30 11:06:40','',30,'http://bestecommerce-uk.com/?p=39',0,'revision','',0),(40,1,'2011-06-30 11:07:07','2011-06-30 11:07:07','[one_half]First column of content.[contact_form][/one_half]\r\n\r\n[one_half_last]<h1>Our Location</h1>\r\n\r\nReally, because of the way we work, we are located wherever you need us to be, but in real terms our offices are here.\r\n\r\n<iframe width=\"600\" height=\"250\" frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"http://maps.google.co.uk/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=Edinburgh+EH14+3DE&amp;aq=0&amp;sll=53.800651,-4.064941&amp;sspn=17.256447,39.594727&amp;ie=UTF8&amp;hq=&amp;hnear=Edinburgh+EH14+3DE,+United+Kingdom&amp;ll=55.909721,-3.284747&amp;spn=0.007974,0.021973&amp;z=14&amp;output=embed\"></iframe><br /><small><a href=\"http://maps.google.co.uk/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=Edinburgh+EH14+3DE&amp;aq=0&amp;sll=53.800651,-4.064941&amp;sspn=17.256447,39.594727&amp;ie=UTF8&amp;hq=&amp;hnear=Edinburgh+EH14+3DE,+United+Kingdom&amp;ll=55.909721,-3.284747&amp;spn=0.007974,0.021973&amp;z=14\" style=\"color:#0000FF;text-align:left\">View Larger Map</a></small>[/one_half_last]\r\n\r\n','Contact Us','','inherit','closed','closed','','30-revision-9','','','2011-06-30 11:07:07','2011-06-30 11:07:07','',30,'http://bestecommerce-uk.com/?p=40',0,'revision','',0),(41,1,'2011-06-30 11:07:15','2011-06-30 11:07:15','[one_half]First column of content.[contact_form][/one_half]\r\n\r\n[one_half_last]<h1>Our Location</h1>\r\n\r\nReally, because of the way we work, we are located wherever you need us to be, but in real terms our offices are here.\r\n\r\n<iframe width=\"600\" height=\"250\" frameborder=\"2\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"http://maps.google.co.uk/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=Edinburgh+EH14+3DE&amp;aq=0&amp;sll=53.800651,-4.064941&amp;sspn=17.256447,39.594727&amp;ie=UTF8&amp;hq=&amp;hnear=Edinburgh+EH14+3DE,+United+Kingdom&amp;ll=55.909721,-3.284747&amp;spn=0.007974,0.021973&amp;z=14&amp;output=embed\"></iframe><br /><small><a href=\"http://maps.google.co.uk/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=Edinburgh+EH14+3DE&amp;aq=0&amp;sll=53.800651,-4.064941&amp;sspn=17.256447,39.594727&amp;ie=UTF8&amp;hq=&amp;hnear=Edinburgh+EH14+3DE,+United+Kingdom&amp;ll=55.909721,-3.284747&amp;spn=0.007974,0.021973&amp;z=14\" style=\"color:#0000FF;text-align:left\">View Larger Map</a></small>[/one_half_last]\r\n\r\n','Contact Us','','inherit','closed','closed','','30-revision-10','','','2011-06-30 11:07:15','2011-06-30 11:07:15','',30,'http://bestecommerce-uk.com/?p=41',0,'revision','',0),(59,1,'2011-06-30 12:18:30','2011-06-30 12:18:30','<style>\n        #inner {\n            margin-left:50px; \n            margin-right:-50px; \n        }\n</style>\n\n<div id=\"inner\">\n<h2>Our Location</h2>\n\n<p>Really, because of the way we work, we are located wherever you need us to be, but in real terms<br />our offices are here.</p>\n\n<iframe width=\"590\" height=\"250\" frameborder=\"2\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"http://maps.google.co.uk/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=Edinburgh+EH14+3DE&amp;aq=0&amp;sll=53.800651,-4.064941&amp;sspn=17.256447,39.594727&amp;ie=UTF8&amp;hq=&amp;hnear=Edinburgh+EH14+3DE,+United+Kingdom&amp;ll=55.909721,-3.284747&amp;spn=0.007974,0.021973&amp;z=14&amp;output=embed\"></iframe><br /><small><a href=\"http://maps.google.co.uk/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=Edinburgh+EH14+3DE&amp;aq=0&amp;sll=53.800651,-4.064941&amp;sspn=17.256447,39.594727&amp;ie=UTF8&amp;hq=&amp;hnear=Edinburgh+EH14+3DE,+United+Kingdom&amp;ll=55.909721,-3.284747&amp;spn=0.007974,0.021973&amp;z=14\" style=\"color:#0000FF;text-align:left\">View Larger Map</a></small>\n\n<p>Postal Address: 38 Baberton Mains Place, Edinburgh, EH14 3DE</p>\n</div>','Google Map','','inherit','closed','closed','','51-autosave','','','2011-06-30 12:18:30','2011-06-30 12:18:30','',51,'http://bestecommerce-uk.com/?p=59',0,'revision','',0),(42,1,'2011-06-30 11:09:43','2011-06-30 11:09:43','[one_half]First column of content.[contact_form][/one_half]\r\n\r\n[one_half_last]<h1>Our Location</h1>\r\n\r\n<p>Really, because of the way we work, we are located wherever you need us to be, but in real terms our offices are here.</p>\r\n\r\n<iframe width=\"600\" height=\"250\" frameborder=\"2\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"http://maps.google.co.uk/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=Edinburgh+EH14+3DE&amp;aq=0&amp;sll=53.800651,-4.064941&amp;sspn=17.256447,39.594727&amp;ie=UTF8&amp;hq=&amp;hnear=Edinburgh+EH14+3DE,+United+Kingdom&amp;ll=55.909721,-3.284747&amp;spn=0.007974,0.021973&amp;z=14&amp;output=embed\"></iframe><br /><small><a href=\"http://maps.google.co.uk/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=Edinburgh+EH14+3DE&amp;aq=0&amp;sll=53.800651,-4.064941&amp;sspn=17.256447,39.594727&amp;ie=UTF8&amp;hq=&amp;hnear=Edinburgh+EH14+3DE,+United+Kingdom&amp;ll=55.909721,-3.284747&amp;spn=0.007974,0.021973&amp;z=14\" style=\"color:#0000FF;text-align:left\">View Larger Map</a></small>[/one_half_last]\r\n\r\n38 Baberton Mains Place, Edinburgh, EH14 3DE\r\n\r\n','Contact Us','','inherit','closed','closed','','30-revision-11','','','2011-06-30 11:09:43','2011-06-30 11:09:43','',30,'http://bestecommerce-uk.com/?p=42',0,'revision','',0),(43,1,'2011-06-30 11:11:13','2011-06-30 11:11:13','[one_half]<h1>Get In Touch</h1>[contact_form][/one_half]\r\n\r\n[one_half_last]<h1>Our Location</h1>\r\n\r\n<p>Really, because of the way we work, we are located wherever you need us to be, but in real terms our offices are here.</p>\r\n\r\n<iframe width=\"600\" height=\"250\" frameborder=\"2\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"http://maps.google.co.uk/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=Edinburgh+EH14+3DE&amp;aq=0&amp;sll=53.800651,-4.064941&amp;sspn=17.256447,39.594727&amp;ie=UTF8&amp;hq=&amp;hnear=Edinburgh+EH14+3DE,+United+Kingdom&amp;ll=55.909721,-3.284747&amp;spn=0.007974,0.021973&amp;z=14&amp;output=embed\"></iframe><br /><small><a href=\"http://maps.google.co.uk/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=Edinburgh+EH14+3DE&amp;aq=0&amp;sll=53.800651,-4.064941&amp;sspn=17.256447,39.594727&amp;ie=UTF8&amp;hq=&amp;hnear=Edinburgh+EH14+3DE,+United+Kingdom&amp;ll=55.909721,-3.284747&amp;spn=0.007974,0.021973&amp;z=14\" style=\"color:#0000FF;text-align:left\">View Larger Map</a></small>[/one_half_last]\r\n\r\n38 Baberton Mains Place, Edinburgh, EH14 3DE\r\n\r\n','Contact Us','','inherit','closed','closed','','30-revision-12','','','2011-06-30 11:11:13','2011-06-30 11:11:13','',30,'http://bestecommerce-uk.com/?p=43',0,'revision','',0),(44,1,'2011-06-30 11:11:41','2011-06-30 11:11:41','[one_half]<h2>Get In Touch</h2>[contact_form][/one_half]\r\n\r\n[one_half_last]<h2>Our Location</h2>\r\n\r\n<p>Really, because of the way we work, we are located wherever you need us to be, but in real terms our offices are here.</p>\r\n\r\n<iframe width=\"600\" height=\"250\" frameborder=\"2\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"http://maps.google.co.uk/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=Edinburgh+EH14+3DE&amp;aq=0&amp;sll=53.800651,-4.064941&amp;sspn=17.256447,39.594727&amp;ie=UTF8&amp;hq=&amp;hnear=Edinburgh+EH14+3DE,+United+Kingdom&amp;ll=55.909721,-3.284747&amp;spn=0.007974,0.021973&amp;z=14&amp;output=embed\"></iframe><br /><small><a href=\"http://maps.google.co.uk/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=Edinburgh+EH14+3DE&amp;aq=0&amp;sll=53.800651,-4.064941&amp;sspn=17.256447,39.594727&amp;ie=UTF8&amp;hq=&amp;hnear=Edinburgh+EH14+3DE,+United+Kingdom&amp;ll=55.909721,-3.284747&amp;spn=0.007974,0.021973&amp;z=14\" style=\"color:#0000FF;text-align:left\">View Larger Map</a></small>[/one_half_last]\r\n\r\n38 Baberton Mains Place, Edinburgh, EH14 3DE\r\n\r\n','Contact Us','','inherit','closed','closed','','30-revision-13','','','2011-06-30 11:11:41','2011-06-30 11:11:41','',30,'http://bestecommerce-uk.com/?p=44',0,'revision','',0),(45,1,'2011-06-30 11:12:24','2011-06-30 11:12:24','[one_half]<h2>Get In Touch</h2>[contact_form][/one_half]\r\n\r\n[one_half_last]<h2>Our Location</h2>\r\n\r\n<p>Really, because of the way we work, we are located wherever you need us to be, but in real terms our offices are here.</p>\r\n\r\n<iframe width=\"600\" height=\"250\" frameborder=\"2\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"http://maps.google.co.uk/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=Edinburgh+EH14+3DE&amp;aq=0&amp;sll=53.800651,-4.064941&amp;sspn=17.256447,39.594727&amp;ie=UTF8&amp;hq=&amp;hnear=Edinburgh+EH14+3DE,+United+Kingdom&amp;ll=55.909721,-3.284747&amp;spn=0.007974,0.021973&amp;z=14&amp;output=embed\"></iframe><br /><small><a href=\"http://maps.google.co.uk/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=Edinburgh+EH14+3DE&amp;aq=0&amp;sll=53.800651,-4.064941&amp;sspn=17.256447,39.594727&amp;ie=UTF8&amp;hq=&amp;hnear=Edinburgh+EH14+3DE,+United+Kingdom&amp;ll=55.909721,-3.284747&amp;spn=0.007974,0.021973&amp;z=14\" style=\"color:#0000FF;text-align:left\">View Larger Map</a></small>[/one_half_last]\r\n\r\n38 Baberton Mains Place, Edinburgh, EH14 3DE\r\n\r\n','Contact Us','','inherit','closed','closed','','30-revision-14','','','2011-06-30 11:12:24','2011-06-30 11:12:24','',30,'http://bestecommerce-uk.com/?p=45',0,'revision','',0),(46,1,'2011-06-30 11:13:32','2011-06-30 11:13:32','[one_half]<h1>Contact Us</h1>[contact_form][/one_half]\r\n\r\n[one_half_last]<h2>Our Location</h2>\r\n\r\n<p>Really, because of the way we work, we are located wherever you need us to be, but in real terms our offices are here.</p>\r\n\r\n<iframe width=\"600\" height=\"250\" frameborder=\"2\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"http://maps.google.co.uk/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=Edinburgh+EH14+3DE&amp;aq=0&amp;sll=53.800651,-4.064941&amp;sspn=17.256447,39.594727&amp;ie=UTF8&amp;hq=&amp;hnear=Edinburgh+EH14+3DE,+United+Kingdom&amp;ll=55.909721,-3.284747&amp;spn=0.007974,0.021973&amp;z=14&amp;output=embed\"></iframe><br /><small><a href=\"http://maps.google.co.uk/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=Edinburgh+EH14+3DE&amp;aq=0&amp;sll=53.800651,-4.064941&amp;sspn=17.256447,39.594727&amp;ie=UTF8&amp;hq=&amp;hnear=Edinburgh+EH14+3DE,+United+Kingdom&amp;ll=55.909721,-3.284747&amp;spn=0.007974,0.021973&amp;z=14\" style=\"color:#0000FF;text-align:left\">View Larger Map</a></small>[/one_half_last]\r\n\r\n38 Baberton Mains Place, Edinburgh, EH14 3DE\r\n\r\n','Contact Us','','inherit','closed','closed','','30-revision-15','','','2011-06-30 11:13:32','2011-06-30 11:13:32','',30,'http://bestecommerce-uk.com/?p=46',0,'revision','',0),(94,1,'2011-06-30 12:58:50','2011-06-30 12:58:50','Blog Page','Blog','','inherit','closed','closed','','68-revision-3','','','2011-06-30 12:58:50','2011-06-30 12:58:50','',68,'http://bestecommerce-uk.com/?p=94',0,'revision','',0),(97,1,'2011-06-30 17:03:51','2011-06-30 17:03:51','new to ecommerce...','New to eCommerce?','','trash','closed','closed','','new-to-ecommerce','','','2011-12-08 11:34:24','2011-12-08 11:34:24','',0,'http://bestecommerce-uk.com/?p=97',0,'post','',0),(48,1,'2011-06-30 11:34:13','2011-06-30 11:34:13','Best Ecommerce UK was formed in 2002 with the aim of providing ecommerce solutions and services to business with an emphasis on quality of products and great support.\r\n\r\nWith a growing base of loyal happy customers we feel we have achieved that aim and continue to hold good to those early business principles of supplying good, reliable systems and support to our customers.','','About eCommerce UK','publish','closed','closed','','48','','','2011-12-16 13:41:25','2011-12-16 13:41:25','',0,'http://bestecommerce-uk.com/?p=48',1,'nav_menu_item','',0),(93,1,'2011-06-30 16:41:32','2011-06-30 16:41:32',' ','','','publish','closed','closed','','93','','','2011-12-15 13:34:11','2011-12-15 13:34:11','',0,'http://bestecommerce-uk.com/?p=93',3,'nav_menu_item','',0),(49,1,'2011-06-30 11:39:17','2011-06-30 11:39:17','These are the most frequently asked questions we see:<br /><br />\r\n\r\n[toggle title=\"What is eCommerce?\"]The <a href=\"http://oxforddictionaries.com/definition/e-commerce\">Oxford english dictionary</a> definition of ecommerce is “commercial transactions conducted electronically on the Internet.” We refer to an e-commerce website as one which allows products and/or services to be sold, typically by means of credit card or other third party payment service.[/toggle]\r\n[toggle title=\"How much does an eCommerce Website cost?\"]E-Commerce site build costs vary widely; we offer several <a href=\"http://www.webdesign-uk.org/best-e-commerce-packages/\">packages</a> as well as bespoke solutions. Our packages start at £999, however please give us a call on the number above and we will be glad to provide an estimate.[/toggle]\r\n[toggle title=\"How long will it take to build our site?\"]On average, a small business e-commerce site will take 3-4 weeks to complete, however large enterprise-level sites may take much longer. Please feel free to call us so that we may provide an estimate based on your requirements.[/toggle]\r\n[toggle title=\"What should I consider when starting an online business?\"]<p>If you do not already have a product to sell then find a niche product that will sell online. Conduct market research to determine the likely sales level of the product, who your competitors are and where you would fit in the market.\r\nAlso consider whether the product is suitable for online sales.</p> <p>Most eCommerce websites now offer free standard postage and packing; if you intend to offer this then the cost must come from your overheads. This will only be economical if the unit cost is .</p>[/toggle]\r\n[toggle title=\"What is the biggest hurdle in starting an online business?\"]<p>The biggest hurdle will be letting your customers know you are there. If you already have a bricks and mortar shop you can let your existing customers know via in-store advertising or email if you have their details. However this will not increase your sales.</p> <p>For your business to succeed, your website will need to climb the search engine rankings so that you are one of the first sites that people see when searching for your product. Search engine optimisation is what we call the collection of techniques that will help your site to climb the rankings and bring potential buyers to your website. We will be happy to advise on and implement a search engine optimisation strategy for an additional monthly fee. Please ask us for details.</p>[/toggle]\r\n[toggle title=\"Do I need a merchant account or can I just use Paypal and money orders?\"]If you plan to take payments using PayPal or Google Checkout only, then you will not require a Merchant ID. If you plan to take Credit Card Payments via a third Party such as SagePay or RBS WorldPay then you will require one. We can help you organise that. Just ask us.[/toggle]\r\n[toggle title=\"I already have a Website. Can I integrate an online store into it?\"]<p>Yes, our shopping cart applications can be fitted into an existing website, although the shopping pages will likely look a little different from your existing website. We can use colours and styling to approximate the look and feel of your existing website.</p> <p>The systems we supply allow addition of unlimited website pages, files, video and more. Due to the scope and power of our eCommerce systems and what they allow our customers to do, many of our customers simply choose to recreate the content of their old website inside the eCommerce shopping website itself. Customers usually prefer this as the whole website has a more professional look and feel.</p> <p>So, once you see what our systems can do, your question may be: Can we integrate your existing website into your new eCommerce store? Whichever option you prefer, we can make it work.</p>[/toggle]\r\n[toggle title=\"Will I be able to customize the look and feel of my eCommerce website?\"]Yes, any eCommerce website that we build for you will be tailored to your requirements.  After completion modifications can be made at an additional cost.[/toggle]\r\n[toggle title=\"What is a merchant account?\"]A merchant account lets you accept payments directly from customers\' credit, debit or charge cards. If you do not have an internet ready merchant account we would be happy to assist you in setting this up.[/toggle]\r\n[toggle title=\"Can I use the merchant account I already have for online processing?\"]Yes. Any existing merchant account can be used so long as it is an internet ready account.[/toggle]\r\n[toggle title=\"What is a payment gateway?\"]A payment gateway is the connection between your eCommerce website and your merchant account provider. It is the equivalent to the credit card point of sale terminal in a shop. The gateway protects the customers card details by encrypting the communication between your eCommerce website and the merchant account provider.[/toggle]\r\n[toggle title=\"How do I ensure that customers transactions are secure?\"]<p>Any customer visiting your website will have to be reassured that sensitive data will be kept secure. The standard method used is SSL (Secure Socket Layers), which encrypts the data. This is shown on the page by a padlock icon in the browser bar, and the URL beginning with “HTTPS” instead of the standard “HTTP”</p>[/toggle]\r\n[toggle title=\"What is SSL?\"]SSL (Secure Socket Layer), together with its successor Transport Layer Security, is a method of encrypting the sensitive data transmitted from your eCommerce website so as to ensure that no unauthorised users can access the data.[/toggle]\r\n','FAQs','','publish','closed','closed','','faqs','','','2011-12-15 15:04:39','2011-12-15 15:04:39','',0,'http://bestecommerce-uk.com/?page_id=49',0,'page','',0),(50,1,'2011-06-30 11:38:37','2011-06-30 11:38:37','A list of frequently asked questions below:\n\n[toggle title=\"How much does an eCommerce Website cost?\"]The cost varies depending on what package you choose...[/toggle]','FAQ\'s','','inherit','closed','closed','','49-revision','','','2011-06-30 11:38:37','2011-06-30 11:38:37','',49,'http://bestecommerce-uk.com/?p=50',0,'revision','',0),(51,1,'2011-06-30 11:45:21','2011-06-30 11:45:21','<style>\r\n        #inner {\r\n            margin-left:50px; \r\n            margin-right:-50px; \r\n        }\r\n</style>\r\n\r\n<div id=\"inner\">\r\n<h2>Our Location</h2>\r\n\r\n<p>Really, because of the way we work, we are located wherever you need us to be, but in real terms<br />our offices are here.</p>\r\n\r\n<iframe width=\"590\" height=\"250\" frameborder=\"2\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"http://maps.google.co.uk/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=Edinburgh+EH14+3DE&amp;aq=0&amp;sll=53.800651,-4.064941&amp;sspn=17.256447,39.594727&amp;ie=UTF8&amp;hq=&amp;hnear=Edinburgh+EH14+3DE,+United+Kingdom&amp;ll=55.909721,-3.284747&amp;spn=0.007974,0.021973&amp;z=14&amp;output=embed\"></iframe><br /><small><a href=\"http://maps.google.co.uk/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=Edinburgh+EH14+3DE&amp;aq=0&amp;sll=53.800651,-4.064941&amp;sspn=17.256447,39.594727&amp;ie=UTF8&amp;hq=&amp;hnear=Edinburgh+EH14+3DE,+United+Kingdom&amp;ll=55.909721,-3.284747&amp;spn=0.007974,0.021973&amp;z=14\" style=\"color:#0000FF;text-align:left\">View Larger Map</a></small><br /><br />\r\n\r\n<h3>Address</h3>\r\n<p>38 Baberton Mains Place, Edinburgh, EH14 3DE</p>\r\n</div>','Google Map','','publish','closed','closed','','google-map','','','2011-10-14 14:00:44','2011-10-14 14:00:44','',0,'http://bestecommerce-uk.com/?page_id=51',0,'page','',0),(52,1,'2011-06-30 11:45:15','2011-06-30 11:45:15','','Google Map','','inherit','closed','closed','','51-revision','','','2011-06-30 11:45:15','2011-06-30 11:45:15','',51,'http://bestecommerce-uk.com/?p=52',0,'revision','',0),(53,1,'2011-06-30 11:45:44','2011-06-30 11:45:44','<h1>Contact Us</h1>\r\n[contact_form]','Contact Us','','draft','closed','closed','','contact-form','','','2011-11-24 12:33:52','2011-11-24 12:33:52','',0,'http://bestecommerce-uk.com/?page_id=53',0,'page','',0),(54,1,'2011-06-30 11:45:41','2011-06-30 11:45:41','','Contact Form','','inherit','closed','closed','','53-revision','','','2011-06-30 11:45:41','2011-06-30 11:45:41','',53,'http://bestecommerce-uk.com/?p=54',0,'revision','',0),(55,1,'2011-06-30 11:45:21','2011-06-30 11:45:21','','Google Map','','inherit','closed','closed','','51-revision-2','','','2011-06-30 11:45:21','2011-06-30 11:45:21','',51,'http://bestecommerce-uk.com/?p=55',0,'revision','',0),(56,1,'2011-06-30 11:45:44','2011-06-30 11:45:44','Cform','Contact Form','','inherit','closed','closed','','53-revision-2','','','2011-06-30 11:45:44','2011-06-30 11:45:44','',53,'http://bestecommerce-uk.com/?p=56',0,'revision','',0),(57,1,'2011-06-30 11:23:50','2011-06-30 11:23:50','[one_half]<h1>Contact Us</h1>[contact_form][/one_half]\r\n\r\n[one_half_last]<h2>Our Location</h2>\r\n\r\n<p>Really, because of the way we work, we are located wherever you need us to be, but in real terms our offices are here.</p>\r\n\r\n<iframe width=\"600\" height=\"250\" frameborder=\"2\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"http://maps.google.co.uk/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=Edinburgh+EH14+3DE&amp;aq=0&amp;sll=53.800651,-4.064941&amp;sspn=17.256447,39.594727&amp;ie=UTF8&amp;hq=&amp;hnear=Edinburgh+EH14+3DE,+United+Kingdom&amp;ll=55.909721,-3.284747&amp;spn=0.007974,0.021973&amp;z=14&amp;output=embed\"></iframe><br /><small><a href=\"http://maps.google.co.uk/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=Edinburgh+EH14+3DE&amp;aq=0&amp;sll=53.800651,-4.064941&amp;sspn=17.256447,39.594727&amp;ie=UTF8&amp;hq=&amp;hnear=Edinburgh+EH14+3DE,+United+Kingdom&amp;ll=55.909721,-3.284747&amp;spn=0.007974,0.021973&amp;z=14\" style=\"color:#0000FF;text-align:left\">View Larger Map</a></small>[/one_half_last]\r\n\r\n38 Baberton Mains Place, Edinburgh, EH14 3DE\r\n\r\n','Contact Us','','inherit','closed','closed','','30-revision-16','','','2011-06-30 11:23:50','2011-06-30 11:23:50','',30,'http://bestecommerce-uk.com/?p=57',0,'revision','',0),(58,1,'2011-06-30 11:49:10','2011-06-30 11:49:10','[one_half]<h1>Contact Us</h1>[contact_form][/one_half]\r\n\r\n[one_half_last]<h2>Our Location</h2>\r\n\r\n<p>Really, because of the way we work, we are located wherever you need us to be, but in real terms our offices are here.</p>\r\n\r\n<iframe width=\"600\" height=\"250\" frameborder=\"2\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"http://maps.google.co.uk/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=Edinburgh+EH14+3DE&amp;aq=0&amp;sll=53.800651,-4.064941&amp;sspn=17.256447,39.594727&amp;ie=UTF8&amp;hq=&amp;hnear=Edinburgh+EH14+3DE,+United+Kingdom&amp;ll=55.909721,-3.284747&amp;spn=0.007974,0.021973&amp;z=14&amp;output=embed\"></iframe><br /><small><a href=\"http://maps.google.co.uk/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=Edinburgh+EH14+3DE&amp;aq=0&amp;sll=53.800651,-4.064941&amp;sspn=17.256447,39.594727&amp;ie=UTF8&amp;hq=&amp;hnear=Edinburgh+EH14+3DE,+United+Kingdom&amp;ll=55.909721,-3.284747&amp;spn=0.007974,0.021973&amp;z=14\" style=\"color:#0000FF;text-align:left\">View Larger Map</a></small>[/one_half_last]\r\n\r\n38 Baberton Mains Place, Edinburgh, EH14 3DE\r\n\r\n','Contact Us','','inherit','closed','closed','','30-revision-17','','','2011-06-30 11:49:10','2011-06-30 11:49:10','',30,'http://bestecommerce-uk.com/?p=58',0,'revision','',0),(63,1,'2011-06-30 12:15:25','2011-06-30 12:15:25','<style>\r\n        #inner {\r\n            margin-left:50px; \r\n            margin-right:-50px; \r\n        }\r\n</style>\r\n\r\n<div id=\"inner\">\r\n<h2>Our Location</h2>\r\n\r\n<p>Really, because of the way we work, we are located wherever you need us to be, but in real terms<br />our offices are here.</p>\r\n\r\n<iframe width=\"590\" height=\"250\" frameborder=\"2\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"http://maps.google.co.uk/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=Edinburgh+EH14+3DE&amp;aq=0&amp;sll=53.800651,-4.064941&amp;sspn=17.256447,39.594727&amp;ie=UTF8&amp;hq=&amp;hnear=Edinburgh+EH14+3DE,+United+Kingdom&amp;ll=55.909721,-3.284747&amp;spn=0.007974,0.021973&amp;z=14&amp;output=embed\"></iframe><br /><small><a href=\"http://maps.google.co.uk/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=Edinburgh+EH14+3DE&amp;aq=0&amp;sll=53.800651,-4.064941&amp;sspn=17.256447,39.594727&amp;ie=UTF8&amp;hq=&amp;hnear=Edinburgh+EH14+3DE,+United+Kingdom&amp;ll=55.909721,-3.284747&amp;spn=0.007974,0.021973&amp;z=14\" style=\"color:#0000FF;text-align:left\">View Larger Map</a></small>\r\n\r\n38 Baberton Mains Place, Edinburgh, EH14 3DE\r\n</div>','Google Map','','inherit','closed','closed','','51-revision-6','','','2011-06-30 12:15:25','2011-06-30 12:15:25','',51,'http://bestecommerce-uk.com/?p=63',0,'revision','',0),(60,1,'2011-06-30 11:46:44','2011-06-30 11:46:44','<h2>Our Location</h2>\r\n\r\n<p>Really, because of the way we work, we are located wherever you need us to be, but in real terms our offices are here.</p>\r\n\r\n<iframe width=\"600\" height=\"250\" frameborder=\"2\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"http://maps.google.co.uk/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=Edinburgh+EH14+3DE&amp;aq=0&amp;sll=53.800651,-4.064941&amp;sspn=17.256447,39.594727&amp;ie=UTF8&amp;hq=&amp;hnear=Edinburgh+EH14+3DE,+United+Kingdom&amp;ll=55.909721,-3.284747&amp;spn=0.007974,0.021973&amp;z=14&amp;output=embed\"></iframe><br /><small><a href=\"http://maps.google.co.uk/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=Edinburgh+EH14+3DE&amp;aq=0&amp;sll=53.800651,-4.064941&amp;sspn=17.256447,39.594727&amp;ie=UTF8&amp;hq=&amp;hnear=Edinburgh+EH14+3DE,+United+Kingdom&amp;ll=55.909721,-3.284747&amp;spn=0.007974,0.021973&amp;z=14\" style=\"color:#0000FF;text-align:left\">View Larger Map</a></small>\r\n\r\n38 Baberton Mains Place, Edinburgh, EH14 3DE','Google Map','','inherit','closed','closed','','51-revision-3','','','2011-06-30 11:46:44','2011-06-30 11:46:44','',51,'http://bestecommerce-uk.com/?p=60',0,'revision','',0),(62,1,'2011-06-30 12:14:33','2011-06-30 12:14:33','<style>\r\n        \r\n\r\n        #inner {\r\n            /*move the whole container 50px to the left side */\r\n           /* margin-left:-50px; */\r\n           /* margin-right:50px; */\r\n            /*or move the whole container 50px to the right side*/\r\n           \r\n            margin-left:50px; \r\n            margin-right:-50px;\r\n            \r\n        }\r\n    </style>\r\n\r\n<div id=\"inner\">\r\n<h2>Our Location</h2>\r\n\r\n<p>Really, because of the way we work, we are located wherever you need us to be, but in real terms our offices are here.</p>\r\n\r\n<iframe width=\"600\" height=\"250\" frameborder=\"2\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"http://maps.google.co.uk/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=Edinburgh+EH14+3DE&amp;aq=0&amp;sll=53.800651,-4.064941&amp;sspn=17.256447,39.594727&amp;ie=UTF8&amp;hq=&amp;hnear=Edinburgh+EH14+3DE,+United+Kingdom&amp;ll=55.909721,-3.284747&amp;spn=0.007974,0.021973&amp;z=14&amp;output=embed\"></iframe><br /><small><a href=\"http://maps.google.co.uk/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=Edinburgh+EH14+3DE&amp;aq=0&amp;sll=53.800651,-4.064941&amp;sspn=17.256447,39.594727&amp;ie=UTF8&amp;hq=&amp;hnear=Edinburgh+EH14+3DE,+United+Kingdom&amp;ll=55.909721,-3.284747&amp;spn=0.007974,0.021973&amp;z=14\" style=\"color:#0000FF;text-align:left\">View Larger Map</a></small>\r\n\r\n38 Baberton Mains Place, Edinburgh, EH14 3DE\r\n</div>','Google Map','','inherit','closed','closed','','51-revision-5','','','2011-06-30 12:14:33','2011-06-30 12:14:33','',51,'http://bestecommerce-uk.com/?p=62',0,'revision','',0),(61,1,'2011-06-30 12:13:39','2011-06-30 12:13:39','<style>\r\n        #outer {\r\n            margin: 0 auto; /*center*/\r\n            width:200px;\r\n            background-color:red; /*just to display the example*/\r\n        }\r\n\r\n        #inner {\r\n            /*move the whole container 50px to the left side */\r\n           /* margin-left:-50px; */\r\n           /* margin-right:50px; */\r\n            /*or move the whole container 50px to the right side*/\r\n            /*\r\n            margin-left:50px; \r\n            margin-right:-50px;\r\n            */\r\n        }\r\n    </style>\r\n\r\n<div id=\"inner\">\r\n<h2>Our Location</h2>\r\n\r\n<p>Really, because of the way we work, we are located wherever you need us to be, but in real terms our offices are here.</p>\r\n\r\n<iframe width=\"600\" height=\"250\" frameborder=\"2\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"http://maps.google.co.uk/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=Edinburgh+EH14+3DE&amp;aq=0&amp;sll=53.800651,-4.064941&amp;sspn=17.256447,39.594727&amp;ie=UTF8&amp;hq=&amp;hnear=Edinburgh+EH14+3DE,+United+Kingdom&amp;ll=55.909721,-3.284747&amp;spn=0.007974,0.021973&amp;z=14&amp;output=embed\"></iframe><br /><small><a href=\"http://maps.google.co.uk/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=Edinburgh+EH14+3DE&amp;aq=0&amp;sll=53.800651,-4.064941&amp;sspn=17.256447,39.594727&amp;ie=UTF8&amp;hq=&amp;hnear=Edinburgh+EH14+3DE,+United+Kingdom&amp;ll=55.909721,-3.284747&amp;spn=0.007974,0.021973&amp;z=14\" style=\"color:#0000FF;text-align:left\">View Larger Map</a></small>\r\n\r\n38 Baberton Mains Place, Edinburgh, EH14 3DE\r\n</div>','Google Map','','inherit','closed','closed','','51-revision-4','','','2011-06-30 12:13:39','2011-06-30 12:13:39','',51,'http://bestecommerce-uk.com/?p=61',0,'revision','',0),(64,1,'2011-06-30 12:18:33','2011-06-30 12:18:33','<style>\r\n        #inner {\r\n            margin-left:50px; \r\n            margin-right:-50px; \r\n        }\r\n</style>\r\n\r\n<div id=\"inner\">\r\n<h2>Our Location</h2>\r\n\r\n<p>Really, because of the way we work, we are located wherever you need us to be, but in real terms<br />our offices are here.</p>\r\n\r\n<iframe width=\"590\" height=\"250\" frameborder=\"2\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"http://maps.google.co.uk/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=Edinburgh+EH14+3DE&amp;aq=0&amp;sll=53.800651,-4.064941&amp;sspn=17.256447,39.594727&amp;ie=UTF8&amp;hq=&amp;hnear=Edinburgh+EH14+3DE,+United+Kingdom&amp;ll=55.909721,-3.284747&amp;spn=0.007974,0.021973&amp;z=14&amp;output=embed\"></iframe><br /><small><a href=\"http://maps.google.co.uk/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=Edinburgh+EH14+3DE&amp;aq=0&amp;sll=53.800651,-4.064941&amp;sspn=17.256447,39.594727&amp;ie=UTF8&amp;hq=&amp;hnear=Edinburgh+EH14+3DE,+United+Kingdom&amp;ll=55.909721,-3.284747&amp;spn=0.007974,0.021973&amp;z=14\" style=\"color:#0000FF;text-align:left\">View Larger Map</a></small>\r\n\r\n<p>Postal Address: 38 Baberton Mains Place, Edinburgh, EH14 3DE</p>\r\n</div>','Google Map','','inherit','closed','closed','','51-revision-7','','','2011-06-30 12:18:33','2011-06-30 12:18:33','',51,'http://bestecommerce-uk.com/?p=64',0,'revision','',0),(95,1,'2011-06-30 16:48:46','2011-06-30 16:48:46','','bestecommerce-uk.com_logo','','inherit','closed','closed','','bestecommerce-uk-com_logo','','','2011-06-30 16:48:46','2011-06-30 16:48:46','',0,'http://bestecommerce-uk.com/wp-content/uploads/2011/06/bestecommerce-uk.com_logo.png',0,'attachment','image/png',0),(68,1,'2011-06-30 12:57:03','2011-06-30 12:57:03','[blog category=\"1,2,3,4\" posts_per_page=\"5\" paging=\"yes\" image_width=\"75\" image_height=\"91\" excerpt_length=\"14\" comments_link=\"no\"]','Blog','','publish','closed','closed','','blog','','','2011-11-25 13:51:44','2011-11-25 13:51:44','',0,'http://bestecommerce-uk.com/?page_id=68',0,'page','',0),(69,1,'2011-06-30 12:56:26','2011-06-30 12:56:26','','Blog','','inherit','closed','closed','','68-revision','','','2011-06-30 12:56:26','2011-06-30 12:56:26','',68,'http://bestecommerce-uk.com/?p=69',0,'revision','',0),(70,1,'2011-06-30 12:57:03','2011-06-30 12:57:03','Blog Page','Blog','','inherit','closed','closed','','68-revision-2','','','2011-06-30 12:57:03','2011-06-30 12:57:03','',68,'http://bestecommerce-uk.com/?p=70',0,'revision','',0),(71,1,'2011-06-30 13:51:07','2011-06-30 13:51:07','<p>We will upload a set number of products with prices and categories. The website will have the capacity for unlimited products, and we will ensure you have the technical understanding to expand and update it.</p>\r\n\r\n[pricing_table columns=\"3\"]\r\n[pricing_column title=\"WebShop Lite\"]\r\n<ul>\r\n	<li>[price_info cost=\"£999\"] + £60 per month[/price_info]</li>\r\n	<li>Entry level product for small companies starting on the Internet.</li>\r\n	<li>30 products as part of the deal</li>\r\n	<li><a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img class=\"alignnone size-full wp-image-83\" title=\"webshop_30prox\" src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" width=\"178\" height=\"189\" /></a></li>\r\n</ul>\r\n[/pricing_column]\r\n[pricing_column title=\"WebShop Standard\" highlight=\"true\"]\r\n<ul>\r\n	<li>[price_info cost=\"£1999\"]+ £60 per month[/price_info]</li>\r\n	<li>The basis to develop an e-commerce website.</li>\r\n	<li>60 products as part of the deal</li>\r\n	<li><a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img class=\"alignnone size-full wp-image-83\" title=\"webshop_30prox\" src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" width=\"178\" height=\"189\" /></a></li>\r\n</ul>\r\n[/pricing_column]\r\n[pricing_column title=\"WebShop Pro\"]\r\n<ul>\r\n	<li>[price_info cost=\"£2999\"]+ £60 per month[/price_info]</li>\r\n	<li>Web design for a firm intending to make significant sales online.</li>\r\n	<li>90 products as part of the deal</li>\r\n	<li><a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img class=\"alignnone size-full wp-image-83\" title=\"webshop_30prox\" src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" width=\"178\" height=\"189\" /></a></li>\r\n</ul>\r\n[/pricing_column]\r\n[/pricing_table]\r\n\r\n<p>See here to view our full list of <a href=\"http://www.webdesign-uk.org/webshop-3-0-feature-list\">Webshop features</a>.</p>\r\n\r\n<p>If one of these offers interests you, please complete a contact form through the button below for a call back, or call us directly to tell us of your requirements.<p/>\r\n\r\n<a class=\"btn orange\" href=\"/contact-form-2\"><span>Contact Form</span></a>\r\n&nbsp;','Our WebShop Packages','','publish','closed','closed','','webdesign-uk-packages','','','2011-12-16 13:38:41','2011-12-16 13:38:41','',0,'http://bestecommerce-uk.com/?page_id=71',0,'page','',0),(72,1,'2011-06-30 13:50:46','2011-06-30 13:50:46','Our Packages below:','Best E-Commerce Packages','','inherit','closed','closed','','71-revision','','','2011-06-30 13:50:46','2011-06-30 13:50:46','',71,'http://bestecommerce-uk.com/?p=72',0,'revision','',0),(73,1,'2011-06-30 10:33:54','2011-06-30 10:33:54','[tabs]\r\n	[tab title=\"Our Packages\"]<h3>Lorem ipsum dolor sit amet</h3> \r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" class=\"styled-image popup alignright\" title=\"Click me to enlarge!\" rel=\"tab-1\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" width=\"206\" height=\"117\" alt=\"Click me to enlarge!\" class=\"alignright\" /></a>\r\n<p>Consectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique. Quisque mattis elit eros, non facilisis sem. Cras a congue neque. In massa purus, ornare in sagittis id, accumsan ac nisl. Sed sit amet nulla ac dolor adipiscing.</p>[/tab]\r\n	[tab title=\"Our Capabilities\"]Curabitur sagittis placerat volutpat. Integer vitae sapien ipsum. Aliquam mi diam, convallis in fermentum a, blandit vel lorem. Mauris elit erat, dignissim id ultrices a, mattis ut nibh. Vestibulum ultricies, nisl ac aliquet molestagittis arcu, rhoncus convallis augue pulvinar non. Mauris commodo bibendum magna nec commodo. Donec gravida lobortis suscipit. Sed neque sapien, convallis id blandit ac, euismod et dui.[/tab]\r\n	[tab title=\"Our Support\"]Tab content...[/tab]\r\n[/tabs]','HomeTabs','','inherit','closed','closed','','23-revision-3','','','2011-06-30 10:33:54','2011-06-30 10:33:54','',23,'http://bestecommerce-uk.com/?p=73',0,'revision','',0),(75,1,'2011-06-30 14:18:46','2011-06-30 14:18:46','<h1>E-Commerce WebShop 3.0 Pro</h1>\n\n\n[tabs]\n	[tab title=\"Our Packages\"]<h3>Lorem ipsum dolor sit amet</h3> \n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" class=\"styled-image popup alignright\" title=\"Click me to enlarge!\" rel=\"tab-1\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" width=\"206\" height=\"117\" alt=\"Click me to enlarge!\" class=\"alignright\" /></a>\n<p>Consectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique. Quisque mattis elit eros, non facilisis sem. Cras a congue neque. In massa purus, ornare in sagittis id, accumsan ac nisl. Sed sit amet nulla ac dolor adipiscing.</p>[/tab]\n	[tab title=\"Our Capabilities\"][bullet_list icon=\"check\"]\n	<ul>\n		<li>Your Text</li>\n		<li>Your Text</li>\n		<li>Your Text</li>\n	</ul>\n[/bullet_list][/tab]\n	[tab title=\"Our Support\"]Tab content...[/tab]\n[/tabs]','E-Commerce WebShop Pro','','inherit','closed','closed','','74-revision','','','2011-06-30 14:18:46','2011-06-30 14:18:46','',74,'http://bestecommerce-uk.com/?p=75',0,'revision','',0),(589,1,'2011-11-24 09:51:56','2011-11-24 09:51:56','<h1>eCommerce WebShop 3.0 Pro</h1>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>Our flagship product for the SME\'s and growing companies, WebShop 3.0 Pro provides a high level of function across the board.</p><p>Supporting advanced functions from multi-tiered pricing structures to integration with Amazon and eBay, the pro system is the benchmark for growing and established High Street brand retailers</p> \r\n<h2>£2999 + £60/month   </h2>\r\n<p>If you as interested in this product please use the button below to complete a contact form for a call back or call us directly to discuss your requirements.<p/>\r\n<a href=\"/contact-form-2\" class=\"orange\"><span>Contact Form</span></a><br /><br /><br />\r\n\r\n</div></div>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n\r\n</div></div>\r\n\r\n\r\n\r\n','eCommerce WebShop Pro','','inherit','closed','closed','','74-revision-34','','','2011-11-24 09:51:56','2011-11-24 09:51:56','',74,'http://bestecommerce-uk.com/2011/11/74-revision-34/',0,'revision','',0),(76,1,'2011-06-30 14:19:18','2011-06-30 14:19:18','<h1>E-Commerce WebShop 3.0 Pro</h1>\r\n\r\n<p>Consectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique.</p>\r\n\r\n[tabs]\r\n	[tab title=\"Our Packages\"]<h3>Lorem ipsum dolor sit amet</h3> \r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" class=\"styled-image popup alignright\" title=\"Click me to enlarge!\" rel=\"tab-1\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" width=\"206\" height=\"117\" alt=\"Click me to enlarge!\" class=\"alignright\" /></a>\r\n<p>Consectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique. Quisque mattis elit eros, non facilisis sem. Cras a congue neque. In massa purus, ornare in sagittis id, accumsan ac nisl. Sed sit amet nulla ac dolor adipiscing.</p>[/tab]\r\n	[tab title=\"Our Capabilities\"][bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n	</ul>\r\n[/bullet_list][/tab]\r\n	[tab title=\"Our Support\"]Tab content...[/tab]\r\n[/tabs]','E-Commerce WebShop Pro','','inherit','closed','closed','','74-revision-2','','','2011-06-30 14:19:18','2011-06-30 14:19:18','',74,'http://bestecommerce-uk.com/?p=76',0,'revision','',0),(77,1,'2011-06-30 14:22:28','2011-06-30 14:22:28','','webshop_30pro','','inherit','closed','closed','','webshop_30pro','','','2011-06-30 14:22:28','2011-06-30 14:22:28','',74,'http://bestecommerce-uk.com/wp-content/uploads/2011/06/webshop_30pro.png',0,'attachment','image/png',0),(78,1,'2011-06-30 14:20:25','2011-06-30 14:20:25','<h1>E-Commerce WebShop 3.0 Pro</h1>\r\n\r\n<p>Consectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique.</p>\r\n\r\n[tabs]\r\n	[tab title=\"Our Packages\"]<h3>Lorem ipsum dolor sit amet</h3> \r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" class=\"styled-image popup alignright\" title=\"Click me to enlarge!\" rel=\"tab-1\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" width=\"206\" height=\"117\" alt=\"Click me to enlarge!\" class=\"alignright\" /></a>\r\n<p>Consectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique. Quisque mattis elit eros, non facilisis sem. Cras a congue neque. In massa purus, ornare in sagittis id, accumsan ac nisl. Sed sit amet nulla ac dolor adipiscing.</p>[/tab]\r\n	[tab title=\"Our Capabilities\"][bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n	</ul>\r\n[/bullet_list][/tab]\r\n	[tab title=\"Our Support\"]Tab content...[/tab]\r\n[/tabs]','E-Commerce WebShop Pro','','inherit','closed','closed','','74-revision-3','','','2011-06-30 14:20:25','2011-06-30 14:20:25','',74,'http://bestecommerce-uk.com/?p=78',0,'revision','',0),(79,1,'2011-06-30 14:22:47','2011-06-30 14:22:47','<h1>E-Commerce WebShop 3.0 Pro</h1>\r\n\r\n<p>Consectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique.</p>\r\n\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30pro.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30pro.png\" alt=\"\" title=\"webshop_30pro\" width=\"178\" height=\"189\" class=\"alignright size-full wp-image-77\" /></a>\r\n\r\n[tabs]\r\n	[tab title=\"Our Packages\"]<h3>Lorem ipsum dolor sit amet</h3> \r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" class=\"styled-image popup alignright\" title=\"Click me to enlarge!\" rel=\"tab-1\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" width=\"206\" height=\"117\" alt=\"Click me to enlarge!\" class=\"alignright\" /></a>\r\n<p>Consectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique. Quisque mattis elit eros, non facilisis sem. Cras a congue neque. In massa purus, ornare in sagittis id, accumsan ac nisl. Sed sit amet nulla ac dolor adipiscing.</p>[/tab]\r\n	[tab title=\"Our Capabilities\"][bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n	</ul>\r\n[/bullet_list][/tab]\r\n	[tab title=\"Our Support\"]Tab content...[/tab]\r\n[/tabs]','E-Commerce WebShop Pro','','inherit','closed','closed','','74-revision-4','','','2011-06-30 14:22:47','2011-06-30 14:22:47','',74,'http://bestecommerce-uk.com/?p=79',0,'revision','',0),(80,1,'2011-06-30 14:24:35','2011-06-30 14:24:35','<h1>E-Commerce WebShop 3.0 Pro</h1>\r\n\r\n[one_half]<p>Consectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique.</p>[/one_half]\r\n[one_half_last]<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30pro.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30pro.png\" alt=\"\" title=\"webshop_30pro\" width=\"178\" height=\"189\" class=\"alignright size-full wp-image-77\" /></a>[/one_half_last]\r\n\r\n\r\n\r\n\r\n[tabs]\r\n	[tab title=\"Our Packages\"]<h3>Lorem ipsum dolor sit amet</h3> \r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" class=\"styled-image popup alignright\" title=\"Click me to enlarge!\" rel=\"tab-1\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" width=\"206\" height=\"117\" alt=\"Click me to enlarge!\" class=\"alignright\" /></a>\r\n<p>Consectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique. Quisque mattis elit eros, non facilisis sem. Cras a congue neque. In massa purus, ornare in sagittis id, accumsan ac nisl. Sed sit amet nulla ac dolor adipiscing.</p>[/tab]\r\n	[tab title=\"Our Capabilities\"][bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n	</ul>\r\n[/bullet_list][/tab]\r\n	[tab title=\"Our Support\"]Tab content...[/tab]\r\n[/tabs]','E-Commerce WebShop Pro','','inherit','closed','closed','','74-revision-5','','','2011-06-30 14:24:35','2011-06-30 14:24:35','',74,'http://bestecommerce-uk.com/?p=80',0,'revision','',0),(81,1,'2011-06-30 14:26:03','2011-06-30 14:26:03','<h1>E-Commerce WebShop 3.0 Pro</h1>\r\n\r\n[one_half]<p>Consectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique.</p>[/one_half]\r\n[one_half_last]<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30pro.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30pro.png\" alt=\"\" title=\"webshop_30pro\" width=\"178\" height=\"189\" class=\"alignleft size-full wp-image-77\" /></a>[/one_half_last]\r\n\r\n\r\n\r\n\r\n[tabs]\r\n	[tab title=\"Our Packages\"]<h3>Lorem ipsum dolor sit amet</h3> \r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" class=\"styled-image popup alignright\" title=\"Click me to enlarge!\" rel=\"tab-1\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" width=\"206\" height=\"117\" alt=\"Click me to enlarge!\" class=\"alignright\" /></a>\r\n<p>Consectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique. Quisque mattis elit eros, non facilisis sem. Cras a congue neque. In massa purus, ornare in sagittis id, accumsan ac nisl. Sed sit amet nulla ac dolor adipiscing.</p>[/tab]\r\n	[tab title=\"Our Capabilities\"][bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n	</ul>\r\n[/bullet_list][/tab]\r\n	[tab title=\"Our Support\"]Tab content...[/tab]\r\n[/tabs]','E-Commerce WebShop Pro','','inherit','closed','closed','','74-revision-6','','','2011-06-30 14:26:03','2011-06-30 14:26:03','',74,'http://bestecommerce-uk.com/?p=81',0,'revision','',0),(82,1,'2011-12-16 11:23:32','2011-12-16 11:23:32','<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\">\n<div class=\"i0 ugc\">\n\n<p>This is the choice for companies with a vision of an online customer base. WebShop 3.0 Pro will give you an e-commerce hub short of nothing with the Internet giants.</p>\n<p>We can make a website that segregates products by a range of factors, directs customers to other products they might like and add commercial links with Amazon and eBay..</p> \n<h2>£2999 + £60/month   </h2>\n<p>See here our full list of <a href=\"http://www.webdesign-uk.org/webshop-3-0-feature-list\">Webshop features</a>.</p>\n<p>If the offer interests you, please complete a contact form through the button below for a call back, or call us directly to tell us of your requirements.<p/>\n<a class=\"btn orange\" href=\"/contact-form-2\"><span>Contact Form</span></a>\n\n</div>\n</div>\n\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\n\n\n</div>\n</div>','WebShop Pro Package','','inherit','closed','closed','','74-autosave','','','2011-12-16 11:23:32','2011-12-16 11:23:32','',74,'http://bestecommerce-uk.com/?p=82',0,'revision','',0),(909,1,'2011-12-09 15:24:57','2011-12-09 15:24:57','<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\">\r\n<div class=\"i0 ugc\">\r\n\r\n<p>Our flagship product for the SME\'s and growing companies, WebShop 3.0 Pro provides a high level of function across the board.</p>\r\n<p>Supporting advanced functions from multi-tiered pricing structures to integration with Amazon and eBay, the pro system is the benchmark for growing and established High Street brand retailers</p> \r\n<h2>£2999 + £60/month   </h2>\r\n<p>See here our full list of <a href=\"http://www.webdesign-uk.org/webshop-3-0-feature-list\">Webshop features</a>.</p>\r\n<p>If you are interested in this product, please use the button below to complete a contact form for a call back or call us directly to discuss your requirements.<p/>\r\n<a class=\"btn orange\" href=\"/contact-form-2\"><span>Contact Form</span></a>\r\n\r\n</div>\r\n</div>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n\r\n</div>\r\n</div>','eCommerce UK WebShop Pro','','inherit','closed','closed','','74-revision-44','','','2011-12-09 15:24:57','2011-12-09 15:24:57','',74,'http://www.ecommerce-uk.org/2011/12/74-revision-44/',0,'revision','',0),(778,1,'2011-12-05 16:35:04','2011-12-05 16:35:04','<h1>eCommerce WebShop 3.0 Pro</h1>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\">\r\n<br/>\r\n<p>Our flagship product for the SME\'s and growing companies, WebShop 3.0 Pro provides a high level of function across the board.</p>\r\n<p>Supporting advanced functions from multi-tiered pricing structures to integration with Amazon and eBay, the pro system is the benchmark for growing and established High Street brand retailers</p> \r\n<h2>£2999 + £60/month   </h2>\r\n<p>See here our full list of <a href=\"http://www.webdesign-uk.org/webshop-3-0-feature-list\">Webshop features</a>.</p>\r\n<p>If you are interested in this product, please use the button below to complete a contact form for a call back or call us directly to discuss your requirements.<p/>\r\n<a class=\"btn orange\" href=\"/contact-form-2\"><span>Contact Form</span></a>\r\n\r\n</div></div>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n\r\n</div></div>\r\n\r\n\r\n\r\n','eCommerce WebShop Pro','','inherit','closed','closed','','74-revision-38','','','2011-12-05 16:35:04','2011-12-05 16:35:04','',74,'http://www.ecommerce-uk.org/2011/12/74-revision-38/',0,'revision','',0),(83,1,'2011-06-30 14:33:54','2011-06-30 14:33:54','','webshop_30prox','','inherit','closed','closed','','webshop_30prox','','','2011-06-30 14:33:54','2011-06-30 14:33:54','',74,'http://bestecommerce-uk.com/wp-content/uploads/2011/06/webshop_30prox.png',0,'attachment','image/png',0),(84,1,'2011-06-30 14:31:45','2011-06-30 14:31:45','<h1>E-Commerce WebShop 3.0 Pro</h1>\r\n\r\n[one_half]<br /><p>Consectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique.</p>[/one_half]\r\n[one_half_last]<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30pro.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30pro.png\" alt=\"\" title=\"webshop_30pro\" width=\"178\" height=\"189\" class=\"alignleft size-full wp-image-77\" /></a>[/one_half_last]\r\n\r\n\r\n\r\n\r\n[tabs]\r\n	[tab title=\"Our Packages\"]<h3>Lorem ipsum dolor sit amet</h3> \r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" class=\"styled-image popup alignright\" title=\"Click me to enlarge!\" rel=\"tab-1\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" width=\"206\" height=\"117\" alt=\"Click me to enlarge!\" class=\"alignright\" /></a>\r\n<p>Consectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique. Quisque mattis elit eros, non facilisis sem. Cras a congue neque. In massa purus, ornare in sagittis id, accumsan ac nisl. Sed sit amet nulla ac dolor adipiscing.</p>[/tab]\r\n	[tab title=\"Our Capabilities\"][bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n	</ul>\r\n[/bullet_list][/tab]\r\n	[tab title=\"Our Support\"]Tab content...[/tab]\r\n[/tabs]','E-Commerce WebShop Pro','','inherit','closed','closed','','74-revision-7','','','2011-06-30 14:31:45','2011-06-30 14:31:45','',74,'http://bestecommerce-uk.com/?p=84',0,'revision','',0),(85,1,'2011-06-30 13:51:07','2011-06-30 13:51:07','Our Packages below:','Best E-Commerce Packages','','inherit','closed','closed','','71-revision-2','','','2011-06-30 13:51:07','2011-06-30 13:51:07','',71,'http://bestecommerce-uk.com/?p=85',0,'revision','',0),(86,1,'2011-06-30 14:34:24','2011-06-30 14:34:24','<h1>E-Commerce WebShop 3.0 Pro</h1>\r\n\r\n[one_half]<br /><p>Consectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique.</p>[/one_half]\r\n[one_half_last]<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a> [/one_half_last]\r\n\r\n\r\n\r\n\r\n[tabs]\r\n	[tab title=\"Our Packages\"]<h3>Lorem ipsum dolor sit amet</h3> \r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" class=\"styled-image popup alignright\" title=\"Click me to enlarge!\" rel=\"tab-1\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" width=\"206\" height=\"117\" alt=\"Click me to enlarge!\" class=\"alignright\" /></a>\r\n<p>Consectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique. Quisque mattis elit eros, non facilisis sem. Cras a congue neque. In massa purus, ornare in sagittis id, accumsan ac nisl. Sed sit amet nulla ac dolor adipiscing.</p>[/tab]\r\n	[tab title=\"Our Capabilities\"][bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n	</ul>\r\n[/bullet_list][/tab]\r\n	[tab title=\"Our Support\"]Tab content...[/tab]\r\n[/tabs]','E-Commerce WebShop Pro','','inherit','closed','closed','','74-revision-8','','','2011-06-30 14:34:24','2011-06-30 14:34:24','',74,'http://bestecommerce-uk.com/?p=86',0,'revision','',0),(87,1,'2011-06-30 14:52:14','2011-06-30 14:52:14','<h1>E-Commerce WebShop 3.0 Pro</h1>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>Consectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique.</p> </div></div>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n</div></div>\r\n[one_half_last] [/one_half_last]\r\n\r\n\r\n\r\n\r\n[tabs]\r\n	[tab title=\"Our Packages\"]<h3>Lorem ipsum dolor sit amet</h3> \r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" class=\"styled-image popup alignright\" title=\"Click me to enlarge!\" rel=\"tab-1\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" width=\"206\" height=\"117\" alt=\"Click me to enlarge!\" class=\"alignright\" /></a>\r\n<p>Consectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique. Quisque mattis elit eros, non facilisis sem. Cras a congue neque. In massa purus, ornare in sagittis id, accumsan ac nisl. Sed sit amet nulla ac dolor adipiscing.</p>[/tab]\r\n	[tab title=\"Our Capabilities\"][bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n	</ul>\r\n[/bullet_list][/tab]\r\n	[tab title=\"Our Support\"]Tab content...[/tab]\r\n[/tabs]','E-Commerce WebShop Pro','','inherit','closed','closed','','74-revision-9','','','2011-06-30 14:52:14','2011-06-30 14:52:14','',74,'http://bestecommerce-uk.com/?p=87',0,'revision','',0),(88,1,'2011-06-30 16:22:17','2011-06-30 16:22:17','Our Packages below:\r\n\r\nmore here','','','publish','closed','closed','','88','','','2011-12-16 13:41:25','2011-12-16 13:41:25','',0,'http://bestecommerce-uk.com/?p=88',14,'nav_menu_item','',0),(261,1,'2011-07-18 10:51:00','2011-07-18 10:51:00','eCommerce WebShop 3.0 Standard\r\n\r\nWebShop 3.0 Standard provides a strong base from which to grow your presence on-line with unlimited products and categories and unrivalled ease of use.Supporting advanced functions from weight based shipping, to managing stock and invoicing, the standard system is aimed at SME’s, and growing on-line retailer seeking a site with professional design, functions and ease of use. \r\n£1999 + £60/month   \r\nAdd to Cart/Sign-Up\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n[one_half_last] [/one_half_last]\r\n\r\n\r\n\r\n\r\n\r\n\r\n[tabs]\r\n	[tab title=\"Our Packages\"]Lorem ipsum dolor sit amet \r\n\r\nConsectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique. Quisque mattis elit eros, non facilisis sem. Cras a congue neque. In massa purus, ornare in sagittis id, accumsan ac nisl. Sed sit amet nulla ac dolor adipiscing.[/tab]\r\n	[tab title=\"Our Capabilities\"][bullet_list icon=\"check\"]\r\n	\r\n		Your Text\r\n		Your Text\r\n		Your Text\r\n	\r\n[/bullet_list][/tab]\r\n	[tab title=\"Our Support\"]Tab content…[/tab]\r\n[/tabs]','','','publish','closed','closed','','261','','','2011-07-18 10:51:00','2011-07-18 10:51:00','',71,'http://bestecommerce-uk.com/?p=261',1,'nav_menu_item','',0),(92,1,'2011-06-30 16:39:03','2011-06-30 16:39:03','E-Commerce WebShop 3.0 Pro\r\n\r\nConsectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique. \r\n\r\n\r\n\r\n\r\n\r\n[one_half_last] [/one_half_last]\r\n\r\n\r\n\r\n\r\n[tabs]\r\n	[tab title=\"Our Packages\"]Lorem ipsum dolor sit amet \r\n\r\nConsectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique. Quisque mattis elit eros, non facilisis sem. Cras a congue neque. In massa purus, ornare in sagittis id, accumsan ac nisl. Sed sit amet nulla ac dolor adipiscing.[/tab]\r\n	[tab title=\"Our Capabilities\"][bullet_list icon=\"check\"]\r\n	\r\n		Your Text\r\n		Your Text\r\n		Your Text\r\n	\r\n[/bullet_list][/tab]\r\n	[tab title=\"Our Support\"]Tab content…[/tab]\r\n[/tabs]','','','publish','closed','closed','','92','','','2011-12-16 13:02:47','2011-12-16 13:02:47','',71,'http://bestecommerce-uk.com/?p=92',3,'nav_menu_item','',0),(98,1,'2011-06-30 17:03:29','2011-06-30 17:03:29','new to ecommerce...','New to eCommerce?','','inherit','closed','closed','','97-revision','','','2011-06-30 17:03:29','2011-06-30 17:03:29','',97,'http://bestecommerce-uk.com/?p=98',0,'revision','',0),(99,1,'2011-06-30 16:44:42','2011-06-30 16:44:42','Blog Page','Blog','','inherit','closed','closed','','68-revision-4','','','2011-06-30 16:44:42','2011-06-30 16:44:42','',68,'http://bestecommerce-uk.com/?p=99',0,'revision','',0),(100,1,'2011-06-30 17:09:00','2011-06-30 17:09:00','<h2>Blog Page</h2>\r\n\r\n[blog category=\"8\" orderby=\"rand\"]','Blog','','inherit','closed','closed','','68-revision-5','','','2011-06-30 17:09:00','2011-06-30 17:09:00','',68,'http://bestecommerce-uk.com/?p=100',0,'revision','',0),(101,1,'2011-06-30 17:13:36','2011-06-30 17:13:36','<h2>Blog Page</h2>\r\n\r\n[blog category=\"1\" orderby=\"rand\"]','Blog','','inherit','closed','closed','','68-revision-6','','','2011-06-30 17:13:36','2011-06-30 17:13:36','',68,'http://bestecommerce-uk.com/?p=101',0,'revision','',0),(102,1,'2011-06-30 17:15:09','2011-06-30 17:15:09','[blog category=\"7,8,9\"]','Blog','','inherit','closed','closed','','68-autosave','','','2011-06-30 17:15:09','2011-06-30 17:15:09','',68,'http://bestecommerce-uk.com/?p=102',0,'revision','',0),(103,1,'2011-06-30 17:14:04','2011-06-30 17:14:04','[blog category=\"1\" orderby=\"rand\"]','Blog','','inherit','closed','closed','','68-revision-7','','','2011-06-30 17:14:04','2011-06-30 17:14:04','',68,'http://bestecommerce-uk.com/?p=103',0,'revision','',0),(104,1,'2011-06-30 17:20:40','2011-06-30 17:20:40','','postimage1','','inherit','closed','closed','','postimage1','','','2011-06-30 17:20:40','2011-06-30 17:20:40','',9,'http://bestecommerce-uk.com/wp-content/uploads/2011/06/postimage1.jpg',0,'attachment','image/jpeg',0),(105,1,'2011-06-30 17:15:12','2011-06-30 17:15:12','[blog category=\"1,2,3\"]','Blog','','inherit','closed','closed','','68-revision-8','','','2011-06-30 17:15:12','2011-06-30 17:15:12','',68,'http://bestecommerce-uk.com/?p=105',0,'revision','',0),(106,1,'2011-06-29 23:55:05','2011-06-29 23:55:05','Hot tips on e-commerce SEO in 2011 are...','SEO for 2011','','inherit','closed','closed','','9-revision-3','','','2011-06-29 23:55:05','2011-06-29 23:55:05','',9,'http://bestecommerce-uk.com/?p=106',0,'revision','',0),(107,1,'2011-06-30 14:42:22','2011-06-30 14:42:22','Our Packages below:\r\n\r\nmore here','Best E-Commerce Packages','','inherit','closed','closed','','71-revision-3','','','2011-06-30 14:42:22','2011-06-30 14:42:22','',71,'http://bestecommerce-uk.com/?p=107',0,'revision','',0),(108,1,'2011-06-30 15:36:41','2011-06-30 15:36:41','<h1>E-Commerce WebShop 3.0 Pro</h1>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>Consectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique.</p> </div></div>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n</div></div>\r\n[one_half_last] [/one_half_last]\r\n\r\n\r\n\r\n\r\n[tabs]\r\n	[tab title=\"Our Packages\"]<h3>Lorem ipsum dolor sit amet</h3> \r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" class=\"styled-image popup alignright\" title=\"Click me to enlarge!\" rel=\"tab-1\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" width=\"206\" height=\"117\" alt=\"Click me to enlarge!\" class=\"alignright\" /></a>\r\n<p>Consectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique. Quisque mattis elit eros, non facilisis sem. Cras a congue neque. In massa purus, ornare in sagittis id, accumsan ac nisl. Sed sit amet nulla ac dolor adipiscing.</p>[/tab]\r\n	[tab title=\"Our Capabilities\"][bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n	</ul>\r\n[/bullet_list][/tab]\r\n	[tab title=\"Our Support\"]Tab content...[/tab]\r\n[/tabs]','E-Commerce WebShop Pro','','inherit','closed','closed','','74-revision-10','','','2011-06-30 15:36:41','2011-06-30 15:36:41','',74,'http://bestecommerce-uk.com/?p=108',0,'revision','',0),(109,1,'2011-06-30 21:20:37','2011-06-30 21:20:37','','bestecommerce-uk.com_logox','','inherit','closed','closed','','bestecommerce-uk-com_logox','','','2011-06-30 21:20:37','2011-06-30 21:20:37','',0,'http://bestecommerce-uk.com/wp-content/uploads/2011/06/bestecommerce-uk.com_logox.png',0,'attachment','image/png',0),(111,1,'2011-06-30 17:27:13','2011-06-30 17:27:13','Our Packages below:\r\n\r\nmore here','Best E-Commerce Packages','','inherit','closed','closed','','71-revision-4','','','2011-06-30 17:27:13','2011-06-30 17:27:13','',71,'http://bestecommerce-uk.com/?p=111',0,'revision','',0),(112,1,'2011-06-30 17:28:55','2011-06-30 17:28:55','<h1>E-Commerce WebShop 3.0 Pro</h1>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>Consectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique.</p> </div></div>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n</div></div>\r\n[one_half_last] [/one_half_last]\r\n\r\n\r\n\r\n\r\n[tabs]\r\n	[tab title=\"Our Packages\"]<h3>Lorem ipsum dolor sit amet</h3> \r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" class=\"styled-image popup alignright\" title=\"Click me to enlarge!\" rel=\"tab-1\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" width=\"206\" height=\"117\" alt=\"Click me to enlarge!\" class=\"alignright\" /></a>\r\n<p>Consectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique. Quisque mattis elit eros, non facilisis sem. Cras a congue neque. In massa purus, ornare in sagittis id, accumsan ac nisl. Sed sit amet nulla ac dolor adipiscing.</p>[/tab]\r\n	[tab title=\"Our Capabilities\"][bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n	</ul>\r\n[/bullet_list][/tab]\r\n	[tab title=\"Our Support\"]Tab content...[/tab]\r\n[/tabs]','E-Commerce WebShop Pro','','inherit','closed','closed','','74-revision-11','','','2011-06-30 17:28:55','2011-06-30 17:28:55','',74,'http://bestecommerce-uk.com/?p=112',0,'revision','',0),(113,1,'2011-06-30 11:39:17','2011-06-30 11:39:17','A list of frequently asked questions below:\r\n\r\n[toggle title=\"How much does an eCommerce Website cost?\"]The cost varies depending on what package you choose...[/toggle]\r\n[toggle title=\"How long will it take to build our site?\"]Usually 3-4 weeks depending on the add-ons you require...[/toggle]','FAQ\'s','','inherit','closed','closed','','49-revision-2','','','2011-06-30 11:39:17','2011-06-30 11:39:17','',49,'http://bestecommerce-uk.com/?p=113',0,'revision','',0),(117,1,'2011-07-01 00:44:07','2011-07-01 00:44:07','','slider1a','','inherit','closed','closed','','slider1a','','','2011-07-01 00:44:07','2011-07-01 00:44:07','',0,'http://bestecommerce-uk.com/wp-content/uploads/2011/07/slider1a.jpg',0,'attachment','image/jpeg',0),(115,1,'2011-07-01 00:24:49','2011-07-01 00:24:49','','bestecommerce-uk.com_logoy','','inherit','closed','closed','','bestecommerce-uk-com_logoy','','','2011-07-01 00:24:49','2011-07-01 00:24:49','',0,'http://bestecommerce-uk.com/wp-content/uploads/2011/07/bestecommerce-uk.com_logoy.png',0,'attachment','image/png',0),(116,1,'2011-06-30 21:45:10','2011-06-30 21:45:10','Our Packages below:\r\n\r\nmore here','Best E-Commerce Packages','','inherit','closed','closed','','71-revision-5','','','2011-06-30 21:45:10','2011-06-30 21:45:10','',71,'http://bestecommerce-uk.com/2011/06/71-revision-5/',0,'revision','',0),(118,1,'2011-07-01 00:52:20','2011-07-01 00:52:20','','slider3a','','inherit','closed','closed','','slider3a','','','2011-07-01 00:52:20','2011-07-01 00:52:20','',0,'http://bestecommerce-uk.com/wp-content/uploads/2011/07/slider3a.jpg',0,'attachment','image/jpeg',0),(119,1,'2011-07-01 00:52:22','2011-07-01 00:52:22','','slider2a','','inherit','closed','closed','','slider2a','','','2011-07-01 00:52:22','2011-07-01 00:52:22','',0,'http://bestecommerce-uk.com/wp-content/uploads/2011/07/slider2a.jpg',0,'attachment','image/jpeg',0),(120,1,'2011-12-16 13:38:07','2011-12-16 13:38:07','<p>We will upload a set number of products with prices and categories. The website will have the capacity for unlimited products, and we will ensure you have the technical understanding to expand and update it.</p>\n\n[pricing_table columns=\"3\"]\n[pricing_column title=\"WebShop Lite\"]\n<ul>\n	<li>[price_info cost=\"£999\"] + £60 per month[/price_info]</li>\n	<li>Entry level product for small companies starting on the Internet.</li>\n	<li>30 products as part of the deal</li>\n	<li><a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img class=\"alignnone size-full wp-image-83\" title=\"webshop_30prox\" src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" width=\"178\" height=\"189\" /></a></li>\n</ul>\n[/pricing_column]\n[pricing_column title=\"WebShop Standard\" highlight=\"true\"]\n<ul>\n	<li>[price_info cost=\"£1999\"]+ £60 per month[/price_info]</li>\n	<li>The basis to develop an e-commerce website.</li>\n	<li>60 products as part of the deal</li>\n	<li><a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img class=\"alignnone size-full wp-image-83\" title=\"webshop_30prox\" src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" width=\"178\" height=\"189\" /></a></li>\n</ul>\n[/pricing_column]\n[pricing_column title=\"WebShop Pro\"]\n<ul>\n	<li>[price_info cost=\"£2999\"]+ £60 per month[/price_info]</li>\n	<li>Web design for a firm intending to make significant sales online.</li>\n	<li>90 products as part of the deal</li>\n	<li><a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img class=\"alignnone size-full wp-image-83\" title=\"webshop_30prox\" src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" width=\"178\" height=\"189\" /></a></li>\n</ul>\n[/pricing_column]\n[/pricing_table]\n\n<p>See here to view our full list of <a href=\"http://www.webdesign-uk.org/webshop-3-0-feature-list\">Webshop features</a>.</p>\n\n<p>If one of these offers interests you, please complete a contact form through the button below for a call back, or call us directly to tell us of your requirements.<p/>\n\n<a class=\"btn orange\" href=\"/contact-form-2\"><span>Contact Form</span></a>\n&nbsp;','Our WebShop Packages','','inherit','closed','closed','','71-autosave','','','2011-12-16 13:38:07','2011-12-16 13:38:07','',71,'http://bestecommerce-uk.com/2011/07/71-autosave/',0,'revision','',0),(121,1,'2011-07-01 00:35:53','2011-07-01 00:35:53','[pricing_table columns=\"3\"]\r\n	[pricing_column title=\"Column 1\"]\r\n	    <ul>\r\n		<li>[price_info cost=\"$14.99\"]1 month[/price_info]</li>\r\n		<li>Item description and details...</li>\r\n		<li>Some more info...</li>\r\n		<li>[button_link url=\"\"]Title[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n	[pricing_column title=\"Column 2\" highlight=\"true\"]\r\n	    <ul>\r\n	 	<li>[price_info cost=\"$24.99\"]3 months[/price_info]</li>\r\n		<li>Item description and details...</li>\r\n		<li>Some more info...</li>\r\n		<li>[button_link url=\"\" style=\"impactBtn\"]Title[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n	[pricing_column title=\"Column 3\"] \r\n	    <ul>\r\n		<li>[price_info cost=\"$59.99\"]6 months[/price_info]</li>\r\n		<li>Item description and details...</li>\r\n		<li>Some more info...</li>\r\n		<li>[button_link url=\"\"]Title[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n[/pricing_table]\r\n','Best E-Commerce Packages','','inherit','closed','closed','','71-revision-6','','','2011-07-01 00:35:53','2011-07-01 00:35:53','',71,'http://bestecommerce-uk.com/2011/07/71-revision-6/',0,'revision','',0),(122,1,'2011-07-01 01:00:11','2011-07-01 01:00:11','[pricing_table columns=\"3\"]\r\n	[pricing_column title=\"WebShop Lite\"]\r\n	    <ul>\r\n		<li>[price_info cost=\"£1499\"]1 month[/price_info]</li>\r\n		<li>Item description and details...</li>\r\n		<li>Some more info...</li>\r\n		<li>[button_link url=\"\"]Title[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n	[pricing_column title=\"WebShop Standard\" highlight=\"true\"]\r\n	    <ul>\r\n	 	<li>[price_info cost=\"£2999\"]months[/price_info]</li>\r\n		<li>Item description and details...</li>\r\n		<li>Some more info...</li>\r\n		<li>[button_link url=\"\" style=\"impactBtn\"]Title[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n	[pricing_column title=\"WebShop Pro\"] \r\n	    <ul>\r\n		<li>[price_info cost=\"$5999\"]6 months[/price_info]</li>\r\n		<li>Item description and details...</li>\r\n		<li>Some more info...</li>\r\n		<li>[button_link url=\"\"]Title[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n[/pricing_table]\r\n','Best E-Commerce Packages','','inherit','closed','closed','','71-revision-7','','','2011-07-01 01:00:11','2011-07-01 01:00:11','',71,'http://bestecommerce-uk.com/2011/07/71-revision-7/',0,'revision','',0),(123,1,'2011-06-30 21:49:56','2011-06-30 21:49:56','<h1>E-Commerce WebShop 3.0 Pro</h1>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>Consectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique.</p> </div></div>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n</div></div>\r\n[one_half_last] [/one_half_last]\r\n\r\n\r\n\r\n\r\n[tabs]\r\n	[tab title=\"Our Packages\"]<h3>Lorem ipsum dolor sit amet</h3> \r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" class=\"styled-image popup alignright\" title=\"Click me to enlarge!\" rel=\"tab-1\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" width=\"206\" height=\"117\" alt=\"Click me to enlarge!\" class=\"alignright\" /></a>\r\n<p>Consectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique. Quisque mattis elit eros, non facilisis sem. Cras a congue neque. In massa purus, ornare in sagittis id, accumsan ac nisl. Sed sit amet nulla ac dolor adipiscing.</p>[/tab]\r\n	[tab title=\"Our Capabilities\"][bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n	</ul>\r\n[/bullet_list][/tab]\r\n	[tab title=\"Our Support\"]Tab content...[/tab]\r\n[/tabs]','E-Commerce WebShop Pro','','inherit','closed','closed','','74-revision-12','','','2011-06-30 21:49:56','2011-06-30 21:49:56','',74,'http://bestecommerce-uk.com/2011/06/74-revision-12/',0,'revision','',0),(125,1,'2011-07-01 01:15:47','2011-07-01 01:15:47','<h1>E-Commerce WebShop 3.0 Pro</h1>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>Consectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique.</p> </div></div>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n</div></div>\r\n[one_half_last] [/one_half_last]\r\n\r\n<h2>£1999 + £60/month</h2>[button style=\"impactBtn\" onclick=\"link(\'http://www.paypal.com\');\"]Impact Button[/button]\r\n\r\n\r\n\r\n\r\n[tabs]\r\n	[tab title=\"Our Packages\"]<h3>Lorem ipsum dolor sit amet</h3> \r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" class=\"styled-image popup alignright\" title=\"Click me to enlarge!\" rel=\"tab-1\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" width=\"206\" height=\"117\" alt=\"Click me to enlarge!\" class=\"alignright\" /></a>\r\n<p>Consectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique. Quisque mattis elit eros, non facilisis sem. Cras a congue neque. In massa purus, ornare in sagittis id, accumsan ac nisl. Sed sit amet nulla ac dolor adipiscing.</p>[/tab]\r\n	[tab title=\"Our Capabilities\"][bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n	</ul>\r\n[/bullet_list][/tab]\r\n	[tab title=\"Our Support\"]Tab content...[/tab]\r\n[/tabs]','E-Commerce WebShop Pro','','inherit','closed','closed','','74-revision-14','','','2011-07-01 01:15:47','2011-07-01 01:15:47','',74,'http://bestecommerce-uk.com/2011/07/74-revision-14/',0,'revision','',0),(124,1,'2011-07-01 01:12:25','2011-07-01 01:12:25','<h1>E-Commerce WebShop 3.0 Pro</h1>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>Consectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique.</p> </div></div>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n</div></div>\r\n[one_half_last] [/one_half_last]\r\n\r\n<h3>£1999 + £60/month</h3>[button_link url=\"http://www.paypal.com\"]Sign Up[/button_link]\r\n\r\n\r\n\r\n\r\n[tabs]\r\n	[tab title=\"Our Packages\"]<h3>Lorem ipsum dolor sit amet</h3> \r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" class=\"styled-image popup alignright\" title=\"Click me to enlarge!\" rel=\"tab-1\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" width=\"206\" height=\"117\" alt=\"Click me to enlarge!\" class=\"alignright\" /></a>\r\n<p>Consectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique. Quisque mattis elit eros, non facilisis sem. Cras a congue neque. In massa purus, ornare in sagittis id, accumsan ac nisl. Sed sit amet nulla ac dolor adipiscing.</p>[/tab]\r\n	[tab title=\"Our Capabilities\"][bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n	</ul>\r\n[/bullet_list][/tab]\r\n	[tab title=\"Our Support\"]Tab content...[/tab]\r\n[/tabs]','E-Commerce WebShop Pro','','inherit','closed','closed','','74-revision-13','','','2011-07-01 01:12:25','2011-07-01 01:12:25','',74,'http://bestecommerce-uk.com/2011/07/74-revision-13/',0,'revision','',0),(126,1,'2011-07-01 01:18:08','2011-07-01 01:18:08','<h1>E-Commerce WebShop 3.0 Pro</h1>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>Consectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique.</p> </div></div>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n<br />\r\n<h2>£1999 + £60/month</h2>[button_link url=\"http://www.mysite.com\"]Button Text[/button_link]\r\n\r\n</div></div>\r\n[one_half_last] [/one_half_last]\r\n\r\n\r\n\r\n\r\n\r\n\r\n[tabs]\r\n	[tab title=\"Our Packages\"]<h3>Lorem ipsum dolor sit amet</h3> \r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" class=\"styled-image popup alignright\" title=\"Click me to enlarge!\" rel=\"tab-1\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" width=\"206\" height=\"117\" alt=\"Click me to enlarge!\" class=\"alignright\" /></a>\r\n<p>Consectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique. Quisque mattis elit eros, non facilisis sem. Cras a congue neque. In massa purus, ornare in sagittis id, accumsan ac nisl. Sed sit amet nulla ac dolor adipiscing.</p>[/tab]\r\n	[tab title=\"Our Capabilities\"][bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n	</ul>\r\n[/bullet_list][/tab]\r\n	[tab title=\"Our Support\"]Tab content...[/tab]\r\n[/tabs]','E-Commerce WebShop Pro','','inherit','closed','closed','','74-revision-15','','','2011-07-01 01:18:08','2011-07-01 01:18:08','',74,'http://bestecommerce-uk.com/2011/07/74-revision-15/',0,'revision','',0),(127,1,'2011-07-01 01:18:56','2011-07-01 01:18:56','<h1>E-Commerce WebShop 3.0 Pro</h1>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>Consectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique.</p> </div></div>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n<br />\r\n<h2>£1999 + £60/month</h2>[button_link url=\"http://www.mysite.com\"]Add to Cart[/button_link]<br />\r\n\r\n</div></div>\r\n[one_half_last] [/one_half_last]\r\n\r\n\r\n\r\n\r\n\r\n\r\n[tabs]\r\n	[tab title=\"Our Packages\"]<h3>Lorem ipsum dolor sit amet</h3> \r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" class=\"styled-image popup alignright\" title=\"Click me to enlarge!\" rel=\"tab-1\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" width=\"206\" height=\"117\" alt=\"Click me to enlarge!\" class=\"alignright\" /></a>\r\n<p>Consectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique. Quisque mattis elit eros, non facilisis sem. Cras a congue neque. In massa purus, ornare in sagittis id, accumsan ac nisl. Sed sit amet nulla ac dolor adipiscing.</p>[/tab]\r\n	[tab title=\"Our Capabilities\"][bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n	</ul>\r\n[/bullet_list][/tab]\r\n	[tab title=\"Our Support\"]Tab content...[/tab]\r\n[/tabs]','E-Commerce WebShop Pro','','inherit','closed','closed','','74-revision-16','','','2011-07-01 01:18:56','2011-07-01 01:18:56','',74,'http://bestecommerce-uk.com/2011/07/74-revision-16/',0,'revision','',0),(134,1,'2011-07-01 01:28:29','2011-07-01 01:28:29','<h1>E-Commerce WebShop 3.0 Pro</h1>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>Consectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique.</p> \r\n<h2>£1999 + £60/month   </h2>\r\n<a href=\"/about-us\" class=\"btn impactBtn\"><span>Add to Cart/Sign-Up</span></a><br /><br />\r\n\r\n</div></div>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n\r\n</div></div>\r\n[one_half_last] [/one_half_last]\r\n\r\n\r\n\r\n\r\n\r\n\r\n[tabs]\r\n	[tab title=\"Our Packages\"]<h3>Lorem ipsum dolor sit amet</h3> \r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" class=\"styled-image popup alignright\" title=\"Click me to enlarge!\" rel=\"tab-1\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" width=\"206\" height=\"117\" alt=\"Click me to enlarge!\" class=\"alignright\" /></a>\r\n<p>Consectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique. Quisque mattis elit eros, non facilisis sem. Cras a congue neque. In massa purus, ornare in sagittis id, accumsan ac nisl. Sed sit amet nulla ac dolor adipiscing.</p>[/tab]\r\n	[tab title=\"Our Capabilities\"][bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n	</ul>\r\n[/bullet_list][/tab]\r\n	[tab title=\"Our Support\"]Tab content...[/tab]\r\n[/tabs]','E-Commerce WebShop Pro','','inherit','closed','closed','','74-revision-23','','','2011-07-01 01:28:29','2011-07-01 01:28:29','',74,'http://bestecommerce-uk.com/2011/07/74-revision-23/',0,'revision','',0),(128,1,'2011-07-01 01:19:02','2011-07-01 01:19:02','<h1>E-Commerce WebShop 3.0 Pro</h1>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>Consectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique.</p> </div></div>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n\r\n<h2>£1999 + £60/month</h2>[button_link url=\"http://www.mysite.com\"]Add to Cart[/button_link]<br />\r\n\r\n</div></div>\r\n[one_half_last] [/one_half_last]\r\n\r\n\r\n\r\n\r\n\r\n\r\n[tabs]\r\n	[tab title=\"Our Packages\"]<h3>Lorem ipsum dolor sit amet</h3> \r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" class=\"styled-image popup alignright\" title=\"Click me to enlarge!\" rel=\"tab-1\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" width=\"206\" height=\"117\" alt=\"Click me to enlarge!\" class=\"alignright\" /></a>\r\n<p>Consectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique. Quisque mattis elit eros, non facilisis sem. Cras a congue neque. In massa purus, ornare in sagittis id, accumsan ac nisl. Sed sit amet nulla ac dolor adipiscing.</p>[/tab]\r\n	[tab title=\"Our Capabilities\"][bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n	</ul>\r\n[/bullet_list][/tab]\r\n	[tab title=\"Our Support\"]Tab content...[/tab]\r\n[/tabs]','E-Commerce WebShop Pro','','inherit','closed','closed','','74-revision-17','','','2011-07-01 01:19:02','2011-07-01 01:19:02','',74,'http://bestecommerce-uk.com/2011/07/74-revision-17/',0,'revision','',0),(135,1,'2011-07-01 01:36:01','2011-07-01 01:36:01','<h1>E-Commerce WebShop 3.0 Pro</h1>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>Our flagship product for the SME\'s and growing companies, WebShop 3.0 Pro provides a high level of function across the board. Supporting advanced functions from multi-tiered pricing structures to integration with Amazon and eBay, the pro system is the benchmark for growing and established High Street brand retailers</p> \r\n<h2>£2999 + £60/month   </h2>\r\n<a href=\"/about-us\" class=\"btn impactBtn\"><span>Add to Cart/Sign-Up</span></a><br /><br />\r\n\r\n</div></div>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n\r\n</div></div>\r\n[one_half_last] [/one_half_last]\r\n\r\n\r\n\r\n\r\n\r\n\r\n[tabs]\r\n	[tab title=\"Our Packages\"]<h3>Lorem ipsum dolor sit amet</h3> \r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" class=\"styled-image popup alignright\" title=\"Click me to enlarge!\" rel=\"tab-1\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" width=\"206\" height=\"117\" alt=\"Click me to enlarge!\" class=\"alignright\" /></a>\r\n<p>Consectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique. Quisque mattis elit eros, non facilisis sem. Cras a congue neque. In massa purus, ornare in sagittis id, accumsan ac nisl. Sed sit amet nulla ac dolor adipiscing.</p>[/tab]\r\n	[tab title=\"Our Capabilities\"][bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n	</ul>\r\n[/bullet_list][/tab]\r\n	[tab title=\"Our Support\"]Tab content...[/tab]\r\n[/tabs]','E-Commerce WebShop Pro','','inherit','closed','closed','','74-revision-24','','','2011-07-01 01:36:01','2011-07-01 01:36:01','',74,'http://bestecommerce-uk.com/2011/07/74-revision-24/',0,'revision','',0),(130,1,'2011-07-01 01:24:59','2011-07-01 01:24:59','<h1>E-Commerce WebShop 3.0 Pro</h1>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>Consectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique.</p> </div></div>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n\r\n<h2>£1999 + £60/month</h2>\r\n<a href=\"/about-us\" class=\"btn impactBtn\"><span>Add to Cart/Sign-Up</span></a>\r\n\r\n<br />\r\n\r\n</div></div>\r\n[one_half_last] [/one_half_last]\r\n\r\n\r\n\r\n\r\n\r\n\r\n[tabs]\r\n	[tab title=\"Our Packages\"]<h3>Lorem ipsum dolor sit amet</h3> \r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" class=\"styled-image popup alignright\" title=\"Click me to enlarge!\" rel=\"tab-1\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" width=\"206\" height=\"117\" alt=\"Click me to enlarge!\" class=\"alignright\" /></a>\r\n<p>Consectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique. Quisque mattis elit eros, non facilisis sem. Cras a congue neque. In massa purus, ornare in sagittis id, accumsan ac nisl. Sed sit amet nulla ac dolor adipiscing.</p>[/tab]\r\n	[tab title=\"Our Capabilities\"][bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n	</ul>\r\n[/bullet_list][/tab]\r\n	[tab title=\"Our Support\"]Tab content...[/tab]\r\n[/tabs]','E-Commerce WebShop Pro','','inherit','closed','closed','','74-revision-19','','','2011-07-01 01:24:59','2011-07-01 01:24:59','',74,'http://bestecommerce-uk.com/2011/07/74-revision-19/',0,'revision','',0),(129,1,'2011-07-01 01:24:04','2011-07-01 01:24:04','<h1>E-Commerce WebShop 3.0 Pro</h1>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>Consectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique.</p> </div></div>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n\r\n<h2>£1999 + £60/month</h2>[button_link url=\"http://www.mysite.com\"]Add to Cart[/button_link]\r\n[button style=\"impactBtn\" onclick=\"alert(\'An impact button\');\"]Impact Button[/button]\r\n<a href=\"/about-us\" class=\"btn impactBtn\"><span>Add to Cart/Sign-Up</span></a>\r\n\r\n<br />\r\n\r\n</div></div>\r\n[one_half_last] [/one_half_last]\r\n\r\n\r\n\r\n\r\n\r\n\r\n[tabs]\r\n	[tab title=\"Our Packages\"]<h3>Lorem ipsum dolor sit amet</h3> \r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" class=\"styled-image popup alignright\" title=\"Click me to enlarge!\" rel=\"tab-1\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" width=\"206\" height=\"117\" alt=\"Click me to enlarge!\" class=\"alignright\" /></a>\r\n<p>Consectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique. Quisque mattis elit eros, non facilisis sem. Cras a congue neque. In massa purus, ornare in sagittis id, accumsan ac nisl. Sed sit amet nulla ac dolor adipiscing.</p>[/tab]\r\n	[tab title=\"Our Capabilities\"][bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n	</ul>\r\n[/bullet_list][/tab]\r\n	[tab title=\"Our Support\"]Tab content...[/tab]\r\n[/tabs]','E-Commerce WebShop Pro','','inherit','closed','closed','','74-revision-18','','','2011-07-01 01:24:04','2011-07-01 01:24:04','',74,'http://bestecommerce-uk.com/2011/07/74-revision-18/',0,'revision','',0),(131,1,'2011-07-01 01:26:35','2011-07-01 01:26:35','<h1>E-Commerce WebShop 3.0 Pro</h1>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>Consectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique.</p> </div></div>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n\r\n<h2>£1999 + £60/month   <a href=\"/about-us\" class=\"btn impactBtn\"><span>Add to Cart/Sign-Up</span></a></h2>\r\n\r\n\r\n<br />\r\n\r\n</div></div>\r\n[one_half_last] [/one_half_last]\r\n\r\n\r\n\r\n\r\n\r\n\r\n[tabs]\r\n	[tab title=\"Our Packages\"]<h3>Lorem ipsum dolor sit amet</h3> \r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" class=\"styled-image popup alignright\" title=\"Click me to enlarge!\" rel=\"tab-1\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" width=\"206\" height=\"117\" alt=\"Click me to enlarge!\" class=\"alignright\" /></a>\r\n<p>Consectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique. Quisque mattis elit eros, non facilisis sem. Cras a congue neque. In massa purus, ornare in sagittis id, accumsan ac nisl. Sed sit amet nulla ac dolor adipiscing.</p>[/tab]\r\n	[tab title=\"Our Capabilities\"][bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n	</ul>\r\n[/bullet_list][/tab]\r\n	[tab title=\"Our Support\"]Tab content...[/tab]\r\n[/tabs]','E-Commerce WebShop Pro','','inherit','closed','closed','','74-revision-20','','','2011-07-01 01:26:35','2011-07-01 01:26:35','',74,'http://bestecommerce-uk.com/2011/07/74-revision-20/',0,'revision','',0),(132,1,'2011-07-01 01:27:04','2011-07-01 01:27:04','<h1>E-Commerce WebShop 3.0 Pro</h1>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>Consectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique.</p> </div></div>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n\r\n<h2>£1999 + £60/month   </h2>\r\n<a href=\"/about-us\" class=\"btn impactBtn\"><span>Add to Cart/Sign-Up</span></a>\r\n\r\n\r\n<br />\r\n\r\n</div></div>\r\n[one_half_last] [/one_half_last]\r\n\r\n\r\n\r\n\r\n\r\n\r\n[tabs]\r\n	[tab title=\"Our Packages\"]<h3>Lorem ipsum dolor sit amet</h3> \r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" class=\"styled-image popup alignright\" title=\"Click me to enlarge!\" rel=\"tab-1\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" width=\"206\" height=\"117\" alt=\"Click me to enlarge!\" class=\"alignright\" /></a>\r\n<p>Consectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique. Quisque mattis elit eros, non facilisis sem. Cras a congue neque. In massa purus, ornare in sagittis id, accumsan ac nisl. Sed sit amet nulla ac dolor adipiscing.</p>[/tab]\r\n	[tab title=\"Our Capabilities\"][bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n	</ul>\r\n[/bullet_list][/tab]\r\n	[tab title=\"Our Support\"]Tab content...[/tab]\r\n[/tabs]','E-Commerce WebShop Pro','','inherit','closed','closed','','74-revision-21','','','2011-07-01 01:27:04','2011-07-01 01:27:04','',74,'http://bestecommerce-uk.com/2011/07/74-revision-21/',0,'revision','',0),(133,1,'2011-07-01 01:28:01','2011-07-01 01:28:01','<h1>E-Commerce WebShop 3.0 Pro</h1>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>Consectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique.</p> \r\n<h2>£1999 + £60/month   </h2>\r\n<a href=\"/about-us\" class=\"btn impactBtn\"><span>Add to Cart/Sign-Up</span></a>\r\n\r\n</div></div>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n\r\n</div></div>\r\n[one_half_last] [/one_half_last]\r\n\r\n\r\n\r\n\r\n\r\n\r\n[tabs]\r\n	[tab title=\"Our Packages\"]<h3>Lorem ipsum dolor sit amet</h3> \r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" class=\"styled-image popup alignright\" title=\"Click me to enlarge!\" rel=\"tab-1\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" width=\"206\" height=\"117\" alt=\"Click me to enlarge!\" class=\"alignright\" /></a>\r\n<p>Consectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique. Quisque mattis elit eros, non facilisis sem. Cras a congue neque. In massa purus, ornare in sagittis id, accumsan ac nisl. Sed sit amet nulla ac dolor adipiscing.</p>[/tab]\r\n	[tab title=\"Our Capabilities\"][bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n	</ul>\r\n[/bullet_list][/tab]\r\n	[tab title=\"Our Support\"]Tab content...[/tab]\r\n[/tabs]','E-Commerce WebShop Pro','','inherit','closed','closed','','74-revision-22','','','2011-07-01 01:28:01','2011-07-01 01:28:01','',74,'http://bestecommerce-uk.com/2011/07/74-revision-22/',0,'revision','',0),(136,1,'2011-07-01 01:36:36','2011-07-01 01:36:36','<h1>E-Commerce WebShop 3.0 Pro</h1>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>Our flagship product for the SME\'s and growing companies, WebShop 3.0 Pro provides a high level of function across the board.</p><p>Supporting advanced functions from multi-tiered pricing structures to integration with Amazon and eBay, the pro system is the benchmark for growing and established High Street brand retailers</p> \r\n<h2>£2999 + £60/month   </h2>\r\n<a href=\"/about-us\" class=\"btn impactBtn\"><span>Add to Cart/Sign-Up</span></a><br /><br />\r\n\r\n</div></div>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n\r\n</div></div>\r\n[one_half_last] [/one_half_last]\r\n\r\n\r\n\r\n\r\n\r\n\r\n[tabs]\r\n	[tab title=\"Our Packages\"]<h3>Lorem ipsum dolor sit amet</h3> \r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" class=\"styled-image popup alignright\" title=\"Click me to enlarge!\" rel=\"tab-1\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" width=\"206\" height=\"117\" alt=\"Click me to enlarge!\" class=\"alignright\" /></a>\r\n<p>Consectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique. Quisque mattis elit eros, non facilisis sem. Cras a congue neque. In massa purus, ornare in sagittis id, accumsan ac nisl. Sed sit amet nulla ac dolor adipiscing.</p>[/tab]\r\n	[tab title=\"Our Capabilities\"][bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n	</ul>\r\n[/bullet_list][/tab]\r\n	[tab title=\"Our Support\"]Tab content...[/tab]\r\n[/tabs]','E-Commerce WebShop Pro','','inherit','closed','closed','','74-revision-25','','','2011-07-01 01:36:36','2011-07-01 01:36:36','',74,'http://bestecommerce-uk.com/2011/07/74-revision-25/',0,'revision','',0),(137,1,'2011-07-01 01:43:57','2011-07-01 01:43:57','<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\">\r\n<div class=\"i0 ugc\">\r\n<p>WebShop 3.0 Standard offers the groundwork from which to make the Internet part of your business model.</p><p>We can implement features such as weight based shipping, managing stock and invoicing. The package can offer a website with a professional appearance and ease of use to a small enterprise.</p> \r\n<h2>£1999 + £60/month   </h2>\r\n<p>See here our full list of <a href=\"http://www.webdesign-uk.org/webshop-3-0-feature-list\">Webshop features</a>.</p>\r\n<p>If the offer interests you, please complete a contact form through the button below for a call back, or call us directly to tell us of your requirements.<p/>\r\n\r\n<a href=\"/contact-form-2\" class=\"btn orange\"><span>Contact Form</span></a><br /><br /><br />\r\n\r\n</div></div>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n</div></div>','WebShop Standard Package','','trash','closed','closed','','ecommerce-webshop-standard','','','2011-12-16 13:39:21','2011-12-16 13:39:21','',71,'http://bestecommerce-uk.com/?page_id=137',0,'page','',0),(138,1,'2011-07-01 01:37:01','2011-07-01 01:37:01','<h1>E-Commerce WebShop 3.0 Pro</h1>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>Our flagship product for the SME\'s and growing companies, WebShop 3.0 Pro provides a high level of function across the board.</p><p>Supporting advanced functions from multi-tiered pricing structures to integration with Amazon and eBay, the pro system is the benchmark for growing and established High Street brand retailers</p> \r\n<h2>£2999 + £60/month   </h2>\r\n<a href=\"/about-us\" class=\"btn impactBtn\"><span>Add to Cart/Sign-Up</span></a><br /><br /><br />\r\n\r\n</div></div>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n\r\n</div></div>\r\n[one_half_last] [/one_half_last]\r\n\r\n\r\n\r\n\r\n\r\n\r\n[tabs]\r\n	[tab title=\"Our Packages\"]<h3>Lorem ipsum dolor sit amet</h3> \r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" class=\"styled-image popup alignright\" title=\"Click me to enlarge!\" rel=\"tab-1\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" width=\"206\" height=\"117\" alt=\"Click me to enlarge!\" class=\"alignright\" /></a>\r\n<p>Consectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique. Quisque mattis elit eros, non facilisis sem. Cras a congue neque. In massa purus, ornare in sagittis id, accumsan ac nisl. Sed sit amet nulla ac dolor adipiscing.</p>[/tab]\r\n	[tab title=\"Our Capabilities\"][bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n	</ul>\r\n[/bullet_list][/tab]\r\n	[tab title=\"Our Support\"]Tab content...[/tab]\r\n[/tabs]','E-Commerce WebShop Pro','','inherit','closed','closed','','74-revision-26','','','2011-07-01 01:37:01','2011-07-01 01:37:01','',74,'http://bestecommerce-uk.com/2011/07/74-revision-26/',0,'revision','',0),(139,1,'2011-07-01 01:38:51','2011-07-01 01:38:51','<h1>E-Commerce WebShop 3.0 Pro</h1>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>Our flagship product for the SME\'s and growing companies, WebShop 3.0 Pro provides a high level of function across the board.</p><p>Supporting advanced functions from multi-tiered pricing structures to integration with Amazon and eBay, the pro system is the benchmark for growing and established High Street brand retailers</p> \r\n<h2>£2999 + £60/month   </h2>\r\n<a href=\"/about-us\" class=\"btn impactBtn\"><span>Add to Cart/Sign-Up</span></a><br /><br /><br />\r\n\r\n</div></div>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n\r\n</div></div>\r\n[one_half_last] [/one_half_last]\r\n\r\n\r\n\r\n\r\n\r\n\r\n[tabs]\r\n	[tab title=\"Our Packages\"]<h3>Lorem ipsum dolor sit amet</h3> \r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" class=\"styled-image popup alignright\" title=\"Click me to enlarge!\" rel=\"tab-1\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" width=\"206\" height=\"117\" alt=\"Click me to enlarge!\" class=\"alignright\" /></a>\r\n<p>Consectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique. Quisque mattis elit eros, non facilisis sem. Cras a congue neque. In massa purus, ornare in sagittis id, accumsan ac nisl. Sed sit amet nulla ac dolor adipiscing.</p>[/tab]\r\n	[tab title=\"Our Capabilities\"][bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n	</ul>\r\n[/bullet_list][/tab]\r\n	[tab title=\"Our Support\"]Tab content...[/tab]\r\n[/tabs]','eCommerce WebShop Pro','','inherit','closed','closed','','74-revision-27','','','2011-07-01 01:38:51','2011-07-01 01:38:51','',74,'http://bestecommerce-uk.com/2011/07/74-revision-27/',0,'revision','',0),(469,1,'2011-10-14 14:00:44','2011-10-14 14:00:44','<h1>eCommerce WebShop 3.0 Pro</h1>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>Our flagship product for the SME\'s and growing companies, WebShop 3.0 Pro provides a high level of function across the board.</p><p>Supporting advanced functions from multi-tiered pricing structures to integration with Amazon and eBay, the pro system is the benchmark for growing and established High Street brand retailers</p> \r\n<h2>£2999 + £60/month   </h2>\r\n<p>If you as interested in this product please use the button below to complete a contact form for a call back or call us directly to discuss your requirements.<p/>\r\n<a href=\"/contact-form-2\" class=\"btn impactBtn\"><span>Contact Form</span></a><br /><br /><br />\r\n[button_link url=\"webshop-3-0-feature-list\" style=\"medium blue\"]View Webshop 3.0 functionality[/button_link]\r\n<!--[button_link url=\"http://www.webdesign-uk.org/wp-content/uploads/2011/09/Webshop_3.0_features_list.pdf\" style=\"medium blue\"]Webshop 3.0 functionality.pdf[/button_link]<br /><br /><br />-->\r\n\r\n</div></div>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n\r\n</div></div>\r\n[one_half_last] [/one_half_last]\r\n\r\n\r\n\r\n\r\n\r\n\r\n<!--[tabs]\r\n	[tab title=\"Our Packages\"]<h3>Lorem ipsum dolor sit amet</h3> \r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" class=\"styled-image popup alignright\" title=\"Click me to enlarge!\" rel=\"tab-1\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" width=\"206\" height=\"117\" alt=\"Click me to enlarge!\" class=\"alignright\" /></a>\r\n<p>Consectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique. Quisque mattis elit eros, non facilisis sem. Cras a congue neque. In massa purus, ornare in sagittis id, accumsan ac nisl. Sed sit amet nulla ac dolor adipiscing.</p>[/tab]\r\n	[tab title=\"Our Capabilities\"][bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n	</ul>\r\n[/bullet_list][/tab]\r\n	[tab title=\"Our Support\"]Tab content...[/tab]\r\n[/tabs]-->','eCommerce WebShop Pro','','inherit','closed','closed','','74-revision-32','','','2011-10-14 14:00:44','2011-10-14 14:00:44','',74,'http://bestecommerce-uk.com/2011/10/74-revision-32/',0,'revision','',0),(468,1,'2011-11-22 12:29:27','2011-11-22 12:29:27','<h1>eCommerce WebShop 3.0 Standard</h1>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>WebShop 3.0 Standard provides a strong base from which to grow your presence on-line with unlimited products and categories and unrivalled ease of use.</p><p>Supporting advanced functions from weight based shipping, to managing stock and invoicing, the standard system is aimed at SME\'s, and growing on-line retailer seeking a site with professional design, functions and ease of use.</p> \r\n<h2>£1999 + £60/month   </h2>\r\n<p>If you as interested in this product please use the button below to complete a contact form for a call back or call us directly to discuss your requirements.<p/>\r\n<a href=\"/contact-form-2\" class=\"btn impactBtn\"><span>Contact Form</span></a><br /><br /><br />\r\n[button_link url=\"webshop-3-0-feature-list\" style=\"medium blue\"]View Webshop 3.0 functionality[/button_link]\r\n\r\n\r\n</div></div>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n\r\n</div></div>\r\n\r\n','eCommerce WebShop Standard','','inherit','closed','closed','','137-revision-11','','','2011-11-22 12:29:27','2011-11-22 12:29:27','',137,'http://bestecommerce-uk.com/2011/11/137-revision-11/',0,'revision','',0),(467,1,'2011-11-22 12:29:02','2011-11-22 12:29:02','<h1>eCommerce WebShop 3.0 Standard</h1>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>WebShop 3.0 Standard provides a strong base from which to grow your presence on-line with unlimited products and categories and unrivalled ease of use.</p><p>Supporting advanced functions from weight based shipping, to managing stock and invoicing, the standard system is aimed at SME\'s, and growing on-line retailer seeking a site with professional design, functions and ease of use.</p> \r\n<h2>£1999 + £60/month   </h2>\r\n<p>If you as interested in this product please use the button below to complete a contact form for a call back or call us directly to discuss your requirements.<p/>\r\n<a href=\"/contact-form-2\" class=\"btn impactBtn\"><span>Contact Form</span></a><br /><br /><br />\r\n[button_link url=\"webshop-3-0-feature-list\" style=\"medium blue\"]View Webshop 3.0 functionality[/button_link]\r\n<!--[button_link url=\"http://www.webdesign-uk.org/wp-content/uploads/2011/09/Webshop_3.0_features_list.pdf\" style=\"medium blue\"]Webshop 3.0 functionality.pdf[/button_link]<br /><br /><br />-->\r\n\r\n</div></div>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n\r\n</div></div>\r\n\r\n','eCommerce WebShop Standard','','inherit','closed','closed','','137-revision-10','','','2011-11-22 12:29:02','2011-11-22 12:29:02','',137,'http://bestecommerce-uk.com/2011/11/137-revision-10/',0,'revision','',0),(140,1,'2011-07-01 01:43:45','2011-07-01 01:43:45','<h1>eCommerce WebShop 3.0 Standard</h1>\n\n<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>WebShop 3.0 Standard provides a strong base from which to grow your presence on-line with unlimited products and categories and unrivalled ease of use.</p><p>Supporting advanced functions from weight based shipping, to managing stock and invoicing, the standard system is aimed at SME\'s, and growing on-line retailer seeking a site with professional design, functions and ease of use.</p> \n<h2>£1999 + £60/month   </h2>\n<a href=\"/about-us\" class=\"btn impactBtn\"><span>Add to Cart/Sign-Up</span></a><br /><br /><br />\n\n</div></div>\n\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\n\n\n</div></div>\n[one_half_last] [/one_half_last]\n\n\n\n\n\n\n[tabs]\n	[tab title=\"Our Packages\"]<h3>Lorem ipsum dolor sit amet</h3> \n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" class=\"styled-image popup alignright\" title=\"Click me to enlarge!\" rel=\"tab-1\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" width=\"206\" height=\"117\" alt=\"Click me to enlarge!\" class=\"alignright\" /></a>\n<p>Consectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique. Quisque mattis elit eros, non facilisis sem. Cras a congue neque. In massa purus, ornare in sagittis id, accumsan ac nisl. Sed sit amet nulla ac dolor adipiscing.</p>[/tab]\n	[tab title=\"Our Capabilities\"][bullet_list icon=\"check\"]\n	<ul>\n		<li>Your Text</li>\n		<li>Your Text</li>\n		<li>Your Text</li>\n	</ul>\n[/bullet_list][/tab]\n	[tab title=\"Our Support\"]Tab content...[/tab]\n[/tabs]','eCommerce WebShop Standard','','inherit','closed','closed','','137-revision','','','2011-07-01 01:43:45','2011-07-01 01:43:45','',137,'http://bestecommerce-uk.com/2011/07/137-revision/',0,'revision','',0),(141,1,'2011-07-01 01:44:38','2011-07-01 01:44:38','eCommerce WebShop 3.0 Standard\r\n\r\nWebShop 3.0 Standard provides a strong base from which to grow your presence on-line with unlimited products and categories and unrivalled ease of use.Supporting advanced functions from weight based shipping, to managing stock and invoicing, the standard system is aimed at SME’s, and growing on-line retailer seeking a site with professional design, functions and ease of use. \r\n£1999 + £60/month   \r\nAdd to Cart/Sign-Up\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n[one_half_last] [/one_half_last]\r\n\r\n\r\n\r\n\r\n\r\n\r\n[tabs]\r\n	[tab title=\"Our Packages\"]Lorem ipsum dolor sit amet \r\n\r\nConsectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique. Quisque mattis elit eros, non facilisis sem. Cras a congue neque. In massa purus, ornare in sagittis id, accumsan ac nisl. Sed sit amet nulla ac dolor adipiscing.[/tab]\r\n	[tab title=\"Our Capabilities\"][bullet_list icon=\"check\"]\r\n	\r\n		Your Text\r\n		Your Text\r\n		Your Text\r\n	\r\n[/bullet_list][/tab]\r\n	[tab title=\"Our Support\"]Tab content…[/tab]\r\n[/tabs]','','','publish','closed','closed','','141','','','2011-12-16 13:02:47','2011-12-16 13:02:47','',71,'http://bestecommerce-uk.com/?p=141',2,'nav_menu_item','',0),(1105,1,'2011-12-15 12:17:42','2011-12-15 12:17:42','A commercial website can range from a simple website acting as an on-line brochure where information about your business can be made readily available to a detailed online catalogue or eCommerce store that sells products and services online. In whatever case the design of a website, both the aesthetics and ease of use, will decide more than anything what visitors will think of the company behind it. With competitors only a click away, potential customers may take only a few seconds to assess a website. Your website must complement your brand, show your goods to the best effect and be focused on the customer.\r\n\r\nSince it is not cost-effective for most SMEs have a web developer in-house, we are here to be hired as needed. <a href=\"http://www.webdesign-uk.org/about-us/ecommerce-site-examples/\">See here</a> for some of our past projects as web designers.\r\n\r\nWe design websites uniquely suited to each client, going through repeated consultations and assessments. Each project is a new start for us and we never make the same finished product twice.\r\n\r\nWith our experience in e-commerce we can advise you on the technical, legal and commercial difficulties you face when taking a business online.\r\n\r\n<strong>Languages and databases used:</strong>\r\n[bullet_list icon=\"check\"]\r\n<ul>\r\n	<li>ASP</li>\r\n	<li>CSS</li>\r\n	<li>Flash Actionscript</li>\r\n	<li>HTML</li>\r\n	<li>Javascript</li>\r\n	<li>MS Access</li>\r\n	<li>MS SQL Server</li>\r\n	<li>MySQL</li>\r\n	<li>PHP</li>\r\n	<li>XML</li>\r\n	<li>XHTML</li>\r\n</ul>\r\n[/bullet_list]\r\n\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/11/browsers.png\"><img class=\"aligncenter size-full wp-image-470\" title=\"browsers\" src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/11/browsers.png\" alt=\"search engine logos\" width=\"503\" height=\"200\" /></a>','Our Web Design Packs','','inherit','closed','closed','','425-revision-58','','','2011-12-15 12:17:42','2011-12-15 12:17:42','',425,'http://www.webdesign-uk.org/2011/12/425-revision-58/',0,'revision','',0),(143,1,'2011-07-01 01:43:57','2011-07-01 01:43:57','<h1>eCommerce WebShop 3.0 Standard</h1>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>WebShop 3.0 Standard provides a strong base from which to grow your presence on-line with unlimited products and categories and unrivalled ease of use.</p><p>Supporting advanced functions from weight based shipping, to managing stock and invoicing, the standard system is aimed at SME\'s, and growing on-line retailer seeking a site with professional design, functions and ease of use.</p> \r\n<h2>£1999 + £60/month   </h2>\r\n<a href=\"/about-us\" class=\"btn impactBtn\"><span>Add to Cart/Sign-Up</span></a><br /><br /><br />\r\n\r\n</div></div>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n\r\n</div></div>\r\n[one_half_last] [/one_half_last]\r\n\r\n\r\n\r\n\r\n\r\n\r\n[tabs]\r\n	[tab title=\"Our Packages\"]<h3>Lorem ipsum dolor sit amet</h3> \r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" class=\"styled-image popup alignright\" title=\"Click me to enlarge!\" rel=\"tab-1\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" width=\"206\" height=\"117\" alt=\"Click me to enlarge!\" class=\"alignright\" /></a>\r\n<p>Consectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique. Quisque mattis elit eros, non facilisis sem. Cras a congue neque. In massa purus, ornare in sagittis id, accumsan ac nisl. Sed sit amet nulla ac dolor adipiscing.</p>[/tab]\r\n	[tab title=\"Our Capabilities\"][bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n	</ul>\r\n[/bullet_list][/tab]\r\n	[tab title=\"Our Support\"]Tab content...[/tab]\r\n[/tabs]','eCommerce WebShop Standard','','inherit','closed','closed','','137-revision-2','','','2011-07-01 01:43:57','2011-07-01 01:43:57','',137,'http://bestecommerce-uk.com/2011/07/137-revision-2/',0,'revision','',0),(144,1,'2011-07-01 01:45:54','2011-07-01 01:45:54','<h1>eCommerce WebShop 3.0 Standard</h1>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>WebShop 3.0 Standard provides a strong base from which to grow your presence on-line with unlimited products and categories and unrivalled ease of use.</p><p>Supporting advanced functions from weight based shipping, to managing stock and invoicing, the standard system is aimed at SME\'s, and growing on-line retailer seeking a site with professional design, functions and ease of use.</p> \r\n<h2>£1999 + £60/month   </h2>\r\n<a href=\"/about-us\" class=\"btn impactBtn\"><span>Add to Cart/Sign-Up</span></a><br /><br /><br />\r\n\r\n</div></div>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n\r\n</div></div>\r\n[one_half_last] [/one_half_last]\r\n\r\n\r\n\r\n\r\n\r\n\r\n[tabs]\r\n	[tab title=\"Our Packages\"]<h3>Lorem ipsum dolor sit amet</h3> \r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" class=\"styled-image popup alignright\" title=\"Click me to enlarge!\" rel=\"tab-1\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" width=\"206\" height=\"117\" alt=\"Click me to enlarge!\" class=\"alignright\" /></a>\r\n<p>Consectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique. Quisque mattis elit eros, non facilisis sem. Cras a congue neque. In massa purus, ornare in sagittis id, accumsan ac nisl. Sed sit amet nulla ac dolor adipiscing.</p>[/tab]\r\n	[tab title=\"Our Capabilities\"][bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n	</ul>\r\n[/bullet_list][/tab]\r\n	[tab title=\"Our Support\"]Tab content...[/tab]\r\n[/tabs]','eCommerce WebShop Standard','','inherit','closed','closed','','137-revision-3','','','2011-07-01 01:45:54','2011-07-01 01:45:54','',137,'http://bestecommerce-uk.com/2011/07/137-revision-3/',0,'revision','',0),(330,1,'2011-08-11 21:41:35','2011-08-11 21:41:35','[slideshow alias=\"slide-show-alias\"]','eCommerce Site Examples','','inherit','closed','closed','','328-revision-2','','','2011-08-11 21:41:35','2011-08-11 21:41:35','',328,'http://bestecommerce-uk.com/2011/08/328-revision-2/',0,'revision','',0),(147,1,'2011-07-08 11:36:53','2011-07-08 11:36:53','Help Site Conversions','bestconv1','','inherit','closed','closed','','bestconv1','','','2011-07-08 11:36:53','2011-07-08 11:36:53','',146,'http://bestecommerce-uk.com/wp-content/uploads/2011/07/bestconv1.jpg',0,'attachment','image/jpeg',0),(148,1,'2011-07-08 11:27:25','2011-07-08 11:27:25','There are a multitude of factors which help you convert visitors to sales on an eCommerce site. Among these are:\n<ol>\n	<li> Ensure your product descriptions are accurate and informative, and give the site visitor as much information as possible on the product, so they are not left with questions in their mind about, will it fit my lounge, is there a warranty, etc.</li>\n	<li>Implement useful image features like multi-position views or image zoom, so the user can see as much of the product as possible.</li>\n	<li>Ensure that product attributes are correctly set where appropriate so that the visitor can select the options they desire.</li>\n	<li>Check competitor pricing on the product to ensure that you are competitive on that item.</li>\n	<li>Ensure a logical flow of information through your product category pages so that your visitors do not get lost.</li>\n</ol>\n&nbsp;','How to help convert site visitors to sales?','','inherit','closed','closed','','146-revision','','','2011-07-08 11:27:25','2011-07-08 11:27:25','',146,'http://bestecommerce-uk.com/2011/07/146-revision/',0,'revision','',0),(149,1,'2011-07-08 11:39:26','2011-07-08 11:39:26','There are a multitude of factors which help you convert visitors to sales on an eCommerce site. Among these are:\n<ol>\n	<li> Ensure your product descriptions are accurate and informative, and give the site visitor as much information as possible on the product, so they are not left with questions in their mind about, will it fit my lounge, is there a warranty, etc.</li>\n	<li>Implement useful image features like multi-position views or image zoom, so the user can see as much of the product as possible.</li>\n	<li>Ensure that product attributes are correctly set where appropriate so that the visitor can select the options they desire.</li>\n	<li>Check competitor pricing on the product to ensure that you are competitive on that item.</li>\n	<li>Ensure a logical flow of information through your product category pages so that your visitors do not get lost.</li>\n</ol>\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/07/bestconv1.jpg\"><img class=\"alignright size-full wp-image-147\" title=\"bestconv1\" src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/07/bestconv1.jpg\" alt=\"Site Conversion Graph\" width=\"356\" height=\"270\" /></a>','How to help convert site visitors to sales?','','inherit','closed','closed','','146-autosave','','','2011-07-08 11:39:26','2011-07-08 11:39:26','',146,'http://bestecommerce-uk.com/2011/07/146-autosave/',0,'revision','',0),(150,1,'2011-07-08 11:38:50','2011-07-08 11:38:50','There are a multitude of factors which help you convert visitors to sales on an eCommerce site. Among these are:\r\n<ol>\r\n	<li> Ensure your product descriptions are accurate and informative, and give the site visitor as much information as possible on the product, so they are not left with questions in their mind about, will it fit my lounge, is there a warranty, etc.</li>\r\n	<li>Implement useful image features like multi-position views or image zoom, so the user can see as much of the product as possible.</li>\r\n	<li>Ensure that product attributes are correctly set where appropriate so that the visitor can select the options they desire.</li>\r\n	<li>Check competitor pricing on the product to ensure that you are competitive on that item.</li>\r\n	<li>Ensure a logical flow of information through your product category pages so that your visitors do not get lost.</li>\r\n</ol>\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/07/bestconv1.jpg\"><img class=\"alignright size-full wp-image-147\" title=\"bestconv1\" src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/07/bestconv1.jpg\" alt=\"Site Conversion Graph\" width=\"356\" height=\"270\" /></a>','How to help convert site visitors to sales?','','inherit','closed','closed','','146-revision-2','','','2011-07-08 11:38:50','2011-07-08 11:38:50','',146,'http://bestecommerce-uk.com/2011/07/146-revision-2/',0,'revision','',0),(151,1,'2011-07-08 11:40:26','2011-07-08 11:40:26','There are a multitude of factors which help you convert visitors to sales on an eCommerce site. Among these are:\r\n<ol>\r\n	<li> Ensure your product descriptions are accurate and informative, and give the site visitor as much information as possible on the product, so they are not left with questions in their mind about, will it fit my lounge, is there a warranty, etc.</li>\r\n	<li>Implement useful image features like multi-position views or image zoom, so the user can see as much of the product as possible.</li>\r\n	<li>Ensure that product attributes are correctly set where appropriate so that the visitor can select the options they desire.</li>\r\n	<li>Check competitor pricing on the product to ensure that you are competitive on that item.</li>\r\n	<li>Ensure a logical flow of information through your product category pages so that your visitors do not get lost.</li>\r\n</ol>\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/07/bestconv1.jpg\"><img class=\"alignright size-full wp-image-147\" title=\"bestconv1\" src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/07/bestconv1.jpg\" alt=\"Site Conversion Graph\" width=\"356\" height=\"270\" /></a>','How to help convert site visitors to sales?','','inherit','closed','closed','','146-revision-3','','','2011-07-08 11:40:26','2011-07-08 11:40:26','',146,'http://bestecommerce-uk.com/2011/07/146-revision-3/',0,'revision','',0),(152,1,'2011-07-08 11:40:57','2011-07-08 11:40:57','There are a multitude of factors which help you convert visitors to sales on an eCommerce site. Among these are:\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/07/bestconv1.jpg\"><img class=\"alignright size-full wp-image-147\" title=\"bestconv1\" src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/07/bestconv1.jpg\" alt=\"Site Conversion Graph\" width=\"356\" height=\"270\" /></a>\r\n\r\n<ol>\r\n	<li> Ensure your product descriptions are accurate and informative, and give the site visitor as much information as possible on the product, so they are not left with questions in their mind about, will it fit my lounge, is there a warranty, etc.</li>\r\n	<li>Implement useful image features like multi-position views or image zoom, so the user can see as much of the product as possible.</li>\r\n	<li>Ensure that product attributes are correctly set where appropriate so that the visitor can select the options they desire.</li>\r\n	<li>Check competitor pricing on the product to ensure that you are competitive on that item.</li>\r\n	<li>Ensure a logical flow of information through your product category pages so that your visitors do not get lost.</li>\r\n</ol>\r\n','How to help convert site visitors to sales?','','inherit','closed','closed','','146-revision-4','','','2011-07-08 11:40:57','2011-07-08 11:40:57','',146,'http://bestecommerce-uk.com/2011/07/146-revision-4/',0,'revision','',0),(153,1,'2011-07-08 11:41:30','2011-07-08 11:41:30','There are a multitude of factors which help you convert visitors to sales on an eCommerce site. Among these are:<br /><br />\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/07/bestconv1.jpg\"><img class=\"alignright size-full wp-image-147\" title=\"bestconv1\" src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/07/bestconv1.jpg\" alt=\"Site Conversion Graph\" width=\"356\" height=\"270\" /></a>\r\n\r\n<ol>\r\n	<li> Ensure your product descriptions are accurate and informative, and give the site visitor as much information as possible on the product, so they are not left with questions in their mind about, will it fit my lounge, is there a warranty, etc.</li>\r\n	<li>Implement useful image features like multi-position views or image zoom, so the user can see as much of the product as possible.</li>\r\n	<li>Ensure that product attributes are correctly set where appropriate so that the visitor can select the options they desire.</li>\r\n	<li>Check competitor pricing on the product to ensure that you are competitive on that item.</li>\r\n	<li>Ensure a logical flow of information through your product category pages so that your visitors do not get lost.</li>\r\n</ol>\r\n','How to help convert site visitors to sales?','','inherit','closed','closed','','146-revision-5','','','2011-07-08 11:41:30','2011-07-08 11:41:30','',146,'http://bestecommerce-uk.com/2011/07/146-revision-5/',0,'revision','',0),(154,1,'2011-06-30 08:04:25','2011-06-30 08:04:25','Best Ecommerce UK was formed in 2002 with the aim of providing ecommerce solutions and services to business with an emphasis on quality of products and great support.\r\n\r\nWith a growing base of loyal happy customers we feel we have achieved that aim and continue to hold good to those early business principles of supplying good, reliable systems and support to our customers.','About Us','','inherit','closed','closed','','12-revision-3','','','2011-06-30 08:04:25','2011-06-30 08:04:25','',12,'http://bestecommerce-uk.com/2011/06/12-revision-3/',0,'revision','',0),(155,1,'2011-06-30 10:50:00','2011-06-30 10:50:00','<h1>Welcome to Best eCommerce UK</h1>\r\n<p>Hello from the team at Best Ecommerce UK!</p>\r\n\r\n<p>Our e-commerce solutions aim to empower our customers to take control of their on-line presence. With ecommerce solutions from Best Ecommerce our clients have ability to manage their own ecommerce websites easily and effectively with our leading edge technology.</p>\r\n\r\n<p>Importantly they can develop their businesses on-line whilst being safe in the knowledge that they have the expertise of a well established web development company on-hand to support them when they need help.</p>\r\n\r\n<p>That\'s right! We don\'t just build websites for our clients then leave them to it. Our structured Support Programme means we are just a phone call or a mouse click away if you need us.</p>\r\n\r\n<p>We hope you like what we have to offer and encourage you to contact us with any queries you may have. We\'re sure we can be of help.</p>','Welcome to Best eCommerce UK','','inherit','closed','closed','','15-revision-10','','','2011-06-30 10:50:00','2011-06-30 10:50:00','',15,'http://bestecommerce-uk.com/2011/06/15-revision-10/',0,'revision','',0),(156,1,'2011-07-08 14:28:34','2011-07-08 14:28:34','<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\">\r\n<div class=\"i0 ugc\">\r\n\r\n<p>WebShop 3.0 Lite is our starter package, and whilst aimed at the small to medium sized business selling on-line, the system offers a flexible and advanced solution. The system offers our customers the ability to sell unlimited products in unlimited categories. It includes options such as cross-linked categories and easy search functions.</p>\r\n\r\n<p>Despite the low cost, the system has many of the functions you would expect to see on a large consumer ecommerce site.</p>\r\n\r\n<h3>£999 + £60/month</h3>\r\n<p>See here our full list of <a href=\"http://www.webdesign-uk.org/webshop-3-0-feature-list\">Webshop features</a>.</p>\r\n\r\n<p>If the offer interests you, please complete a contact form through the button below for a call back, or call us directly to tell us of your requirements.<p/>\r\n\r\n<a class=\"btn orange\" href=\"/contact-form-2\"><span>Contact Form</span></a>\r\n&nbsp;\r\n\r\n</div>\r\n</div>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\">\r\n<div class=\"i0 ugc\">\r\n\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img class=\"alignnone size-full wp-image-83\" title=\"webshop_30prox\" src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" width=\"178\" height=\"189\" /></a>\r\n\r\n</div>\r\n</div>','WebShop Lite Package','','trash','closed','closed','','ecommerce-webshop-lite','','','2011-12-16 13:38:46','2011-12-16 13:38:46','',71,'http://bestecommerce-uk.com/?page_id=156',0,'page','',0),(905,1,'2011-12-09 15:14:36','2011-12-09 15:14:36','<h1>eCommerce WebShop 3.0 Standard</h1>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>WebShop 3.0 Standard offers the groundwork from which to make the Internet part of your business model.</p><p>We can implement features such as weight based shipping, managing stock and invoicing. The package can offer a website with a professional appearance and ease of use to a small enterprise.</p> \r\n<h2>£1999 + £60/month   </h2>\r\n<p>See here our full list of <a href=\"http://www.webdesign-uk.org/webshop-3-0-feature-list\">Webshop features</a>.</p>\r\n<p>If the offer interests you, please complete a contact form through the button below for a call back, or call us directly to tell us of your requirements.<p/>\r\n\r\n<a href=\"/contact-form-2\" class=\"btn orange\"><span>Contact Form</span></a><br /><br /><br />\r\n\r\n</div></div>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n</div></div>','eCommerce WebShop Standard','','inherit','closed','closed','','137-revision-25','','','2011-12-09 15:14:36','2011-12-09 15:14:36','',137,'http://www.ecommerce-uk.org/2011/12/137-revision-25/',0,'revision','',0),(157,1,'2011-07-08 14:27:54','2011-07-08 14:27:54','','eCommerce WebShop Lite','','inherit','closed','closed','','156-revision','','','2011-07-08 14:27:54','2011-07-08 14:27:54','',156,'http://bestecommerce-uk.com/2011/07/156-revision/',0,'revision','',0),(251,1,'2011-07-15 14:37:47','2011-07-15 14:37:47','<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>Our entry level product for the SME\'s and growing companies, WebShop 3.0 Lite provides a high level of function across the board.</p><p>Supporting advanced functions from multi-tiered pricing structures to integration with Amazon and eBay, the pro system is the benchmark for growing and established High Street brand retailers</p> \r\n<h2>£999 + £60/month   </h2>\r\n<a href=\"/about-us\" class=\"btn impactBtn\"><span>Add to Cart/Sign-Up</span></a><br /><br /><br />\r\n\r\n</div></div>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n\r\n</div></div>\r\n[one_half_last] [/one_half_last]\r\n\r\n\r\n\r\n\r\n\r\n\r\n','eCommerce WebShop Lite','','inherit','closed','closed','','156-revision-7','','','2011-07-15 14:37:47','2011-07-15 14:37:47','',156,'http://bestecommerce-uk.com/2011/07/156-revision-7/',0,'revision','',0),(1107,1,'2011-12-16 14:12:45','2011-12-16 14:12:45','A commercial website can range from a simple website acting as an on-line brochure where information about your business can be made readily available to a detailed online catalogue or eCommerce store that sells products and services online. In whatever case the design of a website, both the aesthetics and ease of use, will decide more than anything what visitors will think of the company behind it. With competitors only a click away, potential customers may take only a few seconds to assess a website. Your website must complement your brand, show your goods to the best effect and be focused on the customer.\r\n\r\nSince it is not cost-effective for most SMEs have a web developer in-house, we are here to be hired as needed. <a href=\"http://www.webdesign-uk.org/about-us/ecommerce-site-examples/\">See here</a> for some of our past projects as web designers.\r\n\r\nWe design websites uniquely suited to each client, going through repeated consultations and assessments. Each project is a new start for us and we never make the same finished product twice.\r\n\r\nWith our experience in e-commerce we can advise you on the technical, legal and commercial difficulties you face when taking a business online.\r\n\r\n<strong>Languages and databases used:</strong>\r\n\r\n[bullet_list icon=\"check\"]\r\n<ul>\r\n	<li>ASP</li>\r\n	<li>CSS</li>\r\n	<li>Flash Actionscript</li>\r\n	<li>HTML</li>\r\n	<li>Javascript</li>\r\n	<li>MS Access</li>\r\n	<li>MS SQL Server</li>\r\n	<li>MySQL</li>\r\n	<li>PHP</li>\r\n	<li>XML</li>\r\n	<li>XHTML</li>\r\n</ul>\r\n[/bullet_list]\r\n\r\n\r\n<br />\r\n<br />\r\n\r\n[pricing_table columns=\"3\"]\r\n[pricing_column title=\"Website Starter Pack\"]\r\n<ul>\r\n	<li>[price_info cost=\"£699\"][/price_info]</li>\r\n	<li>Domain Registration</li>\r\n	<li>5 Page Web Design</li>\r\n	<li>Hosting</li>\r\n	<li>E-mail</li>\r\n	<li><a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img class=\"alignnone size-full wp-image-83\" title=\"webshop_30prox\" src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" width=\"178\" height=\"189\" /></a></li>\r\n</ul>\r\n[/pricing_column]\r\n[pricing_column title=\"WebShop Standard\" highlight=\"true\"]\r\n<ul>\r\n	<li>[price_info cost=\"£1999\"]+ £60 per month[/price_info]</li>\r\n	<li>The basis to develop an e-commerce website.</li>\r\n	<li>60 products as part of the deal</li>\r\n	<li><a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img class=\"alignnone size-full wp-image-83\" title=\"webshop_30prox\" src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" width=\"178\" height=\"189\" /></a></li>\r\n</ul>\r\n[/pricing_column]\r\n[pricing_column title=\"WebShop Pro\"]\r\n<ul>\r\n	<li>[price_info cost=\"£2999\"]+ £60 per month[/price_info]</li>\r\n	<li>Web design for a firm intending to make significant sales online.</li>\r\n	<li>90 products as part of the deal</li>\r\n	<li><a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img class=\"alignnone size-full wp-image-83\" title=\"webshop_30prox\" src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" width=\"178\" height=\"189\" /></a></li>\r\n</ul>\r\n[/pricing_column]\r\n[/pricing_table]\r\n\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/11/browsers.png\"><img class=\"aligncenter size-full wp-image-470\" title=\"browsers\" src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/11/browsers.png\" alt=\"search engine logos\" width=\"503\" height=\"200\" /></a>','Our Web Design Packs','','inherit','closed','closed','','425-revision-60','','','2011-12-16 14:12:45','2011-12-16 14:12:45','',425,'http://www.webdesign-uk.org/2011/12/425-revision-60/',0,'revision','',0),(159,1,'2011-07-08 14:29:53','2011-07-08 14:29:53','eCommerce WebShop 3.0 Lite\r\n\r\nOur flagship product for the SME’s and growing companies, WebShop 3.0 Pro provides a high level of function across the board.Supporting advanced functions from multi-tiered pricing structures to integration with Amazon and eBay, the pro system is the benchmark for growing and established High Street brand retailers \r\n£2999 + £60/month   \r\nAdd to Cart/Sign-Up\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n[one_half_last] [/one_half_last]\r\n\r\n\r\n\r\n\r\n\r\n\r\n[tabs]\r\n	[tab title=\"Our Packages\"]Lorem ipsum dolor sit amet \r\n\r\nConsectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique. Quisque mattis elit eros, non facilisis sem. Cras a congue neque. In massa purus, ornare in sagittis id, accumsan ac nisl. Sed sit amet nulla ac dolor adipiscing.[/tab]\r\n	[tab title=\"Our Capabilities\"][bullet_list icon=\"check\"]\r\n	\r\n		Your Text\r\n		Your Text\r\n		Your Text\r\n	\r\n[/bullet_list][/tab]\r\n	[tab title=\"Our Support\"]Tab content…[/tab]\r\n[/tabs]','','','publish','closed','closed','','159','','','2011-12-16 13:02:47','2011-12-16 13:02:47','',71,'http://bestecommerce-uk.com/?p=159',1,'nav_menu_item','',0),(160,1,'2011-07-08 14:28:34','2011-07-08 14:28:34','<h1>eCommerce WebShop 3.0 Lite</h1>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>Our flagship product for the SME\'s and growing companies, WebShop 3.0 Pro provides a high level of function across the board.</p><p>Supporting advanced functions from multi-tiered pricing structures to integration with Amazon and eBay, the pro system is the benchmark for growing and established High Street brand retailers</p> \r\n<h2>£2999 + £60/month   </h2>\r\n<a href=\"/about-us\" class=\"btn impactBtn\"><span>Add to Cart/Sign-Up</span></a><br /><br /><br />\r\n\r\n</div></div>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n\r\n</div></div>\r\n[one_half_last] [/one_half_last]\r\n\r\n\r\n\r\n\r\n\r\n\r\n[tabs]\r\n	[tab title=\"Our Packages\"]<h3>Lorem ipsum dolor sit amet</h3> \r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" class=\"styled-image popup alignright\" title=\"Click me to enlarge!\" rel=\"tab-1\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" width=\"206\" height=\"117\" alt=\"Click me to enlarge!\" class=\"alignright\" /></a>\r\n<p>Consectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique. Quisque mattis elit eros, non facilisis sem. Cras a congue neque. In massa purus, ornare in sagittis id, accumsan ac nisl. Sed sit amet nulla ac dolor adipiscing.</p>[/tab]\r\n	[tab title=\"Our Capabilities\"][bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n	</ul>\r\n[/bullet_list][/tab]\r\n	[tab title=\"Our Support\"]Tab content...[/tab]\r\n[/tabs]','eCommerce WebShop Lite','','inherit','closed','closed','','156-revision-2','','','2011-07-08 14:28:34','2011-07-08 14:28:34','',156,'http://bestecommerce-uk.com/2011/07/156-revision-2/',0,'revision','',0),(161,1,'2011-07-08 14:31:02','2011-07-08 14:31:02','<h1>eCommerce WebShop 3.0 Lite</h1>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>Our flagship product for the SME\'s and growing companies, WebShop 3.0 Pro provides a high level of function across the board.</p><p>Supporting advanced functions from multi-tiered pricing structures to integration with Amazon and eBay, the pro system is the benchmark for growing and established High Street brand retailers</p> \r\n<h2>£2999 + £60/month   </h2>\r\n<a href=\"/about-us\" class=\"btn impactBtn\"><span>Add to Cart/Sign-Up</span></a><br /><br /><br />\r\n\r\n</div></div>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n\r\n</div></div>\r\n[one_half_last] [/one_half_last]\r\n\r\n\r\n\r\n\r\n\r\n\r\n[tabs]\r\n	[tab title=\"Our Packages\"]<h3>Lorem ipsum dolor sit amet</h3> \r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" class=\"styled-image popup alignright\" title=\"Click me to enlarge!\" rel=\"tab-1\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" width=\"206\" height=\"117\" alt=\"Click me to enlarge!\" class=\"alignright\" /></a>\r\n<p>Consectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique. Quisque mattis elit eros, non facilisis sem. Cras a congue neque. In massa purus, ornare in sagittis id, accumsan ac nisl. Sed sit amet nulla ac dolor adipiscing.</p>[/tab]\r\n	[tab title=\"Our Capabilities\"][bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n	</ul>\r\n[/bullet_list][/tab]\r\n	[tab title=\"Our Support\"]Tab content...[/tab]\r\n[/tabs]','eCommerce WebShop Lite','','inherit','closed','closed','','156-revision-3','','','2011-07-08 14:31:02','2011-07-08 14:31:02','',156,'http://bestecommerce-uk.com/2011/07/156-revision-3/',0,'revision','',0),(162,1,'2011-07-08 14:31:25','2011-07-08 14:31:25','<h1>eCommerce WebShop 3.0 Lite</h1>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>Our flagship product for the SME\'s and growing companies, WebShop 3.0 Pro provides a high level of function across the board.</p><p>Supporting advanced functions from multi-tiered pricing structures to integration with Amazon and eBay, the pro system is the benchmark for growing and established High Street brand retailers</p> \r\n<h2>£2999 + £60/month   </h2>\r\n<a href=\"/about-us\" class=\"btn impactBtn\"><span>Add to Cart/Sign-Up</span></a><br /><br /><br />\r\n\r\n</div></div>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n\r\n</div></div>\r\n[one_half_last] [/one_half_last]\r\n\r\n\r\n\r\n\r\n\r\n\r\n[tabs]\r\n	[tab title=\"Our Packages\"]<h3>Lorem ipsum dolor sit amet</h3> \r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" class=\"styled-image popup alignright\" title=\"Click me to enlarge!\" rel=\"tab-1\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" width=\"206\" height=\"117\" alt=\"Click me to enlarge!\" class=\"alignright\" /></a>\r\n<p>Consectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique. Quisque mattis elit eros, non facilisis sem. Cras a congue neque. In massa purus, ornare in sagittis id, accumsan ac nisl. Sed sit amet nulla ac dolor adipiscing.</p>[/tab]\r\n	[tab title=\"Our Capabilities\"][bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n	</ul>\r\n[/bullet_list][/tab]\r\n	[tab title=\"Our Support\"]Tab content...[/tab]\r\n[/tabs]','eCommerce WebShop Lite','','inherit','closed','closed','','156-revision-4','','','2011-07-08 14:31:25','2011-07-08 14:31:25','',156,'http://bestecommerce-uk.com/2011/07/156-revision-4/',0,'revision','',0),(318,1,'2011-07-21 18:37:09','2011-07-21 18:37:09','[one_half]<h3>Site Management</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\r\n<li>Administration of permissions, system roles and users</li>\r\n<li>Web Services API for easy integration between Magento and any third-party application</li>\r\n<li>Fully 100% customizable design using templates</li>\r\n<li>Customer Groups</li>\r\n<li>One-Click Upgrades</li>\r\n<li>Content Management System for Informational Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list][/one_half]\r\n[one_half_last]\r\n<h3>Analytics and reporting</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n <li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n			</ul>\r\n[/bullet_list][/one_half_last]','2 column','','draft','closed','closed','','2-column','','','2011-10-14 14:00:44','2011-10-14 14:00:44','',0,'http://bestecommerce-uk.com/?page_id=318',0,'page','',0),(164,1,'2011-07-08 14:26:12','2011-07-08 14:26:12','<h1>Welcome to Best eCommerce UK</h1>\r\n<p>Hello from the team at Best eCommerce UK!</p>\r\n\r\n<p>Our eCommerce solutions aim to empower our customers to take control of their on-line presence. With eCommerce solutions from Best eCommerce our clients have ability to manage their own eCommerce websites easily and effectively with our leading edge technology.</p>\r\n\r\n<p>Importantly they can develop their businesses on-line whilst being safe in the knowledge that they have the expertise of a well established web development company on-hand to support them when they need help.</p>\r\n\r\n<p>That\'s right! We don\'t just build websites for our clients then leave them to it. Our structured Support Programme means we are just a phone call or a mouse click away if you need us.</p>\r\n\r\n<p>We hope you like what we have to offer and encourage you to contact us with any queries you may have. We\'re sure we can be of help.</p>','Welcome to Best eCommerce UK','','inherit','closed','closed','','15-revision-11','','','2011-07-08 14:26:12','2011-07-08 14:26:12','',15,'http://bestecommerce-uk.com/2011/07/15-revision-11/',0,'revision','',0),(165,1,'2011-07-01 01:04:46','2011-07-01 01:04:46','[pricing_table columns=\"3\"]\r\n	[pricing_column title=\"WebShop Lite\"]\r\n	    <ul>\r\n		<li>[price_info cost=\"£999\"] + £60 month[/price_info]</li>\r\n		<li>Item description and details...</li>\r\n		<li>Some more info...</li>\r\n		<li>[button_link url=\"\"]Title[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n	[pricing_column title=\"WebShop Standard\" highlight=\"true\"]\r\n	    <ul>\r\n	 	<li>[price_info cost=\"£1999\"]+ £60 month[/price_info]</li>\r\n		<li>Item description and details...</li>\r\n		<li>Some more info...</li>\r\n		<li>[button_link url=\"\" style=\"impactBtn\"]Title[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n	[pricing_column title=\"WebShop Pro\"] \r\n	    <ul>\r\n		<li>[price_info cost=\"£2999\"]+ £60 month[/price_info]</li>\r\n		<li>Item description and details...</li>\r\n		<li>Some more info...</li>\r\n		<li>[button_link url=\"\"]Title[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n[/pricing_table]\r\n','Best E-Commerce Packages','','inherit','closed','closed','','71-revision-8','','','2011-07-01 01:04:46','2011-07-01 01:04:46','',71,'http://bestecommerce-uk.com/2011/07/71-revision-8/',0,'revision','',0),(166,1,'2011-12-15 14:36:36','2011-12-15 14:36:36','<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\">\n<div class=\"i0 ugc\">\n\n<p>WebShop 3.0 Lite is our starter package, and whilst aimed at the small to medium sized business selling on-line, the system offers a flexible and advanced solution. The system offers our customers the ability to sell unlimited products in unlimited categories. It includes options such as cross-linked categories and easy search functions.</p>\n\n<p>Despite the low cost, the system has many of the functions you would expect to see on a large consumer ecommerce site.</p>\n\n<h3>£999 + £60/month</h3>\n<p>See here our full list of <a href=\"http://www.webdesign-uk.org/webshop-3-0-feature-list\">Webshop features</a>.</p>\n\n<p>If the offer interests you, please complete a contact form through the button below for a call back, or call us directly to tell us of your requirements.<p/>\n\n<a class=\"btn orange\" href=\"/contact-form-2\"><span>Contact Form</span></a>\n&nbsp;\n\n</div>\n</div>\n\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\">\n<div class=\"i0 ugc\">\n\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img class=\"alignnone size-full wp-image-83\" title=\"webshop_30prox\" src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" width=\"178\" height=\"189\" /></a>\n\n</div>\n</div>','WebShop Lite Package','','inherit','closed','closed','','156-autosave','','','2011-12-15 14:36:36','2011-12-15 14:36:36','',156,'http://bestecommerce-uk.com/2011/07/156-autosave/',0,'revision','',0),(899,1,'2011-12-09 11:02:17','2011-12-09 11:02:17','<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\">\r\n<div class=\"i0 ugc\">\r\n\r\n<p>Our starter package for SME\'s and growing companies, WebShop 3.0 Lite provides an advanced level of function across the board.\r\nSupporting useful functions such as cross-selling and up-selling, as well as product attributes for size or colour variations, the system is well suited to small businesses selling on-line.</p>\r\n\r\n<p>Manage as many products and product categories as you like. The sky\'s the limit.</p>\r\n\r\n<h3>£999 + £60/month</h3>\r\nSee here our full list of <a href=\"http://www.webdesign-uk.org/webshop-3-0-feature-list\">Webshop features</a>.\r\n\r\nIf you are interested in this product, please use the button below to complete a contact form for a call back or call us directly to discuss your requirements.<br />\r\n<br />\r\n\r\n\r\n<a class=\"btn orange\" href=\"/contact-form-2\"><span>Contact Form</span></a>\r\n&nbsp;\r\n\r\n</div>\r\n</div>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\">\r\n<div class=\"i0 ugc\">\r\n\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img class=\"alignnone size-full wp-image-83\" title=\"webshop_30prox\" src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" width=\"178\" height=\"189\" /></a>\r\n\r\n</div>\r\n</div>\r\n','eCommerce UK WebShop Lite','','inherit','closed','closed','','156-revision-102','','','2011-12-09 11:02:17','2011-12-09 11:02:17','',156,'http://www.ecommerce-uk.org/2011/12/156-revision-102/',0,'revision','',0),(580,1,'2011-11-24 09:38:55','2011-11-24 09:38:55','Our starter product for the SME\'s and growing companies, WebShop 3.0 Lite provides a high level of function across the board.\r\n\r\nSupporting advanced functions such as cross-selling and up-selling, as well as product attributes for size or colour variations, the system is well suited to small businesses selling on-line.<br /><br />\r\n&nbsp;\r\n<h2>Key Features</h2>\r\n[bullet_list icon=\"check\"]\r\n<ul>\r\n	<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\r\n	<li>Administration of permissions, system roles and users</li>\r\n	<li>Web Services API for easy integration with third-party applications</li>\r\n	<li>Fully 100% customizable design using templates, or bespoke design</li>\r\n	<li>Support for Customer Groups</li>\r\n	<li>Content Management System for General or Site Information Pages</li>\r\n	<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n</ul>\r\n[/bullet_list]\r\n<h3>£999 + £60/month</h3>\r\nIf you as interested in this product please use the button below to complete a contact form for a call back or call us directly to discuss your requirements.<br /><br />\r\n\r\n<a class=\"btn orange\" href=\"/contact-form-2\"><span>Contact Form</span></a>&nbsp;\r\n\r\n&nbsp;\r\n\r\n</div>\r\n</div>\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\">\r\n<div class=\"i0 ugc\"><a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img class=\"alignnone size-full wp-image-83\" title=\"webshop_30prox\" src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" width=\"178\" height=\"189\" /></a>&nbsp;\r\n\r\n</div>\r\n</div>','eCommerce WebShop Lite','','inherit','closed','closed','','156-revision-66','','','2011-11-24 09:38:55','2011-11-24 09:38:55','',156,'http://bestecommerce-uk.com/2011/11/156-revision-66/',0,'revision','',0),(579,1,'2011-11-24 09:37:46','2011-11-24 09:37:46','<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\">\r\n<div class=\"i0 ugc\">\r\n\r\nOur starter product for the SME\'s and growing companies, WebShop 3.0 Lite provides a high level of function across the board.\r\n\r\nSupporting advanced functions such as cross-selling and up-selling, as well as product attributes for size or colour variations, the system is well suited to small businesses selling on-line.<br /><br />\r\n&nbsp;\r\n<h2>Key Features</h2>\r\n[bullet_list icon=\"check\"]\r\n<ul>\r\n	<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\r\n	<li>Administration of permissions, system roles and users</li>\r\n	<li>Web Services API for easy integration with third-party applications</li>\r\n	<li>Fully 100% customizable design using templates, or bespoke design</li>\r\n	<li>Support for Customer Groups</li>\r\n	<li>Content Management System for General or Site Information Pages</li>\r\n	<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n</ul>\r\n[/bullet_list]\r\n<h3>£999 + £60/month</h3>\r\nIf you as interested in this product please use the button below to complete a contact form for a call back or call us directly to discuss your requirements.<br /><br />\r\n\r\n<a class=\"btn orange\" href=\"/contact-form-2\"><span>Contact Form</span></a>&nbsp;\r\n\r\n&nbsp;\r\n\r\n</div>\r\n</div>\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\">\r\n<div class=\"i0 ugc\"><a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img class=\"alignnone size-full wp-image-83\" title=\"webshop_30prox\" src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" width=\"178\" height=\"189\" /></a>&nbsp;\r\n\r\n</div>\r\n</div>','eCommerce WebShop Lite','','inherit','closed','closed','','156-revision-65','','','2011-11-24 09:37:46','2011-11-24 09:37:46','',156,'http://bestecommerce-uk.com/2011/11/156-revision-65/',0,'revision','',0),(543,1,'2011-11-22 11:56:42','2011-11-22 11:56:42','<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>Our entry level product for the SME\'s and growing companies, WebShop 3.0 Lite provides a high level of function across the board.</p><p>Supporting advanced functions such as cross-selling and up-selling, as well as product attributes for size or colour variations, the system is well suited to small businesses selling on-line. </p>\r\n\r\n<h3>Key Features</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\r\n<li>Administration of permissions, system roles and users</li>\r\n<li>Web Services API for easy integration with third-party applications</li>\r\n<li>Fully 100% customizable design using templates, or bespoke design</li>\r\n<li>Support for Customer Groups</li>\r\n<li>Content Management System for General or Site Information Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n\r\n<h2>£999 + £60/month   </h2>\r\n<p>If you as interested in this product please use the button below to complete a contact form for a call back or call us directly to discuss your requirements.<p/>\r\n<a href=\"/contact-form-2\" class=\"btn impactBtn\"><span>Contact Form</span></a><br /><br /><br />\r\n\r\n\r\n\r\n\r\n\r\n</div></div>\r\n\r\n\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n\r\n</div></div>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n','eCommerce WebShop Lite','','inherit','closed','closed','','156-revision-56','','','2011-11-22 11:56:42','2011-11-22 11:56:42','',156,'http://bestecommerce-uk.com/2011/11/156-revision-56/',0,'revision','',0),(167,1,'2011-07-08 14:32:51','2011-07-08 14:32:51','<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>Our flagship product for the SME\'s and growing companies, WebShop 3.0 Pro provides a high level of function across the board.</p><p>Supporting advanced functions from multi-tiered pricing structures to integration with Amazon and eBay, the pro system is the benchmark for growing and established High Street brand retailers</p> \r\n<h2>£2999 + £60/month   </h2>\r\n<a href=\"/about-us\" class=\"btn impactBtn\"><span>Add to Cart/Sign-Up</span></a><br /><br /><br />\r\n\r\n</div></div>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n\r\n</div></div>\r\n[one_half_last] [/one_half_last]\r\n\r\n\r\n\r\n\r\n\r\n\r\n[tabs]\r\n	[tab title=\"Our Packages\"]<h3>Lorem ipsum dolor sit amet</h3> \r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" class=\"styled-image popup alignright\" title=\"Click me to enlarge!\" rel=\"tab-1\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" width=\"206\" height=\"117\" alt=\"Click me to enlarge!\" class=\"alignright\" /></a>\r\n<p>Consectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique. Quisque mattis elit eros, non facilisis sem. Cras a congue neque. In massa purus, ornare in sagittis id, accumsan ac nisl. Sed sit amet nulla ac dolor adipiscing.</p>[/tab]\r\n	[tab title=\"Our Capabilities\"][bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n	</ul>\r\n[/bullet_list][/tab]\r\n	[tab title=\"Our Support\"]Tab content...[/tab]\r\n[/tabs]','eCommerce WebShop Lite','','inherit','closed','closed','','156-revision-5','','','2011-07-08 14:32:51','2011-07-08 14:32:51','',156,'http://bestecommerce-uk.com/2011/07/156-revision-5/',0,'revision','',0),(168,1,'2011-12-07 12:21:10','2011-12-07 12:21:10','These are the most frequently asked questions we see:<br /><br />\n\n[toggle title=\"What is eCommerce?\"]The <a href=\"http://oxforddictionaries.com/definition/e-commerce\">Oxford english dictionary</a> definition of ecommerce is “commercial transactions conducted electronically on the Internet.” We refer to an e-commerce website as one which allows products and/or services to be sold, typically by means of credit card or other third party payment service.[/toggle]\n[toggle title=\"How much does an eCommerce Website cost?\"]E-Commerce site build costs vary widely; we offer several <a href=\"http://www.webdesign-uk.org/best-e-commerce-packages/\">packages</a> as well as bespoke solutions. Our packages start at £999, however please give us a call on the number above and we will be glad to provide an estimate.[/toggle]\n[toggle title=\"How long will it take to build our site?\"]On average, a small business e-commerce site will take 3-4 weeks to complete, however large enterprise-level sites may take much longer. Please feel free to call us so that we may provide an estimate based on your requirements.[/toggle]\n[toggle title=\"What should I consider when starting an online business?\"]<p>If you do not already have a product to sell then find a niche product that will sell online. Conduct market research to determine the likely sales level of the product, who your competitors are and where you would fit in the market.\nAlso consider whether the product is suitable for online sales.</p> <p>Most eCommerce websites now offer free standard postage and packing; if you intend to offer this then the cost must come from your overheads. This will only be economical if the unit cost is .</p>[/toggle]\n[toggle title=\"What is the biggest hurdle in starting an online business?\"]<p>The biggest hurdle will be letting your customers know you are there. If you already have a bricks and mortar shop you can let your existing customers know via in-store advertising or email if you have their details. However this will not increase your sales.</p> <p>For your business to succeed, your website will need to climb the search engine rankings so that you are one of the first sites that people see when searching for your product. Search engine optimisation is what we call the collection of techniques that will help your site to climb the rankings and bring potential buyers to your website. We will be happy to advise on and implement a search engine optimisation strategy for an additional monthly fee. Please ask us for details.</p>[/toggle]\n[toggle title=\"Do I need a merchant account or can I just use Paypal and money orders?\"]If you plan to take payments using PayPal or Google Checkout only, then you will not require a Merchant ID. If you plan to take Credit Card Payments via a third Party such as SagePay or RBS WorldPay then you will require one. We can help you organise that. Just ask us.[/toggle]\n[toggle title=\"I already have a Website. Can I integrate an online store into it?\"]<p>Yes, our shopping cart applications can be fitted into an existing website, although the shopping pages will likely look a little different from your existing website. We can use colours and styling to approximate the look and feel of your existing website.</p> <p>The systems we supply allow addition of unlimited website pages, files, video and more. Due to the scope and power of our eCommerce systems and what they allow our customers to do, many of our customers simply choose to recreate the content of their old website inside the eCommerce shopping website itself. Customers usually prefer this as the whole website has a more professional look and feel.</p> <p>So, once you see what our systems can do, your question may be: Can we integrate your existing website into your new eCommerce store? Whichever option you prefer, we can make it work.</p>[/toggle]\n[toggle title=\"Will I be able to customize the look and feel of my eCommerce website?\"]Yes, any eCommerce website that we build for you will be tailored to your requirements.  After completion modifications can be made at an additional cost.[/toggle]\n[toggle title=\"What is a merchant account?\"]A merchant account lets you accept payments directly from customers\' credit, debit or charge cards. If you do not have an internet ready merchant account we would be happy to assist you in setting this up.[/toggle]\n[toggle title=\"Can I use the merchant account I already have for online processing?\"]Yes. Any existing merchant account can be used so long as it is an internet ready account.[/toggle]\n[toggle title=\"What is a payment gateway?\"]A payment gateway is the connection between your eCommerce website and your merchant account provider. It is the equivalent to the credit card point of sale terminal in a shop. The gateway protects the customers card details by encrypting the communication between your eCommerce website and the merchant account provider.[/toggle]\n[toggle title=\"How do I ensure that customers transactions are secure?\"]<p>Any customer visiting your website will have to be reassured that sensitive data will be kept secure. The standard method used is SSL (Secure Socket Layers), which encrypts the data. This is shown on the page by a padlock icon in the browser bar, and the URL beginning with</p> <p>Visitors to your website will see the padlock symbol in the browser bar to show that it is a secure page. This is also shown in the URL as secure URLs begin with “HTTPS” instead of the standard “HTTP”.</p>[/toggle]\n[toggle title=\"What is SSL?\"]SSL (Secure Socket Layer), together with its successor Transport Layer Security, is a method of encrypting the sensitive data transmitted from your eCommerce website so as to ensure that no unauthorised users can access the data.[/toggle]\n','FAQs','','inherit','closed','closed','','49-autosave','','','2011-12-07 12:21:10','2011-12-07 12:21:10','',49,'http://bestecommerce-uk.com/2011/07/49-autosave/',0,'revision','',0),(169,1,'2011-06-30 22:48:55','2011-06-30 22:48:55','A list of frequently asked questions below:\r\n\r\n[toggle title=\"How much does an eCommerce Website cost?\"]The cost varies depending on what package you choose...[/toggle]\r\n[toggle title=\"How long will it take to build our site?\"]Usually 3-4 weeks depending on the add-ons you require...[/toggle]','FAQ\'s','','inherit','closed','closed','','49-revision-3','','','2011-06-30 22:48:55','2011-06-30 22:48:55','',49,'http://bestecommerce-uk.com/2011/06/49-revision-3/',0,'revision','',0),(170,1,'2011-07-11 14:29:31','2011-07-11 14:29:31','A list of frequently asked questions below:\r\n\r\n[toggle title=\"How much does an eCommerce Website cost?\"]The cost varies depending on what package you choose...[/toggle]\r\n[toggle title=\"How long will it take to build our site?\"]Usually 3-4 weeks depending on the add-ons you require...[/toggle]\r\n[toggle title=\"What should I consider when starting an online business?\"]If you do not already have a product to sell then find a niche product that will sell online.   Conduct market research to determine the likely sales level of the product,who your competitors are and where you would fit in the market.\r\nAlso consider whether the product is suitable for online sales.  Most ecommerce sites now offer free standard postage and packing so if you intend to offer this then the cost must come from your overheads.  If the unit cost to shipping cost ratio is high then the product becomes less economical to sell.[/toggle]','FAQ\'s','','inherit','closed','closed','','49-revision-4','','','2011-07-11 14:29:31','2011-07-11 14:29:31','',49,'http://bestecommerce-uk.com/2011/07/49-revision-4/',0,'revision','',0),(171,1,'2011-07-11 14:33:53','2011-07-11 14:33:53','A list of frequently asked questions below:\r\n\r\n[toggle title=\"How much does an eCommerce Website cost?\"]The cost varies depending on what package you choose...[/toggle]\r\n[toggle title=\"How long will it take to build our site?\"]Usually 3-4 weeks depending on the add-ons you require...[/toggle]\r\n[toggle title=\"What should I consider when starting an online business?\"]If you do not already have a product to sell then find a niche product that will sell online.   Conduct market research to determine the likely sales level of the product, who your competitors are and where you would fit in the market.\r\nAlso consider whether the product is suitable for online sales. Most ecommerce sites now offer free standard postage and packing so if you intend to offer this then the cost must come from your overheads. If the unit cost to shipping cost ratio is high then the product becomes less economical to sell.[/toggle]\r\n[toggle title=\"What is the biggest hurdle in starting an online business?\"]The biggest hurdle will be letting your customers know you are there.  If you already have a bricks and mortar shop you can let your exiting customers know via in-store advertising or email if you have their details.  However this will not increase your sales.  For you business to succeed your site will need to climb the search engine rankings so that you are one of the first sites that people see when searching for your product.  A well planned search engine optimisation strategy will aid your site in climbing the rankings and increase potential buyers to your site.[/toggle]\r\n[toggle title=\"Do I need a merchant account or can I just use Paypal and money orders?\"]If you plan to take payments using PayPal or Google Checkout only, then you will not require a Merchant ID. If you plan to take Credit Card Payments via a third Party such as SagePay or RBS WorldPay then you will require one. We can help you organise that. Just ask us.[/toggle]\r\n','FAQ\'s','','inherit','closed','closed','','49-revision-5','','','2011-07-11 14:33:53','2011-07-11 14:33:53','',49,'http://bestecommerce-uk.com/2011/07/49-revision-5/',0,'revision','',0),(172,1,'2011-07-11 14:36:03','2011-07-11 14:36:03','A list of frequently asked questions below:\r\n\r\n[toggle title=\"How much does an eCommerce Website cost?\"]The cost varies depending on what package you choose...[/toggle]\r\n[toggle title=\"How long will it take to build our site?\"]Usually 3-4 weeks depending on the add-ons you require...[/toggle]\r\n[toggle title=\"What should I consider when starting an online business?\"]If you do not already have a product to sell then find a niche product that will sell online.   Conduct market research to determine the likely sales level of the product, who your competitors are and where you would fit in the market.\r\nAlso consider whether the product is suitable for online sales. Most ecommerce sites now offer free standard postage and packing so if you intend to offer this then the cost must come from your overheads. If the unit cost to shipping cost ratio is high then the product becomes less economical to sell.[/toggle]\r\n[toggle title=\"What is the biggest hurdle in starting an online business?\"]The biggest hurdle will be letting your customers know you are there.  If you already have a bricks and mortar shop you can let your exiting customers know via in-store advertising or email if you have their details.  However this will not increase your sales.  For you business to succeed your site will need to climb the search engine rankings so that you are one of the first sites that people see when searching for your product.  A well planned search engine optimisation strategy will aid your site in climbing the rankings and increase potential buyers to your site.[/toggle]\r\n[toggle title=\"Do I need a merchant account or can I just use Paypal and money orders?\"]If you plan to take payments using PayPal or Google Checkout only, then you will not require a Merchant ID. If you plan to take Credit Card Payments via a third Party such as SagePay or RBS WorldPay then you will require one. We can help you organise that. Just ask us.[/toggle]\r\n[toggle title=\"What is \"Ecommerce\"?\"]“commercial transactions conducted electronically on the Internet.” http://oxforddictionaries.com/definition/e-commerce[/toggle]\r\n','FAQ\'s','','inherit','closed','closed','','49-revision-6','','','2011-07-11 14:36:03','2011-07-11 14:36:03','',49,'http://bestecommerce-uk.com/2011/07/49-revision-6/',0,'revision','',0),(173,1,'2011-07-11 14:37:07','2011-07-11 14:37:07','A list of frequently asked questions below:\r\n\r\n[toggle title=\"How much does an eCommerce Website cost?\"]The cost varies depending on what package you choose...[/toggle]\r\n[toggle title=\"How long will it take to build our site?\"]Usually 3-4 weeks depending on the add-ons you require...[/toggle]\r\n[toggle title=\"What should I consider when starting an online business?\"]If you do not already have a product to sell then find a niche product that will sell online.   Conduct market research to determine the likely sales level of the product, who your competitors are and where you would fit in the market.\r\nAlso consider whether the product is suitable for online sales. Most ecommerce sites now offer free standard postage and packing so if you intend to offer this then the cost must come from your overheads. If the unit cost to shipping cost ratio is high then the product becomes less economical to sell.[/toggle]\r\n[toggle title=\"What is the biggest hurdle in starting an online business?\"]The biggest hurdle will be letting your customers know you are there.  If you already have a bricks and mortar shop you can let your exiting customers know via in-store advertising or email if you have their details.  However this will not increase your sales.  For you business to succeed your site will need to climb the search engine rankings so that you are one of the first sites that people see when searching for your product.  A well planned search engine optimisation strategy will aid your site in climbing the rankings and increase potential buyers to your site.[/toggle]\r\n[toggle title=\"Do I need a merchant account or can I just use Paypal and money orders?\"]If you plan to take payments using PayPal or Google Checkout only, then you will not require a Merchant ID. If you plan to take Credit Card Payments via a third Party such as SagePay or RBS WorldPay then you will require one. We can help you organise that. Just ask us.[/toggle]\r\n[toggle title=\"What is Ecommerce?\"]“commercial transactions conducted electronically on the Internet.” http://oxforddictionaries.com/definition/e-commerce[/toggle]\r\n','FAQ\'s','','inherit','closed','closed','','49-revision-7','','','2011-07-11 14:37:07','2011-07-11 14:37:07','',49,'http://bestecommerce-uk.com/2011/07/49-revision-7/',0,'revision','',0),(174,1,'2011-07-11 14:58:34','2011-07-11 14:58:34','A list of frequently asked questions below:\r\n\r\n[toggle title=\"What is eCommerce?\"]The <a href=\"http://oxforddictionaries.com/definition/e-commerce\">Oxford english dictionary</a> definition of ecommerce is “commercial transactions conducted electronically on the Internet.”[/toggle]\r\n[toggle title=\"How much does an eCommerce Website cost?\"]The cost varies depending on what package you choose...[/toggle]\r\n[toggle title=\"How long will it take to build our site?\"]Usually 3-4 weeks depending on the add-ons you require...[/toggle]\r\n[toggle title=\"What should I consider when starting an online business?\"]If you do not already have a product to sell then find a niche product that will sell online. Conduct market research to determine the likely sales level of the product, who your competitors are and where you would fit in the market.\r\nAlso consider whether the product is suitable for online sales. Most ecommerce sites now offer free standard postage and packing so if you intend to offer this then the cost must come from your overheads. If the unit cost to shipping cost ratio is high then the product becomes less economical to sell.[/toggle]\r\n[toggle title=\"What is the biggest hurdle in starting an online business?\"]The biggest hurdle will be letting your customers know you are there. If you already have a bricks and mortar shop you can let your exiting customers know via in-store advertising or email if you have their details. However this will not increase your sales. For you business to succeed your site will need to climb the search engine rankings so that you are one of the first sites that people see when searching for your product. A well planned search engine optimisation strategy will aid your site in climbing the rankings and increase potential buyers to your site.[/toggle]\r\n[toggle title=\"Do I need a merchant account or can I just use Paypal and money orders?\"]If you plan to take payments using PayPal or Google Checkout only, then you will not require a Merchant ID. If you plan to take Credit Card Payments via a third Party such as SagePay or RBS WorldPay then you will require one. We can help you organise that. Just ask us.[/toggle]\r\n[toggle title=\"I already have a Web site. Can I integrate an online store into it?\"]Yes, you can integrate our shopping cart solutions into your existing site, although the shopping pages will likely look a little different to your existing site. We can use colours and styling to approximate the look and feel of your existing site. The systems we supply allow addition of unlimited site pages, files, video and more. Due to the scope and power of our ecommerce systems and what they allow our customers to do, many of our customers simply choose to recreate the content of their old site inside the ecommerce shopping site itself. In the vast majority of cases this is advantageous for the customer as they can provide a more professional look and feel for their whole site this way. So, once you see what our systems an do, your question may be...\r\n\r\nCan we integrate our existing site into our new store? However you want us to configure things, we can support all these options.[/toggle]\r\n[toggle title=\"Will I be able to customize the \"look and feel\" of my eCommerce site?\"]Yes, any eCommerce site that we build for you will be tailored to your requirements.  After completion modifications can be made at an additional cost.[/toggle]\r\n[toggle title=\"What is a merchant account?\"]A Merchant account lets you accept payments directly from customers\' credit, debit or charge cards.  If you do not have an internet ready merchant account we would be happy to assist you in setting this up.[/toggle]\r\n[toggle title=\"Can I use the merchant account I already have for online processing?\"]Yes.  Any existing Merchant account can be used so long as it is an internet ready account.[/toggle]\r\n[toggle title=\"What is a payment gateway?\"]A payment gateway is the connection between your online shop and your merchant account provider.  It is the equivalent to the credit card point of sale terminal in a shop.  The gateway protects the customers card details by encrypting it before sending to the merchant account provider.[/toggle]\r\n[toggle title=\"How do I ensure that customers transactions are secure?\"]Any customer visiting your site will need to be assured that sensitive details supplied to your site will be secure.  This is achieved by using SSL (Secure Socket Layers) the standard method on encryption currently used on the internet. Visitors to your website will see the padlock symbol in the browser bar to show that it is a secure page. This is also shown in the URL as secure URL\'s begin with “HTTPS” instead of the standard “HTTP”.[/toggle]\r\n[toggle title=\"What is SSL?\"]SSL (Secure Socket Layer) is a method of encrypting the sensitive data transmitted from you eCommerce site so as to ensure that no unauthorised users can access the data.[/toggle]\r\n','FAQ\'s','','inherit','closed','closed','','49-revision-8','','','2011-07-11 14:58:34','2011-07-11 14:58:34','',49,'http://bestecommerce-uk.com/2011/07/49-revision-8/',0,'revision','',0),(175,1,'2011-07-11 15:13:08','2011-07-11 15:13:08','A list of frequently asked questions below:\r\n\r\n[toggle title=\"What is eCommerce?\"]The <a href=\"http://oxforddictionaries.com/definition/e-commerce\">Oxford english dictionary</a> definition of ecommerce is “commercial transactions conducted electronically on the Internet.”[/toggle]\r\n[toggle title=\"How much does an eCommerce Website cost?\"]The cost varies depending on what package you choose...[/toggle]\r\n[toggle title=\"How long will it take to build our site?\"]Usually 3-4 weeks depending on the add-ons you require...[/toggle]\r\n[toggle title=\"What should I consider when starting an online business?\"]If you do not already have a product to sell then find a niche product that will sell online. Conduct market research to determine the likely sales level of the product, who your competitors are and where you would fit in the market.\r\nAlso consider whether the product is suitable for online sales. Most ecommerce sites now offer free standard postage and packing so if you intend to offer this then the cost must come from your overheads. If the unit cost to shipping cost ratio is high then the product becomes less economical to sell.[/toggle]\r\n[toggle title=\"What is the biggest hurdle in starting an online business?\"]The biggest hurdle will be letting your customers know you are there. If you already have a bricks and mortar shop you can let your exiting customers know via in-store advertising or email if you have their details. However this will not increase your sales. For you business to succeed your site will need to climb the search engine rankings so that you are one of the first sites that people see when searching for your product. A well planned search engine optimisation strategy will aid your site in climbing the rankings and increase potential buyers to your site. We will be happy to advise on and implement a search engine optimisation strategy for an additional monthly fee. Please ask us for details.[/toggle]\r\n[toggle title=\"Do I need a merchant account or can I just use Paypal and money orders?\"]If you plan to take payments using PayPal or Google Checkout only, then you will not require a Merchant ID. If you plan to take Credit Card Payments via a third Party such as SagePay or RBS WorldPay then you will require one. We can help you organise that. Just ask us.[/toggle]\r\n[toggle title=\"I already have a Web site. Can I integrate an online store into it?\"]Yes, you can integrate our shopping cart solutions into your existing site, although the shopping pages will likely look a little different to your existing site. We can use colours and styling to approximate the look and feel of your existing site. The systems we supply allow addition of unlimited site pages, files, video and more. Due to the scope and power of our ecommerce systems and what they allow our customers to do, many of our customers simply choose to recreate the content of their old site inside the ecommerce shopping site itself. In the vast majority of cases this is advantageous for the customer as they can provide a more professional look and feel for their whole site this way. So, once you see what our systems an do, your question may be...\r\n\r\nCan we integrate our existing site into our new store? However you want us to configure things, we can support all these options.[/toggle]\r\n[toggle title=\"Will I be able to customize the \"look and feel\" of my eCommerce site?\"]Yes, any eCommerce site that we build for you will be tailored to your requirements.  After completion modifications can be made at an additional cost.[/toggle]\r\n[toggle title=\"What is a merchant account?\"]A Merchant account lets you accept payments directly from customers\' credit, debit or charge cards. If you do not have an internet ready merchant account we would be happy to assist you in setting this up.[/toggle]\r\n[toggle title=\"Can I use the merchant account I already have for online processing?\"]Yes. Any existing Merchant account can be used so long as it is an internet ready account.[/toggle]\r\n[toggle title=\"What is a payment gateway?\"]A payment gateway is the connection between your eCommerce site and your merchant account provider. It is the equivalent to the credit card point of sale terminal in a shop. The gateway protects the customers card details by encrypting the communication between your eCommerce site and the merchant account provider.[/toggle]\r\n[toggle title=\"How do I ensure that customers transactions are secure?\"]Any customer visiting your site will need to be assured that sensitive details supplied to your site will be secure. This is achieved by using SSL (Secure Socket Layers) the standard method on encryption currently used on the internet. Visitors to your website will see the padlock symbol in the browser bar to show that it is a secure page. This is also shown in the URL as secure URL\'s begin with “HTTPS” instead of the standard “HTTP”.[/toggle]\r\n[toggle title=\"What is SSL?\"]SSL (Secure Socket Layer) is a method of encrypting the sensitive data transmitted from you eCommerce site so as to ensure that no unauthorised users can access the data.[/toggle]\r\n','FAQ\'s','','inherit','closed','closed','','49-revision-9','','','2011-07-11 15:13:08','2011-07-11 15:13:08','',49,'http://bestecommerce-uk.com/2011/07/49-revision-9/',0,'revision','',0),(176,1,'2011-07-11 15:14:19','2011-07-11 15:14:19','A list of frequently asked questions below:\r\n\r\n[toggle title=\"What is eCommerce?\"]The <a href=\"http://oxforddictionaries.com/definition/e-commerce\">Oxford english dictionary</a> definition of ecommerce is “commercial transactions conducted electronically on the Internet.”[/toggle]\r\n[toggle title=\"How much does an eCommerce Website cost?\"]The cost varies depending on what package you choose...[/toggle]\r\n[toggle title=\"How long will it take to build our site?\"]Usually 3-4 weeks depending on the add-ons you require...[/toggle]\r\n[toggle title=\"What should I consider when starting an online business?\"]If you do not already have a product to sell then find a niche product that will sell online. Conduct market research to determine the likely sales level of the product, who your competitors are and where you would fit in the market.\r\nAlso consider whether the product is suitable for online sales. Most ecommerce sites now offer free standard postage and packing so if you intend to offer this then the cost must come from your overheads. If the unit cost to shipping cost ratio is high then the product becomes less economical to sell.[/toggle]\r\n[toggle title=\"What is the biggest hurdle in starting an online business?\"]The biggest hurdle will be letting your customers know you are there. If you already have a bricks and mortar shop you can let your exiting customers know via in-store advertising or email if you have their details. However this will not increase your sales. For you business to succeed your site will need to climb the search engine rankings so that you are one of the first sites that people see when searching for your product. A well planned search engine optimisation strategy will aid your site in climbing the rankings and increase potential buyers to your site. We will be happy to advise on and implement a search engine optimisation strategy for an additional monthly fee. Please ask us for details.[/toggle]\r\n[toggle title=\"Do I need a merchant account or can I just use Paypal and money orders?\"]If you plan to take payments using PayPal or Google Checkout only, then you will not require a Merchant ID. If you plan to take Credit Card Payments via a third Party such as SagePay or RBS WorldPay then you will require one. We can help you organise that. Just ask us.[/toggle]\r\n[toggle title=\"I already have a Web site. Can I integrate an online store into it?\"]Yes, you can integrate our shopping cart solutions into your existing site, although the shopping pages will likely look a little different to your existing site. We can use colours and styling to approximate the look and feel of your existing site. The systems we supply allow addition of unlimited site pages, files, video and more. Due to the scope and power of our ecommerce systems and what they allow our customers to do, many of our customers simply choose to recreate the content of their old site inside the ecommerce shopping site itself. In the vast majority of cases this is advantageous for the customer as they can provide a more professional look and feel for their whole site this way. So, once you see what our systems an do, your question may be...\r\n\r\nCan we integrate our existing site into our new store? However you want us to configure things, we can support all these options.[/toggle]\r\n[toggle title=\"Will I be able to customize the look and feel of my eCommerce site?\"]Yes, any eCommerce site that we build for you will be tailored to your requirements.  After completion modifications can be made at an additional cost.[/toggle]\r\n[toggle title=\"What is a merchant account?\"]A Merchant account lets you accept payments directly from customers\' credit, debit or charge cards. If you do not have an internet ready merchant account we would be happy to assist you in setting this up.[/toggle]\r\n[toggle title=\"Can I use the merchant account I already have for online processing?\"]Yes. Any existing Merchant account can be used so long as it is an internet ready account.[/toggle]\r\n[toggle title=\"What is a payment gateway?\"]A payment gateway is the connection between your eCommerce site and your merchant account provider. It is the equivalent to the credit card point of sale terminal in a shop. The gateway protects the customers card details by encrypting the communication between your eCommerce site and the merchant account provider.[/toggle]\r\n[toggle title=\"How do I ensure that customers transactions are secure?\"]Any customer visiting your site will need to be assured that sensitive details supplied to your site will be secure. This is achieved by using SSL (Secure Socket Layers) the standard method on encryption currently used on the internet. Visitors to your website will see the padlock symbol in the browser bar to show that it is a secure page. This is also shown in the URL as secure URL\'s begin with “HTTPS” instead of the standard “HTTP”.[/toggle]\r\n[toggle title=\"What is SSL?\"]SSL (Secure Socket Layer) is a method of encrypting the sensitive data transmitted from you eCommerce site so as to ensure that no unauthorised users can access the data.[/toggle]\r\n','FAQ\'s','','inherit','closed','closed','','49-revision-10','','','2011-07-11 15:14:19','2011-07-11 15:14:19','',49,'http://bestecommerce-uk.com/2011/07/49-revision-10/',0,'revision','',0),(177,1,'2011-07-11 15:27:38','2011-07-11 15:27:38','A list of frequently asked questions below:\r\n\r\n[toggle title=\"What is eCommerce?\"]The <a href=\"http://oxforddictionaries.com/definition/e-commerce\">Oxford english dictionary</a> definition of ecommerce is “commercial transactions conducted electronically on the Internet.”[/toggle]\r\n[toggle title=\"How much does an eCommerce Website cost?\"]The cost varies depending on what package you choose...[/toggle]\r\n[toggle title=\"How long will it take to build our site?\"]Usually 3-4 weeks depending on the add-ons you require...[/toggle]\r\n[toggle title=\"What should I consider when starting an online business?\"]If you do not already have a product to sell then find a niche product that will sell online. Conduct market research to determine the likely sales level of the product, who your competitors are and where you would fit in the market.\r\nAlso consider whether the product is suitable for online sales. Most eCommerce websites now offer free standard postage and packing so if you intend to offer this then the cost must come from your overheads. If the unit cost to shipping cost ratio is high then the product becomes less economical to sell.[/toggle]\r\n[toggle title=\"What is the biggest hurdle in starting an online business?\"]The biggest hurdle will be letting your customers know you are there. If you already have a bricks and mortar shop you can let your exiting customers know via in-store advertising or email if you have their details. However this will not increase your sales. For you business to succeed your website will need to climb the search engine rankings so that you are one of the first sites that people see when searching for your product. A well planned search engine optimisation strategy will aid your site in climbing the rankings and increase potential buyers to your website. We will be happy to advise on and implement a search engine optimisation strategy for an additional monthly fee. Please ask us for details.[/toggle]\r\n[toggle title=\"Do I need a merchant account or can I just use Paypal and money orders?\"]If you plan to take payments using PayPal or Google Checkout only, then you will not require a Merchant ID. If you plan to take Credit Card Payments via a third Party such as SagePay or RBS WorldPay then you will require one. We can help you organise that. Just ask us.[/toggle]\r\n[toggle title=\"I already have a Website. Can I integrate an online store into it?\"]Yes, you can integrate our shopping cart solutions into your existing website, although the shopping pages will likely look a little different to your existing website. We can use colours and styling to approximate the look and feel of your existing website. The systems we supply allow addition of unlimited website pages, files, video and more. Due to the scope and power of our eCommerce systems and what they allow our customers to do, many of our customers simply choose to recreate the content of their old website inside the eCommerce shopping website itself. In the vast majority of cases this is advantageous for the customer as they can provide a more professional look and feel for their whole website this way. So, once you see what our systems can do, your question may be...\r\n\r\nCan we integrate our existing website into our new eCommerce store? However you want us to configure things, we can support all these options.[/toggle]\r\n[toggle title=\"Will I be able to customize the look and feel of my eCommerce website?\"]Yes, any eCommerce website that we build for you will be tailored to your requirements.  After completion modifications can be made at an additional cost.[/toggle]\r\n[toggle title=\"What is a merchant account?\"]A Merchant account lets you accept payments directly from customers\' credit, debit or charge cards. If you do not have an internet ready merchant account we would be happy to assist you in setting this up.[/toggle]\r\n[toggle title=\"Can I use the merchant account I already have for online processing?\"]Yes. Any existing Merchant account can be used so long as it is an internet ready account.[/toggle]\r\n[toggle title=\"What is a payment gateway?\"]A payment gateway is the connection between your eCommerce website and your merchant account provider. It is the equivalent to the credit card point of sale terminal in a shop. The gateway protects the customers card details by encrypting the communication between your eCommerce website and the merchant account provider.[/toggle]\r\n[toggle title=\"How do I ensure that customers transactions are secure?\"]Any customer visiting your website will need to be assured that sensitive details supplied to your website will be secure. This is achieved by using SSL (Secure Socket Layers) the standard method on encryption currently used on the internet. Visitors to your website will see the padlock symbol in the browser bar to show that it is a secure page. This is also shown in the URL as secure URL\'s begin with “HTTPS” instead of the standard “HTTP”.[/toggle]\r\n[toggle title=\"What is SSL?\"]SSL (Secure Socket Layer) is a method of encrypting the sensitive data transmitted from you eCommerce website so as to ensure that no unauthorised users can access the data.[/toggle]\r\n','FAQ\'s','','inherit','closed','closed','','49-revision-11','','','2011-07-11 15:27:38','2011-07-11 15:27:38','',49,'http://bestecommerce-uk.com/2011/07/49-revision-11/',0,'revision','',0),(178,1,'2011-07-11 15:34:23','2011-07-11 15:34:23','A list of frequently asked questions below:<br />\r\n\r\n[toggle title=\"What is eCommerce?\"]The <a href=\"http://oxforddictionaries.com/definition/e-commerce\">Oxford english dictionary</a> definition of ecommerce is “commercial transactions conducted electronically on the Internet.”[/toggle]\r\n[toggle title=\"How much does an eCommerce Website cost?\"]The cost varies depending on what package you choose...[/toggle]\r\n[toggle title=\"How long will it take to build our site?\"]Usually 3-4 weeks depending on the add-ons you require...[/toggle]\r\n[toggle title=\"What should I consider when starting an online business?\"]If you do not already have a product to sell then find a niche product that will sell online. Conduct market research to determine the likely sales level of the product, who your competitors are and where you would fit in the market.\r\nAlso consider whether the product is suitable for online sales. Most eCommerce websites now offer free standard postage and packing so if you intend to offer this then the cost must come from your overheads. If the unit cost to shipping cost ratio is high then the product becomes less economical to sell.[/toggle]\r\n[toggle title=\"What is the biggest hurdle in starting an online business?\"]The biggest hurdle will be letting your customers know you are there. If you already have a bricks and mortar shop you can let your exiting customers know via in-store advertising or email if you have their details. However this will not increase your sales. For you business to succeed your website will need to climb the search engine rankings so that you are one of the first sites that people see when searching for your product. A well planned search engine optimisation strategy will aid your site in climbing the rankings and increase potential buyers to your website. We will be happy to advise on and implement a search engine optimisation strategy for an additional monthly fee. Please ask us for details.[/toggle]\r\n[toggle title=\"Do I need a merchant account or can I just use Paypal and money orders?\"]If you plan to take payments using PayPal or Google Checkout only, then you will not require a Merchant ID. If you plan to take Credit Card Payments via a third Party such as SagePay or RBS WorldPay then you will require one. We can help you organise that. Just ask us.[/toggle]\r\n[toggle title=\"I already have a Website. Can I integrate an online store into it?\"]Yes, you can integrate our shopping cart solutions into your existing website, although the shopping pages will likely look a little different to your existing website. We can use colours and styling to approximate the look and feel of your existing website. The systems we supply allow addition of unlimited website pages, files, video and more. Due to the scope and power of our eCommerce systems and what they allow our customers to do, many of our customers simply choose to recreate the content of their old website inside the eCommerce shopping website itself. In the vast majority of cases this is advantageous for the customer as they can provide a more professional look and feel for their whole website this way. So, once you see what our systems can do, your question may be...\r\n\r\nCan we integrate our existing website into our new eCommerce store? However you want us to configure things, we can support all these options.[/toggle]\r\n[toggle title=\"Will I be able to customize the look and feel of my eCommerce website?\"]Yes, any eCommerce website that we build for you will be tailored to your requirements.  After completion modifications can be made at an additional cost.[/toggle]\r\n[toggle title=\"What is a merchant account?\"]A Merchant account lets you accept payments directly from customers\' credit, debit or charge cards. If you do not have an internet ready merchant account we would be happy to assist you in setting this up.[/toggle]\r\n[toggle title=\"Can I use the merchant account I already have for online processing?\"]Yes. Any existing Merchant account can be used so long as it is an internet ready account.[/toggle]\r\n[toggle title=\"What is a payment gateway?\"]A payment gateway is the connection between your eCommerce website and your merchant account provider. It is the equivalent to the credit card point of sale terminal in a shop. The gateway protects the customers card details by encrypting the communication between your eCommerce website and the merchant account provider.[/toggle]\r\n[toggle title=\"How do I ensure that customers transactions are secure?\"]Any customer visiting your website will need to be assured that sensitive details supplied to your website will be secure. This is achieved by using SSL (Secure Socket Layers) the standard method on encryption currently used on the internet. Visitors to your website will see the padlock symbol in the browser bar to show that it is a secure page. This is also shown in the URL as secure URL\'s begin with “HTTPS” instead of the standard “HTTP”.[/toggle]\r\n[toggle title=\"What is SSL?\"]SSL (Secure Socket Layer) is a method of encrypting the sensitive data transmitted from you eCommerce website so as to ensure that no unauthorised users can access the data.[/toggle]\r\n','FAQ\'s','','inherit','closed','closed','','49-revision-12','','','2011-07-11 15:34:23','2011-07-11 15:34:23','',49,'http://bestecommerce-uk.com/2011/07/49-revision-12/',0,'revision','',0),(179,1,'2011-07-11 15:34:41','2011-07-11 15:34:41','A list of frequently asked questions below:<br /><br />\r\n\r\n[toggle title=\"What is eCommerce?\"]The <a href=\"http://oxforddictionaries.com/definition/e-commerce\">Oxford english dictionary</a> definition of ecommerce is “commercial transactions conducted electronically on the Internet.”[/toggle]\r\n[toggle title=\"How much does an eCommerce Website cost?\"]The cost varies depending on what package you choose...[/toggle]\r\n[toggle title=\"How long will it take to build our site?\"]Usually 3-4 weeks depending on the add-ons you require...[/toggle]\r\n[toggle title=\"What should I consider when starting an online business?\"]If you do not already have a product to sell then find a niche product that will sell online. Conduct market research to determine the likely sales level of the product, who your competitors are and where you would fit in the market.\r\nAlso consider whether the product is suitable for online sales. Most eCommerce websites now offer free standard postage and packing so if you intend to offer this then the cost must come from your overheads. If the unit cost to shipping cost ratio is high then the product becomes less economical to sell.[/toggle]\r\n[toggle title=\"What is the biggest hurdle in starting an online business?\"]The biggest hurdle will be letting your customers know you are there. If you already have a bricks and mortar shop you can let your exiting customers know via in-store advertising or email if you have their details. However this will not increase your sales. For you business to succeed your website will need to climb the search engine rankings so that you are one of the first sites that people see when searching for your product. A well planned search engine optimisation strategy will aid your site in climbing the rankings and increase potential buyers to your website. We will be happy to advise on and implement a search engine optimisation strategy for an additional monthly fee. Please ask us for details.[/toggle]\r\n[toggle title=\"Do I need a merchant account or can I just use Paypal and money orders?\"]If you plan to take payments using PayPal or Google Checkout only, then you will not require a Merchant ID. If you plan to take Credit Card Payments via a third Party such as SagePay or RBS WorldPay then you will require one. We can help you organise that. Just ask us.[/toggle]\r\n[toggle title=\"I already have a Website. Can I integrate an online store into it?\"]Yes, you can integrate our shopping cart solutions into your existing website, although the shopping pages will likely look a little different to your existing website. We can use colours and styling to approximate the look and feel of your existing website. The systems we supply allow addition of unlimited website pages, files, video and more. Due to the scope and power of our eCommerce systems and what they allow our customers to do, many of our customers simply choose to recreate the content of their old website inside the eCommerce shopping website itself. In the vast majority of cases this is advantageous for the customer as they can provide a more professional look and feel for their whole website this way. So, once you see what our systems can do, your question may be...\r\n\r\nCan we integrate our existing website into our new eCommerce store? However you want us to configure things, we can support all these options.[/toggle]\r\n[toggle title=\"Will I be able to customize the look and feel of my eCommerce website?\"]Yes, any eCommerce website that we build for you will be tailored to your requirements.  After completion modifications can be made at an additional cost.[/toggle]\r\n[toggle title=\"What is a merchant account?\"]A Merchant account lets you accept payments directly from customers\' credit, debit or charge cards. If you do not have an internet ready merchant account we would be happy to assist you in setting this up.[/toggle]\r\n[toggle title=\"Can I use the merchant account I already have for online processing?\"]Yes. Any existing Merchant account can be used so long as it is an internet ready account.[/toggle]\r\n[toggle title=\"What is a payment gateway?\"]A payment gateway is the connection between your eCommerce website and your merchant account provider. It is the equivalent to the credit card point of sale terminal in a shop. The gateway protects the customers card details by encrypting the communication between your eCommerce website and the merchant account provider.[/toggle]\r\n[toggle title=\"How do I ensure that customers transactions are secure?\"]Any customer visiting your website will need to be assured that sensitive details supplied to your website will be secure. This is achieved by using SSL (Secure Socket Layers) the standard method on encryption currently used on the internet. Visitors to your website will see the padlock symbol in the browser bar to show that it is a secure page. This is also shown in the URL as secure URL\'s begin with “HTTPS” instead of the standard “HTTP”.[/toggle]\r\n[toggle title=\"What is SSL?\"]SSL (Secure Socket Layer) is a method of encrypting the sensitive data transmitted from you eCommerce website so as to ensure that no unauthorised users can access the data.[/toggle]\r\n','FAQ\'s','','inherit','closed','closed','','49-revision-13','','','2011-07-11 15:34:41','2011-07-11 15:34:41','',49,'http://bestecommerce-uk.com/2011/07/49-revision-13/',0,'revision','',0),(180,1,'2011-07-11 15:36:19','2011-07-11 15:36:19','A list of frequently asked questions below:<br /><br />\r\n\r\n[toggle title=\"What is eCommerce?\"]The <a href=\"http://oxforddictionaries.com/definition/e-commerce\">Oxford english dictionary</a> definition of ecommerce is “commercial transactions conducted electronically on the Internet.”[/toggle]\r\n[toggle title=\"How much does an eCommerce Website cost?\"]The cost varies depending on what package you choose...[/toggle]\r\n[toggle title=\"How long will it take to build our site?\"]Usually 3-4 weeks depending on the add-ons you require...[/toggle]\r\n[toggle title=\"<p>What should I consider when starting an online business?\"]If you do not already have a product to sell then find a niche product that will sell online. Conduct market research to determine the likely sales level of the product, who your competitors are and where you would fit in the market.\r\nAlso consider whether the product is suitable for online sales.</p> <p>Most eCommerce websites now offer free standard postage and packing so if you intend to offer this then the cost must come from your overheads. If the unit cost to shipping cost ratio is high then the product becomes less economical to sell.</p>[/toggle]\r\n[toggle title=\"What is the biggest hurdle in starting an online business?\"]The biggest hurdle will be letting your customers know you are there. If you already have a bricks and mortar shop you can let your exiting customers know via in-store advertising or email if you have their details. However this will not increase your sales. For you business to succeed your website will need to climb the search engine rankings so that you are one of the first sites that people see when searching for your product. A well planned search engine optimisation strategy will aid your site in climbing the rankings and increase potential buyers to your website. We will be happy to advise on and implement a search engine optimisation strategy for an additional monthly fee. Please ask us for details.[/toggle]\r\n[toggle title=\"Do I need a merchant account or can I just use Paypal and money orders?\"]If you plan to take payments using PayPal or Google Checkout only, then you will not require a Merchant ID. If you plan to take Credit Card Payments via a third Party such as SagePay or RBS WorldPay then you will require one. We can help you organise that. Just ask us.[/toggle]\r\n[toggle title=\"I already have a Website. Can I integrate an online store into it?\"]Yes, you can integrate our shopping cart solutions into your existing website, although the shopping pages will likely look a little different to your existing website. We can use colours and styling to approximate the look and feel of your existing website. The systems we supply allow addition of unlimited website pages, files, video and more. Due to the scope and power of our eCommerce systems and what they allow our customers to do, many of our customers simply choose to recreate the content of their old website inside the eCommerce shopping website itself. In the vast majority of cases this is advantageous for the customer as they can provide a more professional look and feel for their whole website this way. So, once you see what our systems can do, your question may be...\r\n\r\nCan we integrate our existing website into our new eCommerce store? However you want us to configure things, we can support all these options.[/toggle]\r\n[toggle title=\"Will I be able to customize the look and feel of my eCommerce website?\"]Yes, any eCommerce website that we build for you will be tailored to your requirements.  After completion modifications can be made at an additional cost.[/toggle]\r\n[toggle title=\"What is a merchant account?\"]A Merchant account lets you accept payments directly from customers\' credit, debit or charge cards. If you do not have an internet ready merchant account we would be happy to assist you in setting this up.[/toggle]\r\n[toggle title=\"Can I use the merchant account I already have for online processing?\"]Yes. Any existing Merchant account can be used so long as it is an internet ready account.[/toggle]\r\n[toggle title=\"What is a payment gateway?\"]A payment gateway is the connection between your eCommerce website and your merchant account provider. It is the equivalent to the credit card point of sale terminal in a shop. The gateway protects the customers card details by encrypting the communication between your eCommerce website and the merchant account provider.[/toggle]\r\n[toggle title=\"How do I ensure that customers transactions are secure?\"]Any customer visiting your website will need to be assured that sensitive details supplied to your website will be secure. This is achieved by using SSL (Secure Socket Layers) the standard method on encryption currently used on the internet. Visitors to your website will see the padlock symbol in the browser bar to show that it is a secure page. This is also shown in the URL as secure URL\'s begin with “HTTPS” instead of the standard “HTTP”.[/toggle]\r\n[toggle title=\"What is SSL?\"]SSL (Secure Socket Layer) is a method of encrypting the sensitive data transmitted from you eCommerce website so as to ensure that no unauthorised users can access the data.[/toggle]\r\n','FAQ\'s','','inherit','closed','closed','','49-revision-14','','','2011-07-11 15:36:19','2011-07-11 15:36:19','',49,'http://bestecommerce-uk.com/2011/07/49-revision-14/',0,'revision','',0),(181,1,'2011-07-11 15:36:46','2011-07-11 15:36:46','A list of frequently asked questions below:<br /><br />\r\n\r\n[toggle title=\"What is eCommerce?\"]The <a href=\"http://oxforddictionaries.com/definition/e-commerce\">Oxford english dictionary</a> definition of ecommerce is “commercial transactions conducted electronically on the Internet.”[/toggle]\r\n[toggle title=\"How much does an eCommerce Website cost?\"]The cost varies depending on what package you choose...[/toggle]\r\n[toggle title=\"How long will it take to build our site?\"]Usually 3-4 weeks depending on the add-ons you require...[/toggle]\r\n[toggle title=\"What should I consider when starting an online business?\"]<p>If you do not already have a product to sell then find a niche product that will sell online. Conduct market research to determine the likely sales level of the product, who your competitors are and where you would fit in the market.\r\nAlso consider whether the product is suitable for online sales.</p> <p>Most eCommerce websites now offer free standard postage and packing so if you intend to offer this then the cost must come from your overheads. If the unit cost to shipping cost ratio is high then the product becomes less economical to sell.</p>[/toggle]\r\n[toggle title=\"What is the biggest hurdle in starting an online business?\"]The biggest hurdle will be letting your customers know you are there. If you already have a bricks and mortar shop you can let your exiting customers know via in-store advertising or email if you have their details. However this will not increase your sales. For you business to succeed your website will need to climb the search engine rankings so that you are one of the first sites that people see when searching for your product. A well planned search engine optimisation strategy will aid your site in climbing the rankings and increase potential buyers to your website. We will be happy to advise on and implement a search engine optimisation strategy for an additional monthly fee. Please ask us for details.[/toggle]\r\n[toggle title=\"Do I need a merchant account or can I just use Paypal and money orders?\"]If you plan to take payments using PayPal or Google Checkout only, then you will not require a Merchant ID. If you plan to take Credit Card Payments via a third Party such as SagePay or RBS WorldPay then you will require one. We can help you organise that. Just ask us.[/toggle]\r\n[toggle title=\"I already have a Website. Can I integrate an online store into it?\"]Yes, you can integrate our shopping cart solutions into your existing website, although the shopping pages will likely look a little different to your existing website. We can use colours and styling to approximate the look and feel of your existing website. The systems we supply allow addition of unlimited website pages, files, video and more. Due to the scope and power of our eCommerce systems and what they allow our customers to do, many of our customers simply choose to recreate the content of their old website inside the eCommerce shopping website itself. In the vast majority of cases this is advantageous for the customer as they can provide a more professional look and feel for their whole website this way. So, once you see what our systems can do, your question may be...\r\n\r\nCan we integrate our existing website into our new eCommerce store? However you want us to configure things, we can support all these options.[/toggle]\r\n[toggle title=\"Will I be able to customize the look and feel of my eCommerce website?\"]Yes, any eCommerce website that we build for you will be tailored to your requirements.  After completion modifications can be made at an additional cost.[/toggle]\r\n[toggle title=\"What is a merchant account?\"]A Merchant account lets you accept payments directly from customers\' credit, debit or charge cards. If you do not have an internet ready merchant account we would be happy to assist you in setting this up.[/toggle]\r\n[toggle title=\"Can I use the merchant account I already have for online processing?\"]Yes. Any existing Merchant account can be used so long as it is an internet ready account.[/toggle]\r\n[toggle title=\"What is a payment gateway?\"]A payment gateway is the connection between your eCommerce website and your merchant account provider. It is the equivalent to the credit card point of sale terminal in a shop. The gateway protects the customers card details by encrypting the communication between your eCommerce website and the merchant account provider.[/toggle]\r\n[toggle title=\"How do I ensure that customers transactions are secure?\"]Any customer visiting your website will need to be assured that sensitive details supplied to your website will be secure. This is achieved by using SSL (Secure Socket Layers) the standard method on encryption currently used on the internet. Visitors to your website will see the padlock symbol in the browser bar to show that it is a secure page. This is also shown in the URL as secure URL\'s begin with “HTTPS” instead of the standard “HTTP”.[/toggle]\r\n[toggle title=\"What is SSL?\"]SSL (Secure Socket Layer) is a method of encrypting the sensitive data transmitted from you eCommerce website so as to ensure that no unauthorised users can access the data.[/toggle]\r\n','FAQ\'s','','inherit','closed','closed','','49-revision-15','','','2011-07-11 15:36:46','2011-07-11 15:36:46','',49,'http://bestecommerce-uk.com/2011/07/49-revision-15/',0,'revision','',0),(182,1,'2011-07-11 15:39:23','2011-07-11 15:39:23','A list of frequently asked questions below:<br /><br />\r\n\r\n[toggle title=\"What is eCommerce?\"]The <a href=\"http://oxforddictionaries.com/definition/e-commerce\">Oxford english dictionary</a> definition of ecommerce is “commercial transactions conducted electronically on the Internet.”[/toggle]\r\n[toggle title=\"How much does an eCommerce Website cost?\"]The cost varies depending on what package you choose...[/toggle]\r\n[toggle title=\"How long will it take to build our site?\"]Usually 3-4 weeks depending on the add-ons you require...[/toggle]\r\n[toggle title=\"What should I consider when starting an online business?\"]<p>If you do not already have a product to sell then find a niche product that will sell online. Conduct market research to determine the likely sales level of the product, who your competitors are and where you would fit in the market.\r\nAlso consider whether the product is suitable for online sales.</p> <p>Most eCommerce websites now offer free standard postage and packing so if you intend to offer this then the cost must come from your overheads. If the unit cost to shipping cost ratio is high then the product becomes less economical to sell.</p>[/toggle]\r\n[toggle title=\"What is the biggest hurdle in starting an online business?\"]<p>The biggest hurdle will be letting your customers know you are there. If you already have a bricks and mortar shop you can let your exiting customers know via in-store advertising or email if you have their details. However this will not increase your sales.</p><p> For you business to succeed your website will need to climb the search engine rankings so that you are one of the first sites that people see when searching for your product. A well planned search engine optimisation strategy will aid your site in climbing the rankings and increase potential buyers to your website. We will be happy to advise on and implement a search engine optimisation strategy for an additional monthly fee. Please ask us for details.</p>[/toggle]\r\n[toggle title=\"Do I need a merchant account or can I just use Paypal and money orders?\"]If you plan to take payments using PayPal or Google Checkout only, then you will not require a Merchant ID. If you plan to take Credit Card Payments via a third Party such as SagePay or RBS WorldPay then you will require one. We can help you organise that. Just ask us.[/toggle]\r\n[toggle title=\"I already have a Website. Can I integrate an online store into it?\"]Yes, you can integrate our shopping cart solutions into your existing website, although the shopping pages will likely look a little different to your existing website. We can use colours and styling to approximate the look and feel of your existing website. The systems we supply allow addition of unlimited website pages, files, video and more. Due to the scope and power of our eCommerce systems and what they allow our customers to do, many of our customers simply choose to recreate the content of their old website inside the eCommerce shopping website itself. In the vast majority of cases this is advantageous for the customer as they can provide a more professional look and feel for their whole website this way. So, once you see what our systems can do, your question may be...\r\n\r\nCan we integrate our existing website into our new eCommerce store? However you want us to configure things, we can support all these options.[/toggle]\r\n[toggle title=\"Will I be able to customize the look and feel of my eCommerce website?\"]Yes, any eCommerce website that we build for you will be tailored to your requirements.  After completion modifications can be made at an additional cost.[/toggle]\r\n[toggle title=\"What is a merchant account?\"]A Merchant account lets you accept payments directly from customers\' credit, debit or charge cards. If you do not have an internet ready merchant account we would be happy to assist you in setting this up.[/toggle]\r\n[toggle title=\"Can I use the merchant account I already have for online processing?\"]Yes. Any existing Merchant account can be used so long as it is an internet ready account.[/toggle]\r\n[toggle title=\"What is a payment gateway?\"]A payment gateway is the connection between your eCommerce website and your merchant account provider. It is the equivalent to the credit card point of sale terminal in a shop. The gateway protects the customers card details by encrypting the communication between your eCommerce website and the merchant account provider.[/toggle]\r\n[toggle title=\"How do I ensure that customers transactions are secure?\"]Any customer visiting your website will need to be assured that sensitive details supplied to your website will be secure. This is achieved by using SSL (Secure Socket Layers) the standard method on encryption currently used on the internet. Visitors to your website will see the padlock symbol in the browser bar to show that it is a secure page. This is also shown in the URL as secure URL\'s begin with “HTTPS” instead of the standard “HTTP”.[/toggle]\r\n[toggle title=\"What is SSL?\"]SSL (Secure Socket Layer) is a method of encrypting the sensitive data transmitted from you eCommerce website so as to ensure that no unauthorised users can access the data.[/toggle]\r\n','FAQ\'s','','inherit','closed','closed','','49-revision-16','','','2011-07-11 15:39:23','2011-07-11 15:39:23','',49,'http://bestecommerce-uk.com/2011/07/49-revision-16/',0,'revision','',0),(183,1,'2011-07-11 15:42:52','2011-07-11 15:42:52','A list of frequently asked questions below:<br /><br />\r\n\r\n[toggle title=\"What is eCommerce?\"]The <a href=\"http://oxforddictionaries.com/definition/e-commerce\">Oxford english dictionary</a> definition of ecommerce is “commercial transactions conducted electronically on the Internet.”[/toggle]\r\n[toggle title=\"How much does an eCommerce Website cost?\"]The cost varies depending on what <a href=\"http://www.webdesign-uk.org/best-e-commerce-packages/\">package</a> you choose...[/toggle]\r\n[toggle title=\"How long will it take to build our site?\"]Usually 3-4 weeks depending on the add-ons you require...[/toggle]\r\n[toggle title=\"What should I consider when starting an online business?\"]<p>If you do not already have a product to sell then find a niche product that will sell online. Conduct market research to determine the likely sales level of the product, who your competitors are and where you would fit in the market.\r\nAlso consider whether the product is suitable for online sales.</p> <p>Most eCommerce websites now offer free standard postage and packing so if you intend to offer this then the cost must come from your overheads. If the unit cost to shipping cost ratio is high then the product becomes less economical to sell.</p>[/toggle]\r\n[toggle title=\"What is the biggest hurdle in starting an online business?\"]<p>The biggest hurdle will be letting your customers know you are there. If you already have a bricks and mortar shop you can let your exiting customers know via in-store advertising or email if you have their details. However this will not increase your sales.</p><p> For you business to succeed your website will need to climb the search engine rankings so that you are one of the first sites that people see when searching for your product. A well planned search engine optimisation strategy will aid your site in climbing the rankings and increase potential buyers to your website. We will be happy to advise on and implement a search engine optimisation strategy for an additional monthly fee. Please ask us for details.</p>[/toggle]\r\n[toggle title=\"Do I need a merchant account or can I just use Paypal and money orders?\"]If you plan to take payments using PayPal or Google Checkout only, then you will not require a Merchant ID. If you plan to take Credit Card Payments via a third Party such as SagePay or RBS WorldPay then you will require one. We can help you organise that. Just ask us.[/toggle]\r\n[toggle title=\"I already have a Website. Can I integrate an online store into it?\"]Yes, you can integrate our shopping cart solutions into your existing website, although the shopping pages will likely look a little different to your existing website. We can use colours and styling to approximate the look and feel of your existing website. The systems we supply allow addition of unlimited website pages, files, video and more. Due to the scope and power of our eCommerce systems and what they allow our customers to do, many of our customers simply choose to recreate the content of their old website inside the eCommerce shopping website itself. In the vast majority of cases this is advantageous for the customer as they can provide a more professional look and feel for their whole website this way. So, once you see what our systems can do, your question may be...\r\n\r\nCan we integrate our existing website into our new eCommerce store? However you want us to configure things, we can support all these options.[/toggle]\r\n[toggle title=\"Will I be able to customize the look and feel of my eCommerce website?\"]Yes, any eCommerce website that we build for you will be tailored to your requirements.  After completion modifications can be made at an additional cost.[/toggle]\r\n[toggle title=\"What is a merchant account?\"]A Merchant account lets you accept payments directly from customers\' credit, debit or charge cards. If you do not have an internet ready merchant account we would be happy to assist you in setting this up.[/toggle]\r\n[toggle title=\"Can I use the merchant account I already have for online processing?\"]Yes. Any existing Merchant account can be used so long as it is an internet ready account.[/toggle]\r\n[toggle title=\"What is a payment gateway?\"]A payment gateway is the connection between your eCommerce website and your merchant account provider. It is the equivalent to the credit card point of sale terminal in a shop. The gateway protects the customers card details by encrypting the communication between your eCommerce website and the merchant account provider.[/toggle]\r\n[toggle title=\"How do I ensure that customers transactions are secure?\"]Any customer visiting your website will need to be assured that sensitive details supplied to your website will be secure. This is achieved by using SSL (Secure Socket Layers) the standard method on encryption currently used on the internet. Visitors to your website will see the padlock symbol in the browser bar to show that it is a secure page. This is also shown in the URL as secure URL\'s begin with “HTTPS” instead of the standard “HTTP”.[/toggle]\r\n[toggle title=\"What is SSL?\"]SSL (Secure Socket Layer) is a method of encrypting the sensitive data transmitted from you eCommerce website so as to ensure that no unauthorised users can access the data.[/toggle]\r\n','FAQ\'s','','inherit','closed','closed','','49-revision-17','','','2011-07-11 15:42:52','2011-07-11 15:42:52','',49,'http://bestecommerce-uk.com/2011/07/49-revision-17/',0,'revision','',0),(184,1,'2011-07-11 15:47:31','2011-07-11 15:47:31','A list of frequently asked questions below:<br /><br />\r\n\r\n[toggle title=\"What is eCommerce?\"]The <a href=\"http://oxforddictionaries.com/definition/e-commerce\">Oxford english dictionary</a> definition of ecommerce is “commercial transactions conducted electronically on the Internet.”[/toggle]\r\n[toggle title=\"How much does an eCommerce Website cost?\"]The cost varies depending on what <a href=\"http://www.webdesign-uk.org/best-e-commerce-packages/\">package</a> you choose...[/toggle]\r\n[toggle title=\"How long will it take to build our site?\"]Usually 3-4 weeks depending on the add-ons you require...[/toggle]\r\n[toggle title=\"What should I consider when starting an online business?\"]<p>If you do not already have a product to sell then find a niche product that will sell online. Conduct market research to determine the likely sales level of the product, who your competitors are and where you would fit in the market.\r\nAlso consider whether the product is suitable for online sales.</p> <p>Most eCommerce websites now offer free standard postage and packing so if you intend to offer this then the cost must come from your overheads. If the unit cost to shipping cost ratio is high then the product becomes less economical to sell.</p>[/toggle]\r\n[toggle title=\"What is the biggest hurdle in starting an online business?\"]<p>The biggest hurdle will be letting your customers know you are there. If you already have a bricks and mortar shop you can let your exiting customers know via in-store advertising or email if you have their details. However this will not increase your sales.</p> <p>For you business to succeed your website will need to climb the search engine rankings so that you are one of the first sites that people see when searching for your product. A well planned search engine optimisation strategy will aid your site in climbing the rankings and increase potential buyers to your website. We will be happy to advise on and implement a search engine optimisation strategy for an additional monthly fee. Please ask us for details.</p>[/toggle]\r\n[toggle title=\"Do I need a merchant account or can I just use Paypal and money orders?\"]If you plan to take payments using PayPal or Google Checkout only, then you will not require a Merchant ID. If you plan to take Credit Card Payments via a third Party such as SagePay or RBS WorldPay then you will require one. We can help you organise that. Just ask us.[/toggle]\r\n[toggle title=\"I already have a Website. Can I integrate an online store into it?\"]<p>Yes, you can integrate our shopping cart solutions into your existing website, although the shopping pages will likely look a little different to your existing website. We can use colours and styling to approximate the look and feel of your existing website.</p> <p>The systems we supply allow addition of unlimited website pages, files, video and more. Due to the scope and power of our eCommerce systems and what they allow our customers to do, many of our customers simply choose to recreate the content of their old website inside the eCommerce shopping website itself. In the vast majority of cases this is advantageous for the customer as they can provide a more professional look and feel for their whole website this way. So, once you see what our systems can do, your question may be...</p> <p>Can we integrate our existing website into our new eCommerce store? However you want us to configure things, we can support all these options.</p>[/toggle]\r\n[toggle title=\"Will I be able to customize the look and feel of my eCommerce website?\"]Yes, any eCommerce website that we build for you will be tailored to your requirements.  After completion modifications can be made at an additional cost.[/toggle]\r\n[toggle title=\"What is a merchant account?\"]A Merchant account lets you accept payments directly from customers\' credit, debit or charge cards. If you do not have an internet ready merchant account we would be happy to assist you in setting this up.[/toggle]\r\n[toggle title=\"Can I use the merchant account I already have for online processing?\"]Yes. Any existing Merchant account can be used so long as it is an internet ready account.[/toggle]\r\n[toggle title=\"What is a payment gateway?\"]A payment gateway is the connection between your eCommerce website and your merchant account provider. It is the equivalent to the credit card point of sale terminal in a shop. The gateway protects the customers card details by encrypting the communication between your eCommerce website and the merchant account provider.[/toggle]\r\n[toggle title=\"How do I ensure that customers transactions are secure?\"]Any customer visiting your website will need to be assured that sensitive details supplied to your website will be secure. This is achieved by using SSL (Secure Socket Layers) the standard method on encryption currently used on the internet. Visitors to your website will see the padlock symbol in the browser bar to show that it is a secure page. This is also shown in the URL as secure URL\'s begin with “HTTPS” instead of the standard “HTTP”.[/toggle]\r\n[toggle title=\"What is SSL?\"]SSL (Secure Socket Layer) is a method of encrypting the sensitive data transmitted from you eCommerce website so as to ensure that no unauthorised users can access the data.[/toggle]\r\n','FAQ\'s','','inherit','closed','closed','','49-revision-18','','','2011-07-11 15:47:31','2011-07-11 15:47:31','',49,'http://bestecommerce-uk.com/2011/07/49-revision-18/',0,'revision','',0),(185,1,'2011-07-11 15:48:40','2011-07-11 15:48:40','A list of frequently asked questions below:<br /><br />\r\n\r\n[toggle title=\"What is eCommerce?\"]The <a href=\"http://oxforddictionaries.com/definition/e-commerce\">Oxford english dictionary</a> definition of ecommerce is “commercial transactions conducted electronically on the Internet.”[/toggle]\r\n[toggle title=\"How much does an eCommerce Website cost?\"]The cost varies depending on what <a href=\"http://www.webdesign-uk.org/best-e-commerce-packages/\">package</a> you choose...[/toggle]\r\n[toggle title=\"How long will it take to build our site?\"]Usually 3-4 weeks depending on the add-ons you require...[/toggle]\r\n[toggle title=\"What should I consider when starting an online business?\"]<p>If you do not already have a product to sell then find a niche product that will sell online. Conduct market research to determine the likely sales level of the product, who your competitors are and where you would fit in the market.\r\nAlso consider whether the product is suitable for online sales.</p> <p>Most eCommerce websites now offer free standard postage and packing so if you intend to offer this then the cost must come from your overheads. If the unit cost to shipping cost ratio is high then the product becomes less economical to sell.</p>[/toggle]\r\n[toggle title=\"What is the biggest hurdle in starting an online business?\"]<p>The biggest hurdle will be letting your customers know you are there. If you already have a bricks and mortar shop you can let your exiting customers know via in-store advertising or email if you have their details. However this will not increase your sales.</p> <p>For you business to succeed your website will need to climb the search engine rankings so that you are one of the first sites that people see when searching for your product. A well planned search engine optimisation strategy will aid your site in climbing the rankings and increase potential buyers to your website. We will be happy to advise on and implement a search engine optimisation strategy for an additional monthly fee. Please ask us for details.</p>[/toggle]\r\n[toggle title=\"Do I need a merchant account or can I just use Paypal and money orders?\"]If you plan to take payments using PayPal or Google Checkout only, then you will not require a Merchant ID. If you plan to take Credit Card Payments via a third Party such as SagePay or RBS WorldPay then you will require one. We can help you organise that. Just ask us.[/toggle]\r\n[toggle title=\"I already have a Website. Can I integrate an online store into it?\"]<p>Yes, you can integrate our shopping cart solutions into your existing website, although the shopping pages will likely look a little different to your existing website. We can use colours and styling to approximate the look and feel of your existing website.</p> <p>The systems we supply allow addition of unlimited website pages, files, video and more. Due to the scope and power of our eCommerce systems and what they allow our customers to do, many of our customers simply choose to recreate the content of their old website inside the eCommerce shopping website itself. In the vast majority of cases this is advantageous for the customer as they can provide a more professional look and feel for their whole website this way. So, once you see what our systems can do, your question may be...</p> <p>Can we integrate our existing website into our new eCommerce store? However you want us to configure things, we can support all these options.</p>[/toggle]\r\n[toggle title=\"Will I be able to customize the look and feel of my eCommerce website?\"]Yes, any eCommerce website that we build for you will be tailored to your requirements.  After completion modifications can be made at an additional cost.[/toggle]\r\n[toggle title=\"What is a merchant account?\"]A merchant account lets you accept payments directly from customers\' credit, debit or charge cards. If you do not have an internet ready merchant account we would be happy to assist you in setting this up.[/toggle]\r\n[toggle title=\"Can I use the merchant account I already have for online processing?\"]Yes. Any existing Merchant account can be used so long as it is an internet ready account.[/toggle]\r\n[toggle title=\"What is a payment gateway?\"]A payment gateway is the connection between your eCommerce website and your merchant account provider. It is the equivalent to the credit card point of sale terminal in a shop. The gateway protects the customers card details by encrypting the communication between your eCommerce website and the merchant account provider.[/toggle]\r\n[toggle title=\"How do I ensure that customers transactions are secure?\"]Any customer visiting your website will need to be assured that sensitive details supplied to your website will be secure. This is achieved by using SSL (Secure Socket Layers) the standard method on encryption currently used on the internet. Visitors to your website will see the padlock symbol in the browser bar to show that it is a secure page. This is also shown in the URL as secure URL\'s begin with “HTTPS” instead of the standard “HTTP”.[/toggle]\r\n[toggle title=\"What is SSL?\"]SSL (Secure Socket Layer) is a method of encrypting the sensitive data transmitted from you eCommerce website so as to ensure that no unauthorised users can access the data.[/toggle]\r\n','FAQ\'s','','inherit','closed','closed','','49-revision-19','','','2011-07-11 15:48:40','2011-07-11 15:48:40','',49,'http://bestecommerce-uk.com/2011/07/49-revision-19/',0,'revision','',0),(186,1,'2011-07-11 15:49:07','2011-07-11 15:49:07','A list of frequently asked questions below:<br /><br />\r\n\r\n[toggle title=\"What is eCommerce?\"]The <a href=\"http://oxforddictionaries.com/definition/e-commerce\">Oxford english dictionary</a> definition of ecommerce is “commercial transactions conducted electronically on the Internet.”[/toggle]\r\n[toggle title=\"How much does an eCommerce Website cost?\"]The cost varies depending on what <a href=\"http://www.webdesign-uk.org/best-e-commerce-packages/\">package</a> you choose...[/toggle]\r\n[toggle title=\"How long will it take to build our site?\"]Usually 3-4 weeks depending on the add-ons you require...[/toggle]\r\n[toggle title=\"What should I consider when starting an online business?\"]<p>If you do not already have a product to sell then find a niche product that will sell online. Conduct market research to determine the likely sales level of the product, who your competitors are and where you would fit in the market.\r\nAlso consider whether the product is suitable for online sales.</p> <p>Most eCommerce websites now offer free standard postage and packing so if you intend to offer this then the cost must come from your overheads. If the unit cost to shipping cost ratio is high then the product becomes less economical to sell.</p>[/toggle]\r\n[toggle title=\"What is the biggest hurdle in starting an online business?\"]<p>The biggest hurdle will be letting your customers know you are there. If you already have a bricks and mortar shop you can let your exiting customers know via in-store advertising or email if you have their details. However this will not increase your sales.</p> <p>For you business to succeed your website will need to climb the search engine rankings so that you are one of the first sites that people see when searching for your product. A well planned search engine optimisation strategy will aid your site in climbing the rankings and increase potential buyers to your website. We will be happy to advise on and implement a search engine optimisation strategy for an additional monthly fee. Please ask us for details.</p>[/toggle]\r\n[toggle title=\"Do I need a merchant account or can I just use Paypal and money orders?\"]If you plan to take payments using PayPal or Google Checkout only, then you will not require a Merchant ID. If you plan to take Credit Card Payments via a third Party such as SagePay or RBS WorldPay then you will require one. We can help you organise that. Just ask us.[/toggle]\r\n[toggle title=\"I already have a Website. Can I integrate an online store into it?\"]<p>Yes, you can integrate our shopping cart solutions into your existing website, although the shopping pages will likely look a little different to your existing website. We can use colours and styling to approximate the look and feel of your existing website.</p> <p>The systems we supply allow addition of unlimited website pages, files, video and more. Due to the scope and power of our eCommerce systems and what they allow our customers to do, many of our customers simply choose to recreate the content of their old website inside the eCommerce shopping website itself. In the vast majority of cases this is advantageous for the customer as they can provide a more professional look and feel for their whole website this way. So, once you see what our systems can do, your question may be...</p> <p>Can we integrate our existing website into our new eCommerce store? However you want us to configure things, we can support all these options.</p>[/toggle]\r\n[toggle title=\"Will I be able to customize the look and feel of my eCommerce website?\"]Yes, any eCommerce website that we build for you will be tailored to your requirements.  After completion modifications can be made at an additional cost.[/toggle]\r\n[toggle title=\"What is a merchant account?\"]A merchant account lets you accept payments directly from customers\' credit, debit or charge cards. If you do not have an internet ready merchant account we would be happy to assist you in setting this up.[/toggle]\r\n[toggle title=\"Can I use the merchant account I already have for online processing?\"]Yes. Any existing merchant account can be used so long as it is an internet ready account.[/toggle]\r\n[toggle title=\"What is a payment gateway?\"]A payment gateway is the connection between your eCommerce website and your merchant account provider. It is the equivalent to the credit card point of sale terminal in a shop. The gateway protects the customers card details by encrypting the communication between your eCommerce website and the merchant account provider.[/toggle]\r\n[toggle title=\"How do I ensure that customers transactions are secure?\"]Any customer visiting your website will need to be assured that sensitive details supplied to your website will be secure. This is achieved by using SSL (Secure Socket Layers) the standard method on encryption currently used on the internet. Visitors to your website will see the padlock symbol in the browser bar to show that it is a secure page. This is also shown in the URL as secure URL\'s begin with “HTTPS” instead of the standard “HTTP”.[/toggle]\r\n[toggle title=\"What is SSL?\"]SSL (Secure Socket Layer) is a method of encrypting the sensitive data transmitted from you eCommerce website so as to ensure that no unauthorised users can access the data.[/toggle]\r\n','FAQ\'s','','inherit','closed','closed','','49-revision-20','','','2011-07-11 15:49:07','2011-07-11 15:49:07','',49,'http://bestecommerce-uk.com/2011/07/49-revision-20/',0,'revision','',0),(187,1,'2011-07-13 14:58:50','2011-07-13 14:58:50','There are many people out there with opinions on what are the best tactics to succeed at search engine optimisation (SEO).  Here is my advice for beginners looking to increase their rankings.\r\n\r\nThe following tips are presented in no particular order as regards their importance:\r\n<h2>1. Good content</h2>\r\nEnsure your site has good content that is clear, concise, original and without spelling mistakes.\r\n\r\nCarry out some keyword research to determine the best keywords for you site.  Your keywords should be the word, words or phases that users will enter into the search engines when looking for your site, service or product. However, unless you have substantial budget and resources, it is not advisable to choose words with high competition as you will struggle to make headway.\r\n\r\nThe content should also be kept fresh and up to date as search engines will de-prioritise stagnant sites.  Also be aware that the search engines rate sites for human readability so keep sentences and words short so as to make them easier to understand by the masses.\r\n<h2>2. URLs</h2>\r\nKeep the URLs user and search engine friendly as this will help with SEO.  They should be logical and contain your target keywords.  For example: www.yourwebsite.com/category/subcategory.\r\n<h2>3. Quality backlinks</h2>\r\nLink building is still one most important aspect of SEO as the number of links to you site is an indicator of its importance and popularity.  Ensure that the links to your site are relevant to the content and are from reputable sites.  Links from unrelated sites do not provide benefit  in the eyes of the search engines.\r\n<h2>4.  Tags</h2>\r\nTitle tags are one of the first things that the search engine spider will check when looking at your page.  Ensure that it includes the keywords or key-phrase that you want to rank for.  The optimal length of a title tag should range between 50 to 80 characters.\r\n\r\nDescription tags are important as the search engines will display the first 150 characters under a search. So it needs to contains the target keywords or key-phrase, be well written and relevant.  Even if you are in position 1 - if the user reads your description and it does not make sense to the reader or is not relevant they will not click through to your site.\r\n\r\nKeyword tags are a brief list of the targeted keywords or key-phrases on your page.  Some search engines now ignore this tag when indexing sites but it can be useful to support the theme of the page for the search engines that do still index this tag.\r\n\r\nH1, H2, H3... These tags sit in the main body of the contact acting as levelled heading with H1 at the top, going down to H6 at the lowest level or subcategory.  It is recommended that the page title is replicated in the H1 tag with variation or long-tail keywords used in the lower tags.  I would advise that the tags are used in sequential order only.\r\n<h2>5. Create a sitemap</h2>\r\nA sitemap is (as the name suggests) a map of you site containing a list of all the links to the pages within your site.  This aids the search engines in indexing the site as they will follow these links rather that crawling the site following the each link from page to page in turn.  The sitemap can be created as HTML and XML but is also just as effective as an simple text file.\r\n\r\nThere are many more SEO factors that can have an affect on how the search engines rank sites but  those listed above are some of the key factors that should be followed in order for you site to progress organically.','Top 5 organic SEO tips for beginners','','trash','closed','closed','','top-5-organic-seo-tips-for-beginners','','','2011-12-08 11:34:19','2011-12-08 11:34:19','',0,'http://bestecommerce-uk.com/?p=187',0,'post','',0),(188,1,'2011-07-13 14:58:05','2011-07-13 14:58:05','There are many people out there with opinions on what are the best tactics to succeed at search engine optimisation (SEO).  Here is my advice for beginners looking to increase their rankings.\n\nThe following tips are presented in no particular order as regards their importance:\n\n<h2>1. Good content</h2>\n\nEnsure your site has good content that is clear, concise, original and without spelling mistakes.  \n\nCarry out some keyword research to determine the best keywords for you site.  Your keywords should be the word, words or phases that users will enter into the search engines when looking for your site, service or product. However, unless you have substantial budget and resources, it is not advisable to choose words with high competition as you will struggle to make headway.  \n\nThe content should also be kept fresh and up to date as search engines will de-prioritise stagnant sites.  Also be aware that the search engines rate sites for human readability so keep sentences and words short so as to make them easier to understand by the masses. \n\n<h2>2. URLs</h2>\n\nKeep the URLs user and search engine friendly as this will help with SEO.  They should be logical and contain your target keywords.  For example: www.yourwebsite.com/category/subcategory\n\n<h2>3. Quality backlinks</h2>\n\nLink building is still one most important aspect of SEO as the number of links to you site is an indicator of its importance and popularity.  Ensure that the links too your site are relevant to the content and are from reputable sites.  Links from unrelated sites do not provide benefit  in the eyes of the search engines.  \n\n<h2>4.  Tags</h2>\n\nTitle tags are one of the first things that the search engine spider will check when looking at your page.  Ensure that it includes the keywords or key-phrase that you want to rank for.  The optimal length of a title tag should range between 50 to 80 characters.\n\nDescription tags are important as the search engines will display the first 150 characters under a search. So it needs to contains the target keywords or key-phrase, be well written and relevant.  Even if you are in position 1 - if the user reads your description and it does not make sense to the reader or is not relevant they will not click through to your site.\n\nKeyword tags are a brief list of the targeted keywords or key-phrases on your page.  Some search engines now ignore this tag when indexing sites but it can be useful to support the theme of the page for the search engines that do still index this tag.\n\nH1, H2, H3... These tags sit in the main body of the contact acting as levelled heading with H1 at the top, going down to H6 at the lowest level or subcategory.  It is recommended that the page title is replicated in the H1 tag with variation or long-tail keywords used in the lower tags.  I would advise that the tags are used in sequential order only.\n\n<h2>5. Create a sitemap</h2>\n\nA sitemap is (as the name suggests) a map of you site containing a list of all the links to the pages within your site.  This aids the search engines in indexing the site as they will follow these links rather that crawling the site following the each link from page to page in turn.  The sitemap can be created as HTML and XML but is also just as effective as an simple text file.\n\nThere are many more SEO factors that can have an affect on how the search engines rank sites but  those listed above are some of the key factors that should be followed in order for you site to progress organically.  ','Top 5 organic SEO tips for beginners','','inherit','closed','closed','','187-revision','','','2011-07-13 14:58:05','2011-07-13 14:58:05','',187,'http://bestecommerce-uk.com/2011/07/187-revision/',0,'revision','',0),(189,1,'2011-11-29 10:05:18','2011-11-29 10:05:18','There are many people out there with opinions on what are the best tactics to succeed at search engine optimisation (SEO).  Here is my advice for beginners looking to increase their rankings.\n\nThe following tips are presented in no particular order as regards their importance:\n<h2>1. Good content</h2>\nEnsure your site has good content that is clear, concise, original and without spelling mistakes.\n\nCarry out some keyword research to determine the best keywords for you site.  Your keywords should be the word, words or phases that users will enter into the search engines when looking for your site, service or product. However, unless you have substantial budget and resources, it is not advisable to choose words with high competition as you will struggle to make headway.\n\nThe content should also be kept fresh and up to date as search engines will de-prioritise stagnant sites.  Also be aware that the search engines rate sites for human readability so keep sentences and words short so as to make them easier to understand by the masses.\n<h2>2. URLs</h2>\nKeep the URLs user and search engine friendly as this will help with SEO.  They should be logical and contain your target keywords.  For example: www.yourwebsite.com/category/subcategory.\n<h2>3. Quality backlinks</h2>\nLink building is still one most important aspect of SEO as the number of links to you site is an indicator of its importance and popularity.  Ensure that the links too your site are relevant to the content and are from reputable sites.  Links from unrelated sites do not provide benefit  in the eyes of the search engines.\n<h2>4.  Tags</h2>\nTitle tags are one of the first things that the search engine spider will check when looking at your page.  Ensure that it includes the keywords or key-phrase that you want to rank for.  The optimal length of a title tag should range between 50 to 80 characters.\n\nDescription tags are important as the search engines will display the first 150 characters under a search. So it needs to contains the target keywords or key-phrase, be well written and relevant.  Even if you are in position 1 - if the user reads your description and it does not make sense to the reader or is not relevant they will not click through to your site.\n\nKeyword tags are a brief list of the targeted keywords or key-phrases on your page.  Some search engines now ignore this tag when indexing sites but it can be useful to support the theme of the page for the search engines that do still index this tag.\n\nH1, H2, H3... These tags sit in the main body of the contact acting as levelled heading with H1 at the top, going down to H6 at the lowest level or subcategory.  It is recommended that the page title is replicated in the H1 tag with variation or long-tail keywords used in the lower tags.  I would advise that the tags are used in sequential order only.\n<h2>5. Create a sitemap</h2>\nA sitemap is (as the name suggests) a map of you site containing a list of all the links to the pages within your site.  This aids the search engines in indexing the site as they will follow these links rather that crawling the site following the each link from page to page in turn.  The sitemap can be created as HTML and XML but is also just as effective as an simple text file.\n\nThere are many more SEO factors that can have an affect on how the search engines rank sites but  those listed above are some of the key factors that should be followed in order for you site to progress organically.','Top 5 organic SEO tips for beginners','','inherit','closed','closed','','187-autosave','','','2011-11-29 10:05:18','2011-11-29 10:05:18','',187,'http://bestecommerce-uk.com/2011/07/187-autosave/',0,'revision','',0),(190,1,'2011-07-13 14:58:50','2011-07-13 14:58:50','There are many people out there with opinions on what are the best tactics to succeed at search engine optimisation (SEO).  Here is my advice for beginners looking to increase their rankings.\r\n\r\nThe following tips are presented in no particular order as regards their importance:\r\n\r\n<h2>1. Good content</h2>\r\n\r\nEnsure your site has good content that is clear, concise, original and without spelling mistakes.  \r\n\r\nCarry out some keyword research to determine the best keywords for you site.  Your keywords should be the word, words or phases that users will enter into the search engines when looking for your site, service or product. However, unless you have substantial budget and resources, it is not advisable to choose words with high competition as you will struggle to make headway.  \r\n\r\nThe content should also be kept fresh and up to date as search engines will de-prioritise stagnant sites.  Also be aware that the search engines rate sites for human readability so keep sentences and words short so as to make them easier to understand by the masses. \r\n\r\n<h2>2. URLs</h2>\r\n\r\nKeep the URLs user and search engine friendly as this will help with SEO.  They should be logical and contain your target keywords.  For example: www.yourwebsite.com/category/subcategory\r\n\r\n<h2>3. Quality backlinks</h2>\r\n\r\nLink building is still one most important aspect of SEO as the number of links to you site is an indicator of its importance and popularity.  Ensure that the links too your site are relevant to the content and are from reputable sites.  Links from unrelated sites do not provide benefit  in the eyes of the search engines.  \r\n\r\n<h2>4.  Tags</h2>\r\n\r\nTitle tags are one of the first things that the search engine spider will check when looking at your page.  Ensure that it includes the keywords or key-phrase that you want to rank for.  The optimal length of a title tag should range between 50 to 80 characters.\r\n\r\nDescription tags are important as the search engines will display the first 150 characters under a search. So it needs to contains the target keywords or key-phrase, be well written and relevant.  Even if you are in position 1 - if the user reads your description and it does not make sense to the reader or is not relevant they will not click through to your site.\r\n\r\nKeyword tags are a brief list of the targeted keywords or key-phrases on your page.  Some search engines now ignore this tag when indexing sites but it can be useful to support the theme of the page for the search engines that do still index this tag.\r\n\r\nH1, H2, H3... These tags sit in the main body of the contact acting as levelled heading with H1 at the top, going down to H6 at the lowest level or subcategory.  It is recommended that the page title is replicated in the H1 tag with variation or long-tail keywords used in the lower tags.  I would advise that the tags are used in sequential order only.\r\n\r\n<h2>5. Create a sitemap</h2>\r\n\r\nA sitemap is (as the name suggests) a map of you site containing a list of all the links to the pages within your site.  This aids the search engines in indexing the site as they will follow these links rather that crawling the site following the each link from page to page in turn.  The sitemap can be created as HTML and XML but is also just as effective as an simple text file.\r\n\r\nThere are many more SEO factors that can have an affect on how the search engines rank sites but  those listed above are some of the key factors that should be followed in order for you site to progress organically.  ','Top 5 organic SEO tips for beginners','','inherit','closed','closed','','187-revision-2','','','2011-07-13 14:58:50','2011-07-13 14:58:50','',187,'http://bestecommerce-uk.com/2011/07/187-revision-2/',0,'revision','',0),(191,1,'2011-07-13 15:00:05','2011-07-13 15:00:05','There are many people out there with opinions on what are the best tactics to succeed at search engine optimisation (SEO).  Here is my advice for beginners looking to increase their rankings.\r\n\r\nThe following tips are presented in no particular order as regards their importance:\r\n\r\n&nbsp;\r\n<h2>1. Good content</h2>\r\nEnsure your site has good content that is clear, concise, original and without spelling mistakes.\r\n\r\nCarry out some keyword research to determine the best keywords for you site.  Your keywords should be the word, words or phases that users will enter into the search engines when looking for your site, service or product. However, unless you have substantial budget and resources, it is not advisable to choose words with high competition as you will struggle to make headway.\r\n\r\nThe content should also be kept fresh and up to date as search engines will de-prioritise stagnant sites.  Also be aware that the search engines rate sites for human readability so keep sentences and words short so as to make them easier to understand by the masses.\r\n\r\n&nbsp;\r\n<h2>2. URLs</h2>\r\nKeep the URLs user and search engine friendly as this will help with SEO.  They should be logical and contain your target keywords.  For example: www.yourwebsite.com/category/subcategory\r\n<h2>3. Quality backlinks</h2>\r\nLink building is still one most important aspect of SEO as the number of links to you site is an indicator of its importance and popularity.  Ensure that the links too your site are relevant to the content and are from reputable sites.  Links from unrelated sites do not provide benefit  in the eyes of the search engines.\r\n\r\n&nbsp;\r\n<h2>4.  Tags</h2>\r\nTitle tags are one of the first things that the search engine spider will check when looking at your page.  Ensure that it includes the keywords or key-phrase that you want to rank for.  The optimal length of a title tag should range between 50 to 80 characters.\r\n\r\nDescription tags are important as the search engines will display the first 150 characters under a search. So it needs to contains the target keywords or key-phrase, be well written and relevant.  Even if you are in position 1 - if the user reads your description and it does not make sense to the reader or is not relevant they will not click through to your site.\r\n\r\nKeyword tags are a brief list of the targeted keywords or key-phrases on your page.  Some search engines now ignore this tag when indexing sites but it can be useful to support the theme of the page for the search engines that do still index this tag.\r\n\r\nH1, H2, H3... These tags sit in the main body of the contact acting as levelled heading with H1 at the top, going down to H6 at the lowest level or subcategory.  It is recommended that the page title is replicated in the H1 tag with variation or long-tail keywords used in the lower tags.  I would advise that the tags are used in sequential order only.\r\n\r\n&nbsp;\r\n<h2>5. Create a sitemap</h2>\r\nA sitemap is (as the name suggests) a map of you site containing a list of all the links to the pages within your site.  This aids the search engines in indexing the site as they will follow these links rather that crawling the site following the each link from page to page in turn.  The sitemap can be created as HTML and XML but is also just as effective as an simple text file.\r\n\r\nThere are many more SEO factors that can have an affect on how the search engines rank sites but  those listed above are some of the key factors that should be followed in order for you site to progress organically.','Top 5 organic SEO tips for beginners','','inherit','closed','closed','','187-revision-3','','','2011-07-13 15:00:05','2011-07-13 15:00:05','',187,'http://bestecommerce-uk.com/2011/07/187-revision-3/',0,'revision','',0),(193,1,'2011-07-14 14:42:59','2011-07-14 14:42:59','<!-- [one_third]First column of content.[/one_third]\r\n[one_third]Second column of content.[/one_third]\r\n[one_third_last]Last column of content.[/one_third_last]\r\n-->\r\n\r\n[tabs]\r\n[tab title=\"Site Management\"]\r\n<h3>Site Management</h3>\r\n[bullet_list icon=\"check\"]\r\n<ul>\r\n	<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\r\n	<li>Administration of permissions, system roles and users</li>\r\n	<li>Web Services API for easy integration with third-party applications</li>\r\n	<li>Fully 100% customizable design using templates, or bespoke design</li>\r\n	<li>Support for Customer Groups</li>\r\n	<li>Content Management System for General or Site Information Pages</li>\r\n	<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n</ul>\r\n[/bullet_list]\r\n<h3>Analytics and reporting</h3>\r\n[bullet_list icon=\"check\"]\r\n<ul>\r\n	<li>Integrated with Google Analytics</li>\r\n	<li>Admin Dashboard for Report Overview</li>\r\n	<li>Sales Reports</li>\r\n	<li>RSS feed for New Orders</li>\r\n	<li>Tax Report</li>\r\n	<li>Abandoned Shopping Cart Report</li>\r\n	<li>Best Viewed Products Report</li>\r\n	<li>Best Purchased Products Report</li>\r\n	<li>Low Stock Report</li>\r\n	<li>Search Terms Report</li>\r\n	<li>Product Reviews Report</li>\r\n	<li>RSS feed for New Reviews</li>\r\n	<li>Tags Report</li>\r\n	<li>RSS feed for New Tags</li>\r\n	<li>Coupon Usage Report</li>\r\n	<li>Total Sales Invoiced</li>\r\n	<li>Total Sales Refunded</li>\r\n</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"SEO and Marketing\"]\r\n<h3>Search Engine Optimisation</h3>\r\n[bullet_list icon=\"check\"]\r\n<ul>\r\n	<li>100% Search Engine Friendly</li>\r\n	<li>Google Site Map</li>\r\n	<li>Search Engine Friendly URL’s</li>\r\n	<li>URL Rewrites give full control of URL’s</li>\r\n	<li>Meta-information for products and categories</li>\r\n	<li>Auto-generated Site Map for display on site</li>\r\n	<li>Auto-Generated Popular Search Terms Page</li>\r\n</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Marketing Promotions and Tools</h3>\r\n<ul>\r\n	<li>Poll users to establish their preferences</li>\r\n	<li>Newsletter Facility</li>\r\n	<li>Landing Page Tool for Campaigns</li>\r\n	<li>Catalogue Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories and products</li>\r\n	<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n	<li>Free Shipping Options</li>\r\n	<li>Multi-Tier Pricing for quantity discounts</li>\r\n	<li>Bundled Products Options</li>\r\n	<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n	<li>Recently Viewed Products</li>\r\n	<li>Recently Compared Items</li>\r\n	<li>New Items Promotional Tool</li>\r\n	<li>Up-sells in Shopping Cart</li>\r\n	<li>Cross-sells on product pages</li>\r\n	<li>Send to a Friend for all visitors, or registered users only</li>\r\n	<li>Send Wishlist to a Friend by Email or RSS</li>\r\n	<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n	<li>Auto-generated Site Map</li>\r\n	<li>Google Site Map</li>\r\n</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n<h3>Orders</h3>\r\n[bullet_list icon=\"check\"]\r\n<ul>\r\n	<li>View, edit, create and fulfill orders from admin panel</li>\r\n	<li>Create one or multiple invoices, shipments and credit memos per order to allow for split-fulfillment</li>\r\n	<li>Print invoices and packing slips</li>\r\n	<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n	<li>Create re-orders for customers from administration panel</li>\r\n	<li>Email Notifications of Orders</li>\r\n	<li>RSS feed of New Orders</li>\r\n</ul>\r\n[/bullet_list]\r\n<h3>Checkout, Payment and Shipping</h3>\r\n[bullet_list icon=\"check\"]\r\n<ul>\r\n	<li>One-Page Checkout</li>\r\n	<li>Support for Integration of real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n	<li>Support for Integration with Amazon Payments</li>\r\n	<li>Support for Integration with multiple PayPal gateways</li>\r\n	<li>Support for Integration with Authorize.net</li>\r\n	<li>Support for Integration with Google Checkout (Level 2)</li>\r\n	<li>Accept Cheques/Money Orders</li>\r\n	<li>Accept Purchase Orders</li>\r\n	<li>SSL security support for orders on both front-end and back-end</li>\r\n	<li>Guest Checkout and Checkout with account to use address book</li>\r\n	<li>Shopping Cart with tax and shipping estimates</li>\r\n	<li>Option for account creation at beginning of checkout</li>\r\n	<li>Saved Shopping Carts with configurable expiration time</li>\r\n	<li>Shipping to multiple addresses in one order</li>\r\n	<li>On-site order tracking from customer accounts</li>\r\n	<li>Multiple shipments per order</li>\r\n	<li>Ability to specify allowed shipping destination countries</li>\r\n	<li>Support for Flat rate shipping per order</li>\r\n	<li>Support for Flat rate shipping per item</li>\r\n	<li>Supports Free Shipping</li>\r\n	<li>Support for Table rates for weight and destination</li>\r\n	<li>Support for Table rates for product sub-totals and destination</li>\r\n	<li>Support for Table rates for number of items and destination Free</li>\r\n</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Customer\"]\r\n<h3>Customer Service</h3>\r\n[bullet_list icon=\"check\"]\r\n<ul>\r\n	<li>Contact Us form</li>\r\n	<li>Feature-rich Customer Accounts</li>\r\n	<li>Order History with Status Updates</li>\r\n	<li>Order Tracking from Account</li>\r\n	<li>Password Reset email from front-end and admin panel</li>\r\n	<li>Order and Account Update Emails</li>\r\n	<li>Customizable Order Emails</li>\r\n	<li>Create and Edit Orders from the Admin Panel</li>\r\n</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Customer Accounts</h3>\r\n<ul>\r\n	<li>Order status and history</li>\r\n	<li>Re-orders from account</li>\r\n	<li>Recently ordered items</li>\r\n	<li>Address Book with unlimited addresses</li>\r\n	<li>Default Billing and Shipping addresses</li>\r\n	<li>Email or Send RSS feed of Wishlist</li>\r\n	<li>Newsletter Subscription management</li>\r\n	<li>Product Reviews submitted</li>\r\n	<li>Product Tags submitted</li>\r\n	<li>Support for Downloadable/Digital Products</li>\r\n	<li></li>\r\n	<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags</li>\r\n</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Management &amp; Browsing\"]\r\n<h3>Catalog Management</h3>\r\n[bullet_list icon=\"check\"]\r\n<ul>\r\n	<li>Inventory Management with Backordered items, Minimum and Maximum quantities</li>\r\n	<li>Batch Import and Export of catalogue items</li>\r\n	<li>Batch Updates to products in admin panel</li>\r\n	<li>Google Base Integration</li>\r\n	<li>Support for Simple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products</li>\r\n	<li>Support for Virtual Products</li>\r\n	<li>Support for Downloadable/Digital Products</li>\r\n	<li>Tax Rates per location, customer group and product type</li>\r\n	<li>Attribute Sets for quick product creation of different product types</li>\r\n	<li>Create Store-specific attributes on the fly</li>\r\n	<li>Media Manager with automatic image resizing and watermarking</li>\r\n	<li>Advanced Pricing Rules and support for Special Prices</li>\r\n	<li>Search Results rewrites and redirects</li>\r\n	<li>Approve, Edit and Delete Product Tags</li>\r\n	<li>Approve, Edit and Delete Product Reviews</li>\r\n	<li>RSS feed for Low Inventory Alerts</li>\r\n	<li>Support for Customer Personalized Products - upload text for embroidery, monogramming, etc.</li>\r\n	<li>Customer Personalized Products – Upload Image</li>\r\n	<li>Customer Personalized Products – Select Date/Time options for products</li>\r\n	<li>Customer Sorting – Define Attributes to enable Customer Product Sorting on category (price, brand, etc.)</li>\r\n</ul>\r\n[/bullet_list]\r\n<h3>Catalog Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n<ul>\r\n	<li>Layered / Faceted Navigation for filtering of products in categories</li>\r\n	<li>Layered / Faceted Navigation for filtering of products in search results</li>\r\n	<li>Flat Catalogue Module for Improved Performance with large catalogues</li>\r\n	<li>Static Block tool to create category landing pages</li>\r\n	<li>Ability to assign designs on category and product level (unique design per product/category)</li>\r\n	<li>Configurable search with auto-suggested terms</li>\r\n	<li>Recently viewed products</li>\r\n	<li>Product comparisons</li>\r\n	<li>Recently compared products</li>\r\n	<li>Cross-sells, Up-sells and Related Items</li>\r\n	<li>Popular Search Terms Cloud</li>\r\n	<li>Filter by Product Tags</li>\r\n	<li>Product Reviews</li>\r\n	<li>Product listing in grid or list format</li>\r\n	<li>Breadcrumbs</li>\r\n</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Product Browsing\"]\r\n<h3>Product Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n<ul>\r\n	<li>Multiple Images Per Product</li>\r\n	<li>Product Image Zoom-in Capability</li>\r\n	<li>Product Reviews</li>\r\n	<li>Related Products</li>\r\n	<li>Stock Availability</li>\r\n	<li>Multi-Tier Pricing Upsell</li>\r\n	<li>Product Option Selection</li>\r\n	<li>Grouped Products View</li>\r\n	<li>Add to Wishlist</li>\r\n	<li>Send to a Friend with Email</li>\r\n</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]','WebShop 3.0 Feature List','','publish','closed','closed','','webshop-3-0-feature-list','','','2011-12-16 13:40:45','2011-12-16 13:40:45','',71,'http://bestecommerce-uk.com/?page_id=193',2,'page','',0),(676,1,'2011-10-14 14:01:02','2011-10-14 14:01:02','There are many people out there with opinions on what are the best tactics to succeed at search engine optimisation (SEO).  Here is my advice for beginners looking to increase their rankings.\r\n\r\nThe following tips are presented in no particular order as regards their importance:<br /><br />\r\n<h2>1. Good content</h2>\r\nEnsure your site has good content that is clear, concise, original and without spelling mistakes.\r\n\r\nCarry out some keyword research to determine the best keywords for you site.  Your keywords should be the word, words or phases that users will enter into the search engines when looking for your site, service or product. However, unless you have substantial budget and resources, it is not advisable to choose words with high competition as you will struggle to make headway.\r\n\r\nThe content should also be kept fresh and up to date as search engines will de-prioritise stagnant sites.  Also be aware that the search engines rate sites for human readability so keep sentences and words short so as to make them easier to understand by the masses.<br /><br />\r\n<h2>2. URLs</h2>\r\nKeep the URLs user and search engine friendly as this will help with SEO.  They should be logical and contain your target keywords.  For example: www.yourwebsite.com/category/subcategory.<br /><br />\r\n<h2>3. Quality backlinks</h2>\r\nLink building is still one most important aspect of SEO as the number of links to you site is an indicator of its importance and popularity.  Ensure that the links too your site are relevant to the content and are from reputable sites.  Links from unrelated sites do not provide benefit  in the eyes of the search engines.<br /><br />\r\n<h2>4.  Tags</h2>\r\nTitle tags are one of the first things that the search engine spider will check when looking at your page.  Ensure that it includes the keywords or key-phrase that you want to rank for.  The optimal length of a title tag should range between 50 to 80 characters.<br /><br />\r\n\r\nDescription tags are important as the search engines will display the first 150 characters under a search. So it needs to contains the target keywords or key-phrase, be well written and relevant.  Even if you are in position 1 - if the user reads your description and it does not make sense to the reader or is not relevant they will not click through to your site.\r\n\r\nKeyword tags are a brief list of the targeted keywords or key-phrases on your page.  Some search engines now ignore this tag when indexing sites but it can be useful to support the theme of the page for the search engines that do still index this tag.\r\n\r\nH1, H2, H3... These tags sit in the main body of the contact acting as levelled heading with H1 at the top, going down to H6 at the lowest level or subcategory.  It is recommended that the page title is replicated in the H1 tag with variation or long-tail keywords used in the lower tags.  I would advise that the tags are used in sequential order only.<br /><br />\r\n<h2>5. Create a sitemap</h2>\r\nA sitemap is (as the name suggests) a map of you site containing a list of all the links to the pages within your site.  This aids the search engines in indexing the site as they will follow these links rather that crawling the site following the each link from page to page in turn.  The sitemap can be created as HTML and XML but is also just as effective as an simple text file.\r\n\r\nThere are many more SEO factors that can have an affect on how the search engines rank sites but  those listed above are some of the key factors that should be followed in order for you site to progress organically.','Top 5 organic SEO tips for beginners','','inherit','closed','closed','','187-revision-12','','','2011-10-14 14:01:02','2011-10-14 14:01:02','',187,'http://bestecommerce-uk.com/2011/10/187-revision-12/',0,'revision','',0),(192,1,'2011-07-13 15:02:20','2011-07-13 15:02:20','<p>There are many people out there with opinions on what are the best tactics to succeed at search engine optimisation (SEO).  Here is my advice for beginners looking to increase their rankings.</p>\r\n\r\n<p>The following tips are presented in no particular order as regards their importance:</p>\r\n\r\n\r\n<h2>1. Good content</h2>\r\n<p>Ensure your site has good content that is clear, concise, original and without spelling mistakes.</p>\r\n\r\n<p>Carry out some keyword research to determine the best keywords for you site.  Your keywords should be the word, words or phases that users will enter into the search engines when looking for your site, service or product. However, unless you have substantial budget and resources, it is not advisable to choose words with high competition as you will struggle to make headway.</p>\r\n\r\n<p>The content should also be kept fresh and up to date as search engines will de-prioritise stagnant sites.  Also be aware that the search engines rate sites for human readability so keep sentences and words short so as to make them easier to understand by the masses.</p>\r\n\r\n<h2>2. URLs</h2>\r\n<p>Keep the URLs user and search engine friendly as this will help with SEO.  They should be logical and contain your target keywords.  For example: www.yourwebsite.com/category/subcategory</p>\r\n\r\n<h2>3. Quality backlinks</h2>\r\n<p>Link building is still one most important aspect of SEO as the number of links to you site is an indicator of its importance and popularity.  Ensure that the links too your site are relevant to the content and are from reputable sites.  Links from unrelated sites do not provide benefit  in the eyes of the search engines.</p>\r\n\r\n\r\n<h2>4.  Tags</h2>\r\n<p>Title tags are one of the first things that the search engine spider will check when looking at your page.  Ensure that it includes the keywords or key-phrase that you want to rank for.  The optimal length of a title tag should range between 50 to 80 characters.</p>\r\n\r\n<p>Description tags are important as the search engines will display the first 150 characters under a search. So it needs to contains the target keywords or key-phrase, be well written and relevant.  Even if you are in position 1 - if the user reads your description and it does not make sense to the reader or is not relevant they will not click through to your site.</p>\r\n\r\n<p>Keyword tags are a brief list of the targeted keywords or key-phrases on your page.  Some search engines now ignore this tag when indexing sites but it can be useful to support the theme of the page for the search engines that do still index this tag.</p>\r\n\r\n<p>H1, H2, H3... These tags sit in the main body of the contact acting as levelled heading with H1 at the top, going down to H6 at the lowest level or subcategory.  It is recommended that the page title is replicated in the H1 tag with variation or long-tail keywords used in the lower tags.  I would advise that the tags are used in sequential order only.</p>\r\n\r\n\r\n<h2>5. Create a sitemap</h2>\r\n<p>A sitemap is (as the name suggests) a map of you site containing a list of all the links to the pages within your site.  This aids the search engines in indexing the site as they will follow these links rather that crawling the site following the each link from page to page in turn.  The sitemap can be created as HTML and XML but is also just as effective as an simple text file.</p>\r\n\r\n<p>There are many more SEO factors that can have an affect on how the search engines rank sites but  those listed above are some of the key factors that should be followed in order for you site to progress organically.</p>','Top 5 organic SEO tips for beginners','','inherit','closed','closed','','187-revision-4','','','2011-07-13 15:02:20','2011-07-13 15:02:20','',187,'http://bestecommerce-uk.com/2011/07/187-revision-4/',0,'revision','',0),(194,1,'2011-07-14 14:42:10','2011-07-14 14:42:10','<pre><code>[one_third]First column of content.[/one_third]\n[one_third]Second column of content.[/one_third]\n[one_third_last]Last column of content.[/one_third_last]</code></pre>','Web hop 3.0 Feature List','','inherit','closed','closed','','193-revision','','','2011-07-14 14:42:10','2011-07-14 14:42:10','',193,'http://bestecommerce-uk.com/2011/07/193-revision/',0,'revision','',0),(195,1,'2011-07-14 14:42:59','2011-07-14 14:42:59','<pre><code>[one_third]First column of content.[/one_third]\r\n[one_third]Second column of content.[/one_third]\r\n[one_third_last]Last column of content.[/one_third_last]</code></pre>','WebShop 3.0 Feature List','','inherit','closed','closed','','193-revision-2','','','2011-07-14 14:42:59','2011-07-14 14:42:59','',193,'http://bestecommerce-uk.com/2011/07/193-revision-2/',0,'revision','',0),(196,1,'2011-12-05 15:23:19','2011-12-05 15:23:19','<!-- [one_third]First column of content.[/one_third]\n[one_third]Second column of content.[/one_third]\n[one_third_last]Last column of content.[/one_third_last]\n-->\n\n[tabs]\n[tab title=\"Site Management\"]\n<h3>Site Management</h3>\n[bullet_list icon=\"check\"]\n<ul>\n	<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\n	<li>Administration of permissions, system roles and users</li>\n	<li>Web Services API for easy integration with third-party applications</li>\n	<li>Fully 100% customizable design using templates, or bespoke design</li>\n	<li>Support for Customer Groups</li>\n	<li>Content Management System for General or Site Information Pages</li>\n	<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\n</ul>\n[/bullet_list]\n<h3>Analytics and reporting</h3>\n[bullet_list icon=\"check\"]\n<ul>\n	<li>Integrated with Google Analytics</li>\n	<li>Admin Dashboard for Report Overview</li>\n	<li>Sales Reports</li>\n	<li>RSS feed for New Orders</li>\n	<li>Tax Report</li>\n	<li>Abandoned Shopping Cart Report</li>\n	<li>Best Viewed Products Report</li>\n	<li>Best Purchased Products Report</li>\n	<li>Low Stock Report</li>\n	<li>Search Terms Report</li>\n	<li>Product Reviews Report</li>\n	<li>RSS feed for New Reviews</li>\n	<li>Tags Report</li>\n	<li>RSS feed for New Tags</li>\n	<li>Coupon Usage Report</li>\n	<li>Total Sales Invoiced</li>\n	<li>Total Sales Refunded</li>\n</ul>\n[/bullet_list]\n\n[/tab]\n\n[tab title=\"SEO and Marketing\"]\n<h3>Search Engine Optimisation</h3>\n[bullet_list icon=\"check\"]\n<ul>\n	<li>100% Search Engine Friendly</li>\n	<li>Google Site Map</li>\n	<li>Search Engine Friendly URL’s</li>\n	<li>URL Rewrites give full control of URL’s</li>\n	<li>Meta-information for products and categories</li>\n	<li>Auto-generated Site Map for display on site</li>\n	<li>Auto-Generated Popular Search Terms Page</li>\n</ul>\n[/bullet_list]\n\n[bullet_list icon=\"check\"]\n<h3>Marketing Promotions and Tools</h3>\n<ul>\n	<li>Poll users to establish their preferences</li>\n	<li>Newsletter Facility</li>\n	<li>Landing Page Tool for Campaigns</li>\n	<li>Catalogue Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories and products</li>\n	<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\n	<li>Free Shipping Options</li>\n	<li>Multi-Tier Pricing for quantity discounts</li>\n	<li>Bundled Products Options</li>\n	<li>Customer Group-specific pricing and group-specific tier pricing</li>\n	<li>Recently Viewed Products</li>\n	<li>Recently Compared Items</li>\n	<li>New Items Promotional Tool</li>\n	<li>Up-sells in Shopping Cart</li>\n	<li>Cross-sells on product pages</li>\n	<li>Send to a Friend for all visitors, or registered users only</li>\n	<li>Send Wishlist to a Friend by Email or RSS</li>\n	<li>RSS Feeds for New Products, New Specials and New Tags</li>\n	<li>Auto-generated Site Map</li>\n	<li>Google Site Map</li>\n</ul>\n[/bullet_list]\n[/tab]\n\n[tab title=\"Order Management\"]\n<h3>Orders</h3>\n[bullet_list icon=\"check\"]\n<ul>\n	<li>View, edit, create and fulfill orders from admin panel</li>\n	<li>Create one or multiple invoices, shipments and credit memos per order to allow for split-fulfillment</li>\n	<li>Print invoices and packing slips</li>\n	<li>Call Center (phone) order creation\nIncludes ability to create new customer, or select\nexisting customer and view shopping cart, wishlist,\nlast ordered items, and compared products list, as\nwell as select addresses, give discounts and assign\ncustom prices</li>\n	<li>Create re-orders for customers from administration panel</li>\n	<li>Email Notifications of Orders</li>\n	<li>RSS feed of New Orders</li>\n</ul>\n[/bullet_list]\n<h3>Checkout, Payment and Shipping</h3>\n[bullet_list icon=\"check\"]\n<ul>\n	<li>One-Page Checkout</li>\n	<li>Support for Integration of real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\nrates) and DHL</li>\n	<li>Support for Integration with Amazon Payments</li>\n	<li>Support for Integration with multiple PayPal gateways</li>\n	<li>Support for Integration with Authorize.net</li>\n	<li>Support for Integration with Google Checkout (Level 2)</li>\n	<li>Accept Cheques/Money Orders</li>\n	<li>Accept Purchase Orders</li>\n	<li>SSL security support for orders on both front-end and back-end</li>\n	<li>Guest Checkout and Checkout with account to use address book</li>\n	<li>Shopping Cart with tax and shipping estimates</li>\n	<li>Option for account creation at beginning of checkout</li>\n	<li>Saved Shopping Carts with configurable expiration time</li>\n	<li>Shipping to multiple addresses in one order</li>\n	<li>On-site order tracking from customer accounts</li>\n	<li>Multiple shipments per order</li>\n	<li>Ability to specify allowed shipping destination countries</li>\n	<li>Support for Flat rate shipping per order</li>\n	<li>Support for Flat rate shipping per item</li>\n	<li>Supports Free Shipping</li>\n	<li>Support for Table rates for weight and destination</li>\n	<li>Support for Table rates for product sub-totals and destination</li>\n	<li>Support for Table rates for number of items and destination Free</li>\n</ul>\n[/bullet_list]\n\n[/tab]\n\n[tab title=\"Customer\"]\n<h3>Customer Service</h3>\n[bullet_list icon=\"check\"]\n<ul>\n	<li>Contact Us form</li>\n	<li>Feature-rich Customer Accounts</li>\n	<li>Order History with Status Updates</li>\n	<li>Order Tracking from Account</li>\n	<li>Password Reset email from front-end and admin panel</li>\n	<li>Order and Account Update Emails</li>\n	<li>Customizable Order Emails</li>\n	<li>Create and Edit Orders from the Admin Panel</li>\n</ul>\n[/bullet_list]\n\n[bullet_list icon=\"check\"]\n<h3>Customer Accounts</h3>\n<ul>\n	<li>Order status and history</li>\n	<li>Re-orders from account</li>\n	<li>Recently ordered items</li>\n	<li>Address Book with unlimited addresses</li>\n	<li>Default Billing and Shipping addresses</li>\n	<li>Email or Send RSS feed of Wishlist</li>\n	<li>Newsletter Subscription management</li>\n	<li>Product Reviews submitted</li>\n	<li>Product Tags submitted</li>\n	<li>Support for Downloadable/Digital Products</li>\n	<li></li>\n	<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags</li>\n</ul>\n[/bullet_list]\n[/tab]\n\n[tab title=\"Catalog Management &amp; Browsing\"]\n<h3>Catalog Management</h3>\n[bullet_list icon=\"check\"]\n<ul>\n	<li>Inventory Management with Backordered items, Minimum and Maximum quantities</li>\n	<li>Batch Import and Export of catalogue items</li>\n	<li>Batch Updates to products in admin panel</li>\n	<li>Google Base Integration</li>\n	<li>Support for Simple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products</li>\n	<li>Support for Virtual Products</li>\n	<li>Support for Downloadable/Digital Products</li>\n	<li>Tax Rates per location, customer group and product type</li>\n	<li>Attribute Sets for quick product creation of different product types</li>\n	<li>Create Store-specific attributes on the fly</li>\n	<li>Media Manager with automatic image resizing and watermarking</li>\n	<li>Advanced Pricing Rules and support for Special Prices</li>\n	<li>Search Results rewrites and redirects</li>\n	<li>Approve, Edit and Delete Product Tags</li>\n	<li>Approve, Edit and Delete Product Reviews</li>\n	<li>RSS feed for Low Inventory Alerts</li>\n	<li>Support for Customer Personalized Products - upload text for embroidery, monogramming, etc.</li>\n	<li>Customer Personalized Products – Upload Image</li>\n	<li>Customer Personalized Products – Select Date/Time options for products</li>\n	<li>Customer Sorting – Define Attributes to enable Customer Product Sorting on category (price, brand, etc.)</li>\n</ul>\n[/bullet_list]\n<h3>Catalog Browsing</h3>\n[bullet_list icon=\"check\"]\n<ul>\n	<li>Layered / Faceted Navigation for filtering of products in categories</li>\n	<li>Layered / Faceted Navigation for filtering of products in search results</li>\n	<li>Flat Catalogue Module for Improved Performance with large catalogues</li>\n	<li>Static Block tool to create category landing pages</li>\n	<li>Ability to assign designs on category and product level (unique design per product/category)</li>\n	<li>Configurable search with auto-suggested terms</li>\n	<li>Recently viewed products</li>\n	<li>Product comparisons</li>\n	<li>Recently compared products</li>\n	<li>Cross-sells, Up-sells and Related Items</li>\n	<li>Popular Search Terms Cloud</li>\n	<li>Filter by Product Tags</li>\n	<li>Product Reviews</li>\n	<li>Product listing in grid or list format</li>\n	<li>Breadcrumbs</li>\n</ul>\n[/bullet_list]\n\n[/tab]\n\n[tab title=\"Product Browsing\"]\n<h3>Product Browsing</h3>\n[bullet_list icon=\"check\"]\n<ul>\n	<li>Multiple Images Per Product</li>\n	<li>Product Image Zoom-in Capability</li>\n	<li>Product Reviews</li>\n	<li>Related Products</li>\n	<li>Stock Availability</li>\n	<li>Multi-Tier Pricing Upsell</li>\n	<li>Product Option Selection</li>\n	<li>Grouped Products View</li>\n	<li>Add to Wishlist</li>\n	<li>Send to a Friend with Email</li>\n</ul>\n[/bullet_list]\n[/tab]\n\n[/tabs]','WebShop 3.0 Feature List','','inherit','closed','closed','','193-autosave','','','2011-12-05 15:23:19','2011-12-05 15:23:19','',193,'http://bestecommerce-uk.com/2011/07/193-autosave/',0,'revision','',0),(200,1,'2011-07-14 14:57:47','2011-07-14 14:57:47','<!-- [one_third]First column of content.[/one_third]\r\n[one_third]Second column of content.[/one_third]\r\n[one_third_last]Last column of content.[/one_third_last]\r\n-->\r\n\r\n[tabs]\r\n	[tab title=\"Site Management\"][bullet_list icon=\"check\"]\r\n<ul>\r\n		<li>Control multiple websites and stores from one\r\nAdministration Panel with ability to share as much or\r\nas little information as needed</li>\r\n<li>Administration Permission System Roles and Users</li>\r\n<li>Web Services API for easy integration between</li>\r\nMagento and any third-party application</li>\r\n<li>Fully 100% customizable design using templates</li>\r\n<li>Customer Groups</li>\r\n<li>One-Click Upgrades</li>\r\n<li>Content Management System for Informational Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and\r\nMultivariate Testing</li>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n	</ul>\r\n[/bullet_list][/tab]\r\n	[tab title=\"Our Capabilities\"][bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n	</ul>\r\n[/bullet_list][/tab]\r\n	[tab title=\"Our Support\"]Tab content...[/tab]\r\n[/tabs]\r\n\r\n','WebShop 3.0 Feature List','','inherit','closed','closed','','193-revision-6','','','2011-07-14 14:57:47','2011-07-14 14:57:47','',193,'http://bestecommerce-uk.com/2011/07/193-revision-6/',0,'revision','',0),(199,1,'2011-07-14 14:49:27','2011-07-14 14:49:27','<!-- [one_third]First column of content.[/one_third]\r\n[one_third]Second column of content.[/one_third]\r\n[one_third_last]Last column of content.[/one_third_last]\r\n-->\r\n\r\n[tabs]\r\n	[tab title=\"Site Management\"]<h3>Site Management</h3> \r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" class=\"styled-image popup alignright\" title=\"Click me to enlarge!\" rel=\"tab-1\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" width=\"206\" height=\"117\" alt=\"Click me to enlarge!\" class=\"alignright\" /></a>\r\n<p>Consectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique. Quisque mattis elit eros, non facilisis sem. Cras a congue neque. In massa purus, ornare in sagittis id, accumsan ac nisl. Sed sit amet nulla ac dolor adipiscing.</p>[/tab]\r\n	[tab title=\"Our Capabilities\"][bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n	</ul>\r\n[/bullet_list][/tab]\r\n	[tab title=\"Our Support\"]Tab content...[/tab]\r\n[/tabs]\r\n\r\n','WebShop 3.0 Feature List','','inherit','closed','closed','','193-revision-5','','','2011-07-14 14:49:27','2011-07-14 14:49:27','',193,'http://bestecommerce-uk.com/2011/07/193-revision-5/',0,'revision','',0),(197,1,'2011-07-14 14:43:49','2011-07-14 14:43:49','[one_third]First column of content.[/one_third]\r\n[one_third]Second column of content.[/one_third]\r\n[one_third_last]Last column of content.[/one_third_last]','WebShop 3.0 Feature List','','inherit','closed','closed','','193-revision-3','','','2011-07-14 14:43:49','2011-07-14 14:43:49','',193,'http://bestecommerce-uk.com/2011/07/193-revision-3/',0,'revision','',0),(201,1,'2011-07-14 14:59:48','2011-07-14 14:59:48','<!-- [one_third]First column of content.[/one_third]\r\n[one_third]Second column of content.[/one_third]\r\n[one_third_last]Last column of content.[/one_third_last]\r\n-->\r\n\r\n[tabs]\r\n	[tab title=\"Site Management\"][bullet_list icon=\"check\"]\r\n<ul>\r\n		<li>Control multiple websites and stores from one\r\nAdministration Panel with ability to share as much or\r\nas little information as needed</li>\r\n<li>Administration Permission System Roles and Users</li>\r\n<li>Web Services API for easy integration between Magento and any third-party application</li>\r\n<li>Fully 100% customizable design using templates</li>\r\n<li>Customer Groups</li>\r\n<li>One-Click Upgrades</li>\r\n<li>Content Management System for Informational Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list][/tab]\r\n	[tab title=\"Our Capabilities\"][bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n	</ul>\r\n[/bullet_list][/tab]\r\n	[tab title=\"Our Support\"]Tab content...[/tab]\r\n[/tabs]\r\n\r\n','WebShop 3.0 Feature List','','inherit','closed','closed','','193-revision-7','','','2011-07-14 14:59:48','2011-07-14 14:59:48','',193,'http://bestecommerce-uk.com/2011/07/193-revision-7/',0,'revision','',0),(198,1,'2011-07-14 14:49:01','2011-07-14 14:49:01','<!-- [one_third]First column of content.[/one_third]\r\n[one_third]Second column of content.[/one_third]\r\n[one_third_last]Last column of content.[/one_third_last]\r\n-->\r\n\r\n[tabs]\r\n	[tab title=\"Our Packages\"]<h3>Site Management</h3> \r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" class=\"styled-image popup alignright\" title=\"Click me to enlarge!\" rel=\"tab-1\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" width=\"206\" height=\"117\" alt=\"Click me to enlarge!\" class=\"alignright\" /></a>\r\n<p>Consectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique. Quisque mattis elit eros, non facilisis sem. Cras a congue neque. In massa purus, ornare in sagittis id, accumsan ac nisl. Sed sit amet nulla ac dolor adipiscing.</p>[/tab]\r\n	[tab title=\"Our Capabilities\"][bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n	</ul>\r\n[/bullet_list][/tab]\r\n	[tab title=\"Our Support\"]Tab content...[/tab]\r\n[/tabs]\r\n\r\n','WebShop 3.0 Feature List','','inherit','closed','closed','','193-revision-4','','','2011-07-14 14:49:01','2011-07-14 14:49:01','',193,'http://bestecommerce-uk.com/2011/07/193-revision-4/',0,'revision','',0),(202,1,'2011-07-14 15:00:13','2011-07-14 15:00:13','<!-- [one_third]First column of content.[/one_third]\r\n[one_third]Second column of content.[/one_third]\r\n[one_third_last]Last column of content.[/one_third_last]\r\n-->\r\n\r\n[tabs]\r\n	[tab title=\"Site Management\"][bullet_list icon=\"check\"]\r\n\r\n<ul>\r\n		<li>Control multiple websites and stores from one\r\nAdministration Panel with ability to share as much or\r\nas little information as needed</li>\r\n<li>Administration Permission System Roles and Users</li>\r\n<li>Web Services API for easy integration between Magento and any third-party application</li>\r\n<li>Fully 100% customizable design using templates</li>\r\n<li>Customer Groups</li>\r\n<li>One-Click Upgrades</li>\r\n<li>Content Management System for Informational Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list][/tab]\r\n	[tab title=\"Our Capabilities\"][bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n	</ul>\r\n[/bullet_list][/tab]\r\n	[tab title=\"Our Support\"]Tab content...[/tab]\r\n[/tabs]\r\n\r\n','WebShop 3.0 Feature List','','inherit','closed','closed','','193-revision-8','','','2011-07-14 15:00:13','2011-07-14 15:00:13','',193,'http://bestecommerce-uk.com/2011/07/193-revision-8/',0,'revision','',0),(208,1,'2011-07-14 15:24:16','2011-07-14 15:24:16','\r\n[tabs]\r\n	[tab title=\"Site Management\"][bullet_list icon=\"check\"]\r\n        <ul>\r\n		<li>Control multiple websites and stores from one Administration Panel with ability to share as much or as little information as needed</li>\r\n                <li>Administration Permission System Roles and Users</li>\r\n                <li>Web Services API for easy integration between Magento and any third-party application</li>\r\n                <li>Fully 100% customizable design using templates</li>\r\n                <li>Customer Groups</li>\r\n                <li>One-Click Upgrades</li>\r\n                <li>Content Management System for Informational Pages</li>\r\n                <li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list][/tab]\r\n\r\n	[tab title=\"Search Engine Optimization\"][bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>100% Search Engine Friendly</li>\r\n                <li>Google Site Map</li>\r\n                <li>Search Engine Friendly URL’s</li>\r\n                <li>URL Rewrites give full control of URL’s</li>\r\n                <li>Meta-information for products and categories</li>\r\n                <li>Auto-generated Site Map for display on site</li>\r\n                <li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list][/tab]\r\n\r\n	[tab title=\"Heading\"][bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>List item</li>\r\n\r\n			</ul>\r\n[/bullet_list][/tab]\r\n','WebShop 3.0 Feature List','','inherit','closed','closed','','193-revision-14','','','2011-07-14 15:24:16','2011-07-14 15:24:16','',193,'http://bestecommerce-uk.com/2011/07/193-revision-14/',0,'revision','',0),(203,1,'2011-07-14 15:04:35','2011-07-14 15:04:35','<!-- [one_third]First column of content.[/one_third]\r\n[one_third]Second column of content.[/one_third]\r\n[one_third_last]Last column of content.[/one_third_last]\r\n-->\r\n\r\n[tabs]\r\n	[tab title=\"Site Management\"][bullet_list icon=\"check\"]\r\n\r\n<ul>\r\n		<li>Control multiple websites and stores from one\r\nAdministration Panel with ability to share as much or\r\nas little information as needed</li>\r\n<li>Administration Permission System Roles and Users</li>\r\n<li>Web Services API for easy integration between Magento and any third-party application</li>\r\n<li>Fully 100% customizable design using templates</li>\r\n<li>Customer Groups</li>\r\n<li>One-Click Upgrades</li>\r\n<li>Content Management System for Informational Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list][/tab]\r\n\r\n	[tab title=\"Search Engine Optimization\"][bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>100% Search Engine Friendly\r\n<li>Google Site Map</li>\r\n<li>Search Engine Friendly URL’s</li>\r\n<li>URL Rewrites give full control of URL’s</li>\r\n<li>Meta-information for products and categories</li>\r\n<li>Auto-generated Site Map for display on site</li>\r\n<li>Auto-Generated Popular Search Terms Page</li>\r\n			</ul>\r\n[/bullet_list][/tab]\r\n	[tab title=\"Our Support\"]Tab content...[/tab]\r\n[/tabs]\r\n\r\n','WebShop 3.0 Feature List','','inherit','closed','closed','','193-revision-9','','','2011-07-14 15:04:35','2011-07-14 15:04:35','',193,'http://bestecommerce-uk.com/2011/07/193-revision-9/',0,'revision','',0),(206,1,'2011-07-14 15:18:08','2011-07-14 15:18:08','<!-- [one_third]First column of content.[/one_third]\r\n[one_third]Second column of content.[/one_third]\r\n[one_third_last]Last column of content.[/one_third_last]\r\n-->\r\n\r\n[tabs]\r\n	[tab title=\"Site Management\"][bullet_list icon=\"check\"]\r\n        <ul>\r\n		<li>Control multiple websites and stores from one Administration Panel with ability to share as much or as little information as needed</li>\r\n                <li>Administration Permission System Roles and Users</li>\r\n                <li>Web Services API for easy integration between Magento and any third-party application</li>\r\n                <li>Fully 100% customizable design using templates</li>\r\n                <li>Customer Groups</li>\r\n                <li>One-Click Upgrades</li>\r\n                <li>Content Management System for Informational Pages</li>\r\n                <li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list][/tab]\r\n\r\n	[tab title=\"Search Engine Optimization\"][bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>100% Search Engine Friendly</li>\r\n                <li>Google Site Map</li>\r\n                <li>Search Engine Friendly URL’s</li>\r\n                <li>URL Rewrites give full control of URL’s</li>\r\n                <li>Meta-information for products and categories</li>\r\n                <li>Auto-generated Site Map for display on site</li>\r\n                <li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list][/tab]\r\n\r\n	[tab title=\"Heading\"][bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>List item</li>\r\n\r\n			</ul>\r\n[/bullet_list][/tab]\r\n','WebShop 3.0 Feature List','','inherit','closed','closed','','193-revision-12','','','2011-07-14 15:18:08','2011-07-14 15:18:08','',193,'http://bestecommerce-uk.com/2011/07/193-revision-12/',0,'revision','',0),(204,1,'2011-07-14 15:12:46','2011-07-14 15:12:46','<!-- [one_third]First column of content.[/one_third]\r\n[one_third]Second column of content.[/one_third]\r\n[one_third_last]Last column of content.[/one_third_last]\r\n-->\r\n\r\n[tabs]\r\n	[tab title=\"Site Management\"][bullet_list icon=\"check\"]\r\n\r\n        <ul>\r\n		<li>Control multiple websites and stores from one Administration Panel with ability to share as much or as little information as needed</li>\r\n                <li>Administration Permission System Roles and Users</li>\r\n                <li>Web Services API for easy integration between Magento and any third-party application</li>\r\n                <li>Fully 100% customizable design using templates</li>\r\n                <li>Customer Groups</li>\r\n                <li>One-Click Upgrades</li>\r\n                <li>Content Management System for Informational Pages</li>\r\n                <li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list][/tab]\r\n\r\n	[tab title=\"Search Engine Optimization\"][bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>100% Search Engine Friendly</li>\r\n                <li>Google Site Map</li>\r\n                <li>Search Engine Friendly URL’s</li>\r\n                <li>URL Rewrites give full control of URL’s</li>\r\n                <li>Meta-information for products and categories</li>\r\n                <li>Auto-generated Site Map for display on site</li>\r\n                <li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list][/tab]\r\n\r\n	[tab title=\"Search Engine Optimization\"][bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li></li>\r\n	</ul>\r\n[/bullet_list][/tab]\r\n\r\n[tab title=\"Heading\"][bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>List item</li>\r\n\r\n			</ul>\r\n[/bullet_list][/tab]\r\n','WebShop 3.0 Feature List','','inherit','closed','closed','','193-revision-10','','','2011-07-14 15:12:46','2011-07-14 15:12:46','',193,'http://bestecommerce-uk.com/2011/07/193-revision-10/',0,'revision','',0),(205,1,'2011-07-14 15:16:35','2011-07-14 15:16:35','<!-- [one_third]First column of content.[/one_third]\r\n[one_third]Second column of content.[/one_third]\r\n[one_third_last]Last column of content.[/one_third_last]\r\n-->\r\n\r\n[tabs]\r\n	[tab title=\"Site Management\"][bullet_list icon=\"check\"]\r\n        <ul>\r\n		<li>Control multiple websites and stores from one Administration Panel with ability to share as much or as little information as needed</li>\r\n                <li>Administration Permission System Roles and Users</li>\r\n                <li>Web Services API for easy integration between Magento and any third-party application</li>\r\n                <li>Fully 100% customizable design using templates</li>\r\n                <li>Customer Groups</li>\r\n                <li>One-Click Upgrades</li>\r\n                <li>Content Management System for Informational Pages</li>\r\n                <li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list][/tab]\r\n\r\n	[tab title=\"Search Engine Optimization\"][bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>100% Search Engine Friendly</li>\r\n                <li>Google Site Map</li>\r\n                <li>Search Engine Friendly URL’s</li>\r\n                <li>URL Rewrites give full control of URL’s</li>\r\n                <li>Meta-information for products and categories</li>\r\n                <li>Auto-generated Site Map for display on site</li>\r\n                <li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list][/tab]\r\n\r\n	[tab title=\"Search Engine Optimization\"][bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li></li>\r\n	</ul>\r\n[/bullet_list][/tab]\r\n\r\n[tab title=\"Heading\"][bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>List item</li>\r\n\r\n			</ul>\r\n[/bullet_list][/tab]\r\n','WebShop 3.0 Feature List','','inherit','closed','closed','','193-revision-11','','','2011-07-14 15:16:35','2011-07-14 15:16:35','',193,'http://bestecommerce-uk.com/2011/07/193-revision-11/',0,'revision','',0),(207,1,'2011-07-14 15:23:39','2011-07-14 15:23:39','<!-- [one_third]First column of content.[/one_third]\r\n[one_third]Second column of content.[/one_third]\r\n[one_third_last]Last column of content.[/one_third_last]\r\n-->\r\n[tabs]\r\n	[tab title=\"Site Management\"][bullet_list icon=\"check\"]\r\n        <ul>\r\n		<li>Control multiple websites and stores from one Administration Panel with ability to share as much or as little information as needed</li>\r\n                <li>Administration Permission System Roles and Users</li>\r\n                <li>Web Services API for easy integration between Magento and any third-party application</li>\r\n                <li>Fully 100% customizable design using templates</li>\r\n                <li>Customer Groups</li>\r\n                <li>One-Click Upgrades</li>\r\n                <li>Content Management System for Informational Pages</li>\r\n                <li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list][/tab]\r\n\r\n	[tab title=\"Search Engine Optimization\"][bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>100% Search Engine Friendly</li>\r\n                <li>Google Site Map</li>\r\n                <li>Search Engine Friendly URL’s</li>\r\n                <li>URL Rewrites give full control of URL’s</li>\r\n                <li>Meta-information for products and categories</li>\r\n                <li>Auto-generated Site Map for display on site</li>\r\n                <li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list][/tab]\r\n\r\n	[tab title=\"Heading\"][bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>List item</li>\r\n\r\n			</ul>\r\n[/bullet_list][/tab]\r\n','WebShop 3.0 Feature List','','inherit','closed','closed','','193-revision-13','','','2011-07-14 15:23:39','2011-07-14 15:23:39','',193,'http://bestecommerce-uk.com/2011/07/193-revision-13/',0,'revision','',0),(209,1,'2011-07-14 15:30:03','2011-07-14 15:30:03','<!-- [one_third]First column of content.[/one_third]\r\n[one_third]Second column of content.[/one_third]\r\n[one_third_last]Last column of content.[/one_third_last]\r\n-->\r\n\r\n[tabs]\r\n	[tab title=\"Site Management\"]\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n		<li>Control multiple websites and stores from one Administration Panel with ability to share as much or as little information as needed</li>\r\n                <li>Administration Permission System Roles and Users</li>\r\n                <li>Web Services API for easy integration between Magento and any third-party application</li>\r\n                <li>Fully 100% customizable design using templates</li>\r\n                <li>Customer Groups</li>\r\n                <li>One-Click Upgrades</li>\r\n                <li>Content Management System for Informational Pages</li>\r\n                <li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"Search Engine Optimization\"][bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>100% Search Engine Friendly</li>\r\n                <li>Google Site Map</li>\r\n                <li>Search Engine Friendly URL’s</li>\r\n                <li>URL Rewrites give full control of URL’s</li>\r\n                <li>Meta-information for products and categories</li>\r\n                <li>Auto-generated Site Map for display on site</li>\r\n                <li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list][/tab]\r\n\r\n	[tab title=\"Heading\"][bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>List item</li>\r\n\r\n			</ul>\r\n[/bullet_list][/tab]\r\n[/tabs]\r\n','WebShop 3.0 Feature List','','inherit','closed','closed','','193-revision-15','','','2011-07-14 15:30:03','2011-07-14 15:30:03','',193,'http://bestecommerce-uk.com/2011/07/193-revision-15/',0,'revision','',0),(210,1,'2011-07-14 15:36:21','2011-07-14 15:36:21','<!-- [one_third]First column of content.[/one_third]\r\n[one_third]Second column of content.[/one_third]\r\n[one_third_last]Last column of content.[/one_third_last]\r\n-->\r\n\r\n[tabs]\r\n	[tab title=\"Site Management\"]\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n		<li>Control multiple websites and stores from one Administration Panel with ability to share as much or as little information as needed</li>\r\n                <li>Administration Permission System Roles and Users</li>\r\n                <li>Web Services API for easy integration between Magento and any third-party application</li>\r\n                <li>Fully 100% customizable design using templates</li>\r\n                <li>Customer Groups</li>\r\n                <li>One-Click Upgrades</li>\r\n                <li>Content Management System for Informational Pages</li>\r\n                <li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"Search Engine Optimization\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>100% Search Engine Friendly</li>\r\n                <li>Google Site Map</li>\r\n                <li>Search Engine Friendly URL’s</li>\r\n                <li>URL Rewrites give full control of URL’s</li>\r\n                <li>Meta-information for products and categories</li>\r\n                <li>Auto-generated Site Map for display on site</li>\r\n                <li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"Heading\"][bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>List item</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]\r\n','WebShop 3.0 Feature List','','inherit','closed','closed','','193-revision-16','','','2011-07-14 15:36:21','2011-07-14 15:36:21','',193,'http://bestecommerce-uk.com/2011/07/193-revision-16/',0,'revision','',0),(211,1,'2011-07-14 15:36:54','2011-07-14 15:36:54','<!-- [one_third]First column of content.[/one_third]\r\n[one_third]Second column of content.[/one_third]\r\n[one_third_last]Last column of content.[/one_third_last]\r\n-->\r\n\r\n[tabs]\r\n	[tab title=\"Site Management\"]\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n		<li>Control multiple websites and stores from one Administration Panel with ability to share as much or as little information as needed</li>\r\n                <li>Administration Permission System Roles and Users</li>\r\n                <li>Web Services API for easy integration between Magento and any third-party application</li>\r\n                <li>Fully 100% customizable design using templates</li>\r\n                <li>Customer Groups</li>\r\n                <li>One-Click Upgrades</li>\r\n                <li>Content Management System for Informational Pages</li>\r\n                <li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"Search Engine Optimization\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>100% Search Engine Friendly</li>\r\n                <li>Google Site Map</li>\r\n                <li>Search Engine Friendly URL’s</li>\r\n                <li>URL Rewrites give full control of URL’s</li>\r\n                <li>Meta-information for products and categories</li>\r\n                <li>Auto-generated Site Map for display on site</li>\r\n                <li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"Heading\"][bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>List item</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Heading\"][bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>List item</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]\r\n','WebShop 3.0 Feature List','','inherit','closed','closed','','193-revision-17','','','2011-07-14 15:36:54','2011-07-14 15:36:54','',193,'http://bestecommerce-uk.com/2011/07/193-revision-17/',0,'revision','',0),(212,1,'2011-07-14 15:40:01','2011-07-14 15:40:01','<!-- [one_third]First column of content.[/one_third]\r\n[one_third]Second column of content.[/one_third]\r\n[one_third_last]Last column of content.[/one_third_last]\r\n-->\r\n\r\n[tabs]\r\n	[tab title=\"Site Management\"]\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n		<li>Control multiple websites and stores from one Administration Panel with ability to share as much or as little information as needed</li>\r\n                <li>Administration Permission System Roles and Users</li>\r\n                <li>Web Services API for easy integration between Magento and any third-party application</li>\r\n                <li>Fully 100% customizable design using templates</li>\r\n                <li>Customer Groups</li>\r\n                <li>One-Click Upgrades</li>\r\n                <li>Content Management System for Informational Pages</li>\r\n                <li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"Search Engine Optimization\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>100% Search Engine Friendly</li>\r\n                <li>Google Site Map</li>\r\n                <li>Search Engine Friendly URL’s</li>\r\n                <li>URL Rewrites give full control of URL’s</li>\r\n                <li>Meta-information for products and categories</li>\r\n                <li>Auto-generated Site Map for display on site</li>\r\n                <li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"Analytics and Reporting\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Heading\"][bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>List item</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]\r\n','WebShop 3.0 Feature List','','inherit','closed','closed','','193-revision-18','','','2011-07-14 15:40:01','2011-07-14 15:40:01','',193,'http://bestecommerce-uk.com/2011/07/193-revision-18/',0,'revision','',0),(213,1,'2011-07-14 15:44:29','2011-07-14 15:44:29','<!-- [one_third]First column of content.[/one_third]\r\n[one_third]Second column of content.[/one_third]\r\n[one_third_last]Last column of content.[/one_third_last]\r\n-->\r\n\r\n[tabs]\r\n	[tab title=\"Site Management\"]\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n		<li>Control multiple websites and stores from one Administration Panel with ability to share as much or as little information as needed</li>\r\n                <li>Administration Permission System Roles and Users</li>\r\n                <li>Web Services API for easy integration between Magento and any third-party application</li>\r\n                <li>Fully 100% customizable design using templates</li>\r\n                <li>Customer Groups</li>\r\n                <li>One-Click Upgrades</li>\r\n                <li>Content Management System for Informational Pages</li>\r\n                <li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"Search Engine Optimization\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>100% Search Engine Friendly</li>\r\n                <li>Google Site Map</li>\r\n                <li>Search Engine Friendly URL’s</li>\r\n                <li>URL Rewrites give full control of URL’s</li>\r\n                <li>Meta-information for products and categories</li>\r\n                <li>Auto-generated Site Map for display on site</li>\r\n                <li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"Analytics and Reporting\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Marketing Promotions and Tools\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Heading\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>List item</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]\r\n','WebShop 3.0 Feature List','','inherit','closed','closed','','193-revision-19','','','2011-07-14 15:44:29','2011-07-14 15:44:29','',193,'http://bestecommerce-uk.com/2011/07/193-revision-19/',0,'revision','',0),(214,1,'2011-07-14 15:49:24','2011-07-14 15:49:24','<!-- [one_third]First column of content.[/one_third]\r\n[one_third]Second column of content.[/one_third]\r\n[one_third_last]Last column of content.[/one_third_last]\r\n-->\r\n\r\n[tabs]\r\n	[tab title=\"Site Management\"]\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n		<li>Control multiple websites and stores from one Administration Panel with ability to share as much or as little information as needed</li>\r\n                <li>Administration Permission System Roles and Users</li>\r\n                <li>Web Services API for easy integration between Magento and any third-party application</li>\r\n                <li>Fully 100% customizable design using templates</li>\r\n                <li>Customer Groups</li>\r\n                <li>One-Click Upgrades</li>\r\n                <li>Content Management System for Informational Pages</li>\r\n                <li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"Search Engine Optimization\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>100% Search Engine Friendly</li>\r\n                <li>Google Site Map</li>\r\n                <li>Search Engine Friendly URL’s</li>\r\n                <li>URL Rewrites give full control of URL’s</li>\r\n                <li>Meta-information for products and categories</li>\r\n                <li>Auto-generated Site Map for display on site</li>\r\n                <li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"Analytics and Reporting\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Marketing Promotions and Tools\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Checkout, Payment and Shipping\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from:\r\n?? UPS, UPS XML (account rates), FedEx (account\r\nrates), USPS and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Checks/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Heading\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>List item</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]\r\n','WebShop 3.0 Feature List','','inherit','closed','closed','','193-revision-20','','','2011-07-14 15:49:24','2011-07-14 15:49:24','',193,'http://bestecommerce-uk.com/2011/07/193-revision-20/',0,'revision','',0),(215,1,'2011-07-14 15:50:10','2011-07-14 15:50:10','<!-- [one_third]First column of content.[/one_third]\r\n[one_third]Second column of content.[/one_third]\r\n[one_third_last]Last column of content.[/one_third_last]\r\n-->\r\n\r\n[tabs]\r\n	[tab title=\"Site Management\"]\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n		<li>Control multiple websites and stores from one Administration Panel with ability to share as much or as little information as needed</li>\r\n                <li>Administration Permission System Roles and Users</li>\r\n                <li>Web Services API for easy integration between Magento and any third-party application</li>\r\n                <li>Fully 100% customizable design using templates</li>\r\n                <li>Customer Groups</li>\r\n                <li>One-Click Upgrades</li>\r\n                <li>Content Management System for Informational Pages</li>\r\n                <li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"Search Engine Optimization\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>100% Search Engine Friendly</li>\r\n                <li>Google Site Map</li>\r\n                <li>Search Engine Friendly URL’s</li>\r\n                <li>URL Rewrites give full control of URL’s</li>\r\n                <li>Meta-information for products and categories</li>\r\n                <li>Auto-generated Site Map for display on site</li>\r\n                <li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"Analytics and Reporting\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Marketing Promotions and Tools\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Checkout, Payment and Shipping\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates), USPS and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Checks/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Heading\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>List item</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]\r\n','WebShop 3.0 Feature List','','inherit','closed','closed','','193-revision-21','','','2011-07-14 15:50:10','2011-07-14 15:50:10','',193,'http://bestecommerce-uk.com/2011/07/193-revision-21/',0,'revision','',0),(216,1,'2011-07-14 15:51:01','2011-07-14 15:51:01','<!-- [one_third]First column of content.[/one_third]\r\n[one_third]Second column of content.[/one_third]\r\n[one_third_last]Last column of content.[/one_third_last]\r\n-->\r\n\r\n[tabs]\r\n	[tab title=\"Site Management\"]\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n		<li>Control multiple websites and stores from one Administration Panel with ability to share as much or as little information as needed</li>\r\n                <li>Administration Permission System Roles and Users</li>\r\n                <li>Web Services API for easy integration between Magento and any third-party application</li>\r\n                <li>Fully 100% customizable design using templates</li>\r\n                <li>Customer Groups</li>\r\n                <li>One-Click Upgrades</li>\r\n                <li>Content Management System for Informational Pages</li>\r\n                <li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"Search Engine Optimization\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>100% Search Engine Friendly</li>\r\n                <li>Google Site Map</li>\r\n                <li>Search Engine Friendly URL’s</li>\r\n                <li>URL Rewrites give full control of URL’s</li>\r\n                <li>Meta-information for products and categories</li>\r\n                <li>Auto-generated Site Map for display on site</li>\r\n                <li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"Analytics and Reporting\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Marketing Promotions and Tools\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Checkout, Payment and Shipping\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Checks/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Heading\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>List item</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]\r\n','WebShop 3.0 Feature List','','inherit','closed','closed','','193-revision-22','','','2011-07-14 15:51:01','2011-07-14 15:51:01','',193,'http://bestecommerce-uk.com/2011/07/193-revision-22/',0,'revision','',0),(217,1,'2011-07-14 15:53:39','2011-07-14 15:53:39','<!-- [one_third]First column of content.[/one_third]\r\n[one_third]Second column of content.[/one_third]\r\n[one_third_last]Last column of content.[/one_third_last]\r\n-->\r\n\r\n[tabs]\r\n	[tab title=\"Site Management\"]\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n		<li>Control multiple websites and stores from one Administration Panel with ability to share as much or as little information as needed</li>\r\n                <li>Administration Permission System Roles and Users</li>\r\n                <li>Web Services API for easy integration between Magento and any third-party application</li>\r\n                <li>Fully 100% customizable design using templates</li>\r\n                <li>Customer Groups</li>\r\n                <li>One-Click Upgrades</li>\r\n                <li>Content Management System for Informational Pages</li>\r\n                <li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"Search Engine Optimization\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>100% Search Engine Friendly</li>\r\n                <li>Google Site Map</li>\r\n                <li>Search Engine Friendly URL’s</li>\r\n                <li>URL Rewrites give full control of URL’s</li>\r\n                <li>Meta-information for products and categories</li>\r\n                <li>Auto-generated Site Map for display on site</li>\r\n                <li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"Analytics and Reporting\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Marketing Promotions and Tools\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Checkout, Payment and Shipping\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Checks/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\nShopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Heading\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>List item</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]\r\n','WebShop 3.0 Feature List','','inherit','closed','closed','','193-revision-23','','','2011-07-14 15:53:39','2011-07-14 15:53:39','',193,'http://bestecommerce-uk.com/2011/07/193-revision-23/',0,'revision','',0),(218,1,'2011-07-14 15:56:41','2011-07-14 15:56:41','<!-- [one_third]First column of content.[/one_third]\r\n[one_third]Second column of content.[/one_third]\r\n[one_third_last]Last column of content.[/one_third_last]\r\n-->\r\n\r\n[tabs]\r\n	[tab title=\"Site Management\"]\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n		<li>Control multiple websites and stores from one Administration Panel with ability to share as much or as little information as needed</li>\r\n                <li>Administration Permission System Roles and Users</li>\r\n                <li>Web Services API for easy integration between Magento and any third-party application</li>\r\n                <li>Fully 100% customizable design using templates</li>\r\n                <li>Customer Groups</li>\r\n                <li>One-Click Upgrades</li>\r\n                <li>Content Management System for Informational Pages</li>\r\n                <li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"Search Engine Optimization\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>100% Search Engine Friendly</li>\r\n                <li>Google Site Map</li>\r\n                <li>Search Engine Friendly URL’s</li>\r\n                <li>URL Rewrites give full control of URL’s</li>\r\n                <li>Meta-information for products and categories</li>\r\n                <li>Auto-generated Site Map for display on site</li>\r\n                <li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"Analytics and Reporting\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Marketing Promotions and Tools\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Checkout, Payment and Shipping\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Checks/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\nShopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\n?? Includes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Heading\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>List item</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]\r\n','WebShop 3.0 Feature List','','inherit','closed','closed','','193-revision-24','','','2011-07-14 15:56:41','2011-07-14 15:56:41','',193,'http://bestecommerce-uk.com/2011/07/193-revision-24/',0,'revision','',0),(219,1,'2011-07-14 15:59:52','2011-07-14 15:59:52','<!-- [one_third]First column of content.[/one_third]\r\n[one_third]Second column of content.[/one_third]\r\n[one_third_last]Last column of content.[/one_third_last]\r\n-->\r\n\r\n[tabs]\r\n	[tab title=\"Site Management\"]\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n		<li>Control multiple websites and stores from one Administration Panel with ability to share as much or as little information as needed</li>\r\n                <li>Administration Permission System Roles and Users</li>\r\n                <li>Web Services API for easy integration between Magento and any third-party application</li>\r\n                <li>Fully 100% customizable design using templates</li>\r\n                <li>Customer Groups</li>\r\n                <li>One-Click Upgrades</li>\r\n                <li>Content Management System for Informational Pages</li>\r\n                <li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"Search Engine Optimization\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>100% Search Engine Friendly</li>\r\n                <li>Google Site Map</li>\r\n                <li>Search Engine Friendly URL’s</li>\r\n                <li>URL Rewrites give full control of URL’s</li>\r\n                <li>Meta-information for products and categories</li>\r\n                <li>Auto-generated Site Map for display on site</li>\r\n                <li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"Analytics and Reporting\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Marketing Promotions and Tools\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Checkout, Payment and Shipping\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Checks/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\nShopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Customer Service\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Contact Us form</li>\r\n<li>Feature-rich Customer Accounts</li>\r\n<li>Order History with Status Updates</li>\r\n<li>Order Tracking from Account</li>\r\n<li>Password Reset email from front-end and admin panel</li>\r\n<li>Order and Account Update Emails</li>\r\n<li>Customizable Order Emails</li>\r\n<li>Create and Edit Orders from the Admin Panel</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Heading\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>List item</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]\r\n','WebShop 3.0 Feature List','','inherit','closed','closed','','193-revision-25','','','2011-07-14 15:59:52','2011-07-14 15:59:52','',193,'http://bestecommerce-uk.com/2011/07/193-revision-25/',0,'revision','',0),(220,1,'2011-07-14 16:03:21','2011-07-14 16:03:21','<!-- [one_third]First column of content.[/one_third]\r\n[one_third]Second column of content.[/one_third]\r\n[one_third_last]Last column of content.[/one_third_last]\r\n-->\r\n\r\n[tabs]\r\n	[tab title=\"Site Management\"]\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n		<li>Control multiple websites and stores from one Administration Panel with ability to share as much or as little information as needed</li>\r\n                <li>Administration Permission System Roles and Users</li>\r\n                <li>Web Services API for easy integration between Magento and any third-party application</li>\r\n                <li>Fully 100% customizable design using templates</li>\r\n                <li>Customer Groups</li>\r\n                <li>One-Click Upgrades</li>\r\n                <li>Content Management System for Informational Pages</li>\r\n                <li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"Search Engine Optimization\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>100% Search Engine Friendly</li>\r\n                <li>Google Site Map</li>\r\n                <li>Search Engine Friendly URL’s</li>\r\n                <li>URL Rewrites give full control of URL’s</li>\r\n                <li>Meta-information for products and categories</li>\r\n                <li>Auto-generated Site Map for display on site</li>\r\n                <li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"Analytics and Reporting\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Marketing Promotions and Tools\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Checkout, Payment and Shipping\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Checks/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\nShopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Customer Service\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Contact Us form</li>\r\n<li>Feature-rich Customer Accounts</li>\r\n<li>Order History with Status Updates</li>\r\n<li>Order Tracking from Account</li>\r\n<li>Password Reset email from front-end and admin panel</li>\r\n<li>Order and Account Update Emails</li>\r\n<li>Customizable Order Emails</li>\r\n<li>Create and Edit Orders from the Admin Panel</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Customer Accounts\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Order status and history<li>\r\n<li>Re-orders from account<li>\r\n<li>Recently ordered items<li>\r\n<li>Address Book with unlimited addresses<li>\r\n<li>Default Billing and Shipping addresses<li>\r\n<li>Wishlist with ability to add comments<li>\r\n<li>Email or Send RSS feed of Wishlist<li>\r\n<li>Newsletter Subscription management<li>\r\n<li>Product Reviews submitted<li>\r\n<li>Product Tags submitted<li>\r\n<li>Downloadable/Digital Products<li>\r\n<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags<li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Heading\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>List item</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]\r\n','WebShop 3.0 Feature List','','inherit','closed','closed','','193-revision-26','','','2011-07-14 16:03:21','2011-07-14 16:03:21','',193,'http://bestecommerce-uk.com/2011/07/193-revision-26/',0,'revision','',0),(221,1,'2011-07-14 16:05:21','2011-07-14 16:05:21','<!-- [one_third]First column of content.[/one_third]\r\n[one_third]Second column of content.[/one_third]\r\n[one_third_last]Last column of content.[/one_third_last]\r\n-->\r\n\r\n[tabs]\r\n	[tab title=\"Site Management\"]\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n		<li>Control multiple websites and stores from one Administration Panel with ability to share as much or as little information as needed</li>\r\n                <li>Administration Permission System Roles and Users</li>\r\n                <li>Web Services API for easy integration between Magento and any third-party application</li>\r\n                <li>Fully 100% customizable design using templates</li>\r\n                <li>Customer Groups</li>\r\n                <li>One-Click Upgrades</li>\r\n                <li>Content Management System for Informational Pages</li>\r\n                <li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"Search Engine Optimization\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>100% Search Engine Friendly</li>\r\n                <li>Google Site Map</li>\r\n                <li>Search Engine Friendly URL’s</li>\r\n                <li>URL Rewrites give full control of URL’s</li>\r\n                <li>Meta-information for products and categories</li>\r\n                <li>Auto-generated Site Map for display on site</li>\r\n                <li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"Analytics and Reporting\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Marketing Promotions and Tools\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Checkout, Payment and Shipping\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Checks/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\nShopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Customer Service\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Contact Us form</li>\r\n<li>Feature-rich Customer Accounts</li>\r\n<li>Order History with Status Updates</li>\r\n<li>Order Tracking from Account</li>\r\n<li>Password Reset email from front-end and admin panel</li>\r\n<li>Order and Account Update Emails</li>\r\n<li>Customizable Order Emails</li>\r\n<li>Create and Edit Orders from the Admin Panel</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Customer Accounts\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Order status and history</li>\r\n<li>Re-orders from account</li>\r\n<li>Recently ordered items</li>\r\n<li>Address Book with unlimited addresses</li>\r\n<li>Default Billing and Shipping addresses</li>\r\n<li>Wishlist with ability to add comments</li>\r\n<li>Email or Send RSS feed of Wishlist</li>\r\n<li>Newsletter Subscription management</li>\r\n<li>Product Reviews submitted</li>\r\n<li>Product Tags submitted</li>\r\n<li>Downloadable/Digital Products<li>\r\n<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Heading\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>List item</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]\r\n','WebShop 3.0 Feature List','','inherit','closed','closed','','193-revision-27','','','2011-07-14 16:05:21','2011-07-14 16:05:21','',193,'http://bestecommerce-uk.com/2011/07/193-revision-27/',0,'revision','',0),(222,1,'2011-07-14 16:11:48','2011-07-14 16:11:48','<!-- [one_third]First column of content.[/one_third]\r\n[one_third]Second column of content.[/one_third]\r\n[one_third_last]Last column of content.[/one_third_last]\r\n-->\r\n\r\n[tabs]\r\n	[tab title=\"Site Management\"]\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n		<li>Control multiple websites and stores from one Administration Panel with ability to share as much or as little information as needed</li>\r\n                <li>Administration Permission System Roles and Users</li>\r\n                <li>Web Services API for easy integration between Magento and any third-party application</li>\r\n                <li>Fully 100% customizable design using templates</li>\r\n                <li>Customer Groups</li>\r\n                <li>One-Click Upgrades</li>\r\n                <li>Content Management System for Informational Pages</li>\r\n                <li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"Search Engine Optimization\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>100% Search Engine Friendly</li>\r\n                <li>Google Site Map</li>\r\n                <li>Search Engine Friendly URL’s</li>\r\n                <li>URL Rewrites give full control of URL’s</li>\r\n                <li>Meta-information for products and categories</li>\r\n                <li>Auto-generated Site Map for display on site</li>\r\n                <li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"Analytics and Reporting\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Marketing Promotions and Tools\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Checkout, Payment and Shipping\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Checks/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\nShopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Customer Service\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Contact Us form</li>\r\n<li>Feature-rich Customer Accounts</li>\r\n<li>Order History with Status Updates</li>\r\n<li>Order Tracking from Account</li>\r\n<li>Password Reset email from front-end and admin panel</li>\r\n<li>Order and Account Update Emails</li>\r\n<li>Customizable Order Emails</li>\r\n<li>Create and Edit Orders from the Admin Panel</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Customer Accounts\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Order status and history</li>\r\n<li>Re-orders from account</li>\r\n<li>Recently ordered items</li>\r\n<li>Address Book with unlimited addresses</li>\r\n<li>Default Billing and Shipping addresses</li>\r\n<li>Wishlist with ability to add comments</li>\r\n<li>Email or Send RSS feed of Wishlist</li>\r\n<li>Newsletter Subscription management</li>\r\n<li>Product Reviews submitted</li>\r\n<li>Product Tags submitted</li>\r\n<li>Downloadable/Digital Products<li>\r\n<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Management\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Inventory Management with Backordered items, Minimum and Maximum quantities</li>\r\n<li>Batch Import and Export of catalog</li>\r\n<li>Batch Updates to products in admin panel</li>\r\n<li>Google Base Integration</li>\r\n<li>Simple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products</li>\r\n<li>Virtual Products</li>\r\n<li>Downloadable/Digital Products</li>\r\n<li>Customer Personalized Products - upload text for embroidery, monogramming, etc.</li>\r\n<li>Tax Rates per location, customer group and product type</li>\r\n<li>Attribute Sets for quick product creation of different item types</li>\r\n<li>Create Store-specific attributes on the fly</li>\r\n<li>Media Manager with automatic image resizing and watermarking</li>\r\n<li>Advanced Pricing Rules and support for Special Prices (see marketing tools)</li>\r\n<li>Search Results rewrites and redirects</li>\r\n<li>Approve, Edit and Delete Product Tags</li>\r\n<li>Approve, Edit and Delete Product Reviews</li>\r\n<li>RSS feed for Low Inventory Alerts</li>\r\n<li>Customer Personalized Products - Upload text for embroidery, monogramming, etc. (this one is already there, but want to have the following shown after it)</li>\r\n<li>Customer Personalized Products – Upload Image</li>\r\n<li>Customer Personalized Products – Select Date/Time options for products</li>\r\n<li>Customer Sorting – Define Attributes for Customer Sorting on category (price, brand, etc.)</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Heading\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>List item</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]\r\n','WebShop 3.0 Feature List','','inherit','closed','closed','','193-revision-28','','','2011-07-14 16:11:48','2011-07-14 16:11:48','',193,'http://bestecommerce-uk.com/2011/07/193-revision-28/',0,'revision','',0),(223,1,'2011-07-14 16:14:07','2011-07-14 16:14:07','<!-- [one_third]First column of content.[/one_third]\r\n[one_third]Second column of content.[/one_third]\r\n[one_third_last]Last column of content.[/one_third_last]\r\n-->\r\n\r\n[tabs]\r\n	[tab title=\"Site Management\"]\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n		<li>Control multiple websites and stores from one Administration Panel with ability to share as much or as little information as needed</li>\r\n                <li>Administration Permission System Roles and Users</li>\r\n                <li>Web Services API for easy integration between Magento and any third-party application</li>\r\n                <li>Fully 100% customizable design using templates</li>\r\n                <li>Customer Groups</li>\r\n                <li>One-Click Upgrades</li>\r\n                <li>Content Management System for Informational Pages</li>\r\n                <li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"Search Engine Optimization\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>100% Search Engine Friendly</li>\r\n                <li>Google Site Map</li>\r\n                <li>Search Engine Friendly URL’s</li>\r\n                <li>URL Rewrites give full control of URL’s</li>\r\n                <li>Meta-information for products and categories</li>\r\n                <li>Auto-generated Site Map for display on site</li>\r\n                <li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"Analytics and Reporting\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Marketing Promotions and Tools\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Checkout, Payment and Shipping\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Checks/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\nShopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Customer Service\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Contact Us form</li>\r\n<li>Feature-rich Customer Accounts</li>\r\n<li>Order History with Status Updates</li>\r\n<li>Order Tracking from Account</li>\r\n<li>Password Reset email from front-end and admin panel</li>\r\n<li>Order and Account Update Emails</li>\r\n<li>Customizable Order Emails</li>\r\n<li>Create and Edit Orders from the Admin Panel</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Customer Accounts\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Order status and history</li>\r\n<li>Re-orders from account</li>\r\n<li>Recently ordered items</li>\r\n<li>Address Book with unlimited addresses</li>\r\n<li>Default Billing and Shipping addresses</li>\r\n<li>Wishlist with ability to add comments</li>\r\n<li>Email or Send RSS feed of Wishlist</li>\r\n<li>Newsletter Subscription management</li>\r\n<li>Product Reviews submitted</li>\r\n<li>Product Tags submitted</li>\r\n<li>Downloadable/Digital Products<li>\r\n<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Management\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Inventory Management with Backordered items, Minimum and Maximum quantities</li>\r\n<li>Batch Import and Export of catalog</li>\r\n<li>Batch Updates to products in admin panel</li>\r\n<li>Google Base Integration</li>\r\n<li>Simple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products</li>\r\n<li>Virtual Products</li>\r\n<li>Downloadable/Digital Products</li>\r\n<li>Customer Personalized Products - upload text for embroidery, monogramming, etc.</li>\r\n<li>Tax Rates per location, customer group and product type</li>\r\n<li>Attribute Sets for quick product creation of different item types</li>\r\n<li>Create Store-specific attributes on the fly</li>\r\n<li>Media Manager with automatic image resizing and watermarking</li>\r\n<li>Advanced Pricing Rules and support for Special Prices (see marketing tools)</li>\r\n<li>Search Results rewrites and redirects</li>\r\n<li>Approve, Edit and Delete Product Tags</li>\r\n<li>Approve, Edit and Delete Product Reviews</li>\r\n<li>RSS feed for Low Inventory Alerts</li>\r\n<li>Customer Personalized Products - Upload text for embroidery, monogramming, etc. (this one is already there, but want to have the following shown after it)</li>\r\n<li>Customer Personalized Products – Upload Image</li>\r\n<li>Customer Personalized Products – Select Date/Time options for products</li>\r\n<li>Customer Sorting – Define Attributes for Customer Sorting on category (price, brand, etc.)</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Product Browsing\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Multiple Images Per Product</li>\r\n<li>Product Image Zoom-in Capability</li>\r\n<li>Product Reviews</li>\r\n<li>Related Products</li>\r\n<li>Stock Availability</li>\r\n<li>Multi-Tier Pricing Upsell</li>\r\n<li>Product Option Selection</li>\r\n<li>Grouped Products View</li>\r\n<li>Add to Wishlist</li>\r\n<li>Send to a Friend with Email</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Heading\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>List item</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]\r\n','WebShop 3.0 Feature List','','inherit','closed','closed','','193-revision-29','','','2011-07-14 16:14:07','2011-07-14 16:14:07','',193,'http://bestecommerce-uk.com/2011/07/193-revision-29/',0,'revision','',0),(246,1,'2011-07-15 12:01:35','2011-07-15 12:01:35','<!-- [one_third]First column of content.[/one_third]\r\n[one_third]Second column of content.[/one_third]\r\n[one_third_last]Last column of content.[/one_third_last]\r\n-->\r\n\r\n[tabs]\r\n	[tab title=\"Site Management\"]\r\n<h3>Site Management</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one Administration Panel with ability to share as much or as little information as needed</li>\r\n<li>Administration Permission System Roles and Users</li>\r\n<li>Web Services API for easy integration between Magento and any third-party application</li>\r\n<li>Fully 100% customizable design using templates</li>\r\n<li>Customer Groups</li>\r\n<li>One-Click Upgrades</li>\r\n<li>Content Management System for Informational Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n<h3>Analytics and reporting</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n <li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"SEO, Marketing Promotions and Tools\"]\r\n<h3>Search Engine Optimisation</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>100% Search Engine Friendly</li>\r\n<li>Google Site Map</li>\r\n<li>Search Engine Friendly URL’s</li>\r\n<li>URL Rewrites give full control of URL’s</li>\r\n<li>Meta-information for products and categories</li>\r\n<li>Auto-generated Site Map for display on site</li>\r\n<li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Marketing Promotions and Tools</h3>\r\n	<ul>\r\n<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n<h3>Orders</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n<h3>Checkout, Payment and Shipping</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Checks/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\n<li>Shopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Customer\"]\r\n<h3>Customer Service</h3> \r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Contact Us form</li>\r\n<li>Feature-rich Customer Accounts</li>\r\n<li>Order History with Status Updates</li>\r\n<li>Order Tracking from Account</li>\r\n<li>Password Reset email from front-end and admin panel</li>\r\n<li>Order and Account Update Emails</li>\r\n<li>Customizable Order Emails</li>\r\n<li>Create and Edit Orders from the Admin Panel</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Customer Accounts</h3> \r\n	<ul>\r\n		<li>Order status and history</li>\r\n<li>Re-orders from account</li>\r\n<li>Recently ordered items</li>\r\n<li>Address Book with unlimited addresses</li>\r\n<li>Default Billing and Shipping addresses</li>\r\n<li>Wishlist with ability to add comments</li>\r\n<li>Email or Send RSS feed of Wishlist</li>\r\n<li>Newsletter Subscription management</li>\r\n<li>Product Reviews submitted</li>\r\n<li>Product Tags submitted</li>\r\n<li>Downloadable/Digital Products<li>\r\n<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog & Product Management\"]\r\n<h3>Catalog Management</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Inventory Management with Backordered items, Minimum and Maximum quantities</li>\r\n<li>Batch Import and Export of catalog</li>\r\n<li>Batch Updates to products in admin panel</li>\r\n<li>Google Base Integration</li>\r\n<li>Simple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products</li>\r\n<li>Virtual Products</li>\r\n<li>Downloadable/Digital Products</li>\r\n<li>Customer Personalized Products - upload text for embroidery, monogramming, etc.</li>\r\n<li>Tax Rates per location, customer group and product type</li>\r\n<li>Attribute Sets for quick product creation of different item types</li>\r\n<li>Create Store-specific attributes on the fly</li>\r\n<li>Media Manager with automatic image resizing and watermarking</li>\r\n<li>Advanced Pricing Rules and support for Special Prices (see marketing tools)</li>\r\n<li>Search Results rewrites and redirects</li>\r\n<li>Approve, Edit and Delete Product Tags</li>\r\n<li>Approve, Edit and Delete Product Reviews</li>\r\n<li>RSS feed for Low Inventory Alerts</li>\r\n<li>Customer Personalized Products - Upload text for embroidery, monogramming, etc. (this one is already there, but want to have the following shown after it)</li>\r\n<li>Customer Personalized Products – Upload Image</li>\r\n<li>Customer Personalized Products – Select Date/Time options for products</li>\r\n<li>Customer Sorting – Define Attributes for Customer Sorting on category (price, brand, etc.)</li>\r\n			</ul>\r\n[/bullet_list]\r\n<h3>Catalog Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Layered / Faceted Navigation for filtering of products in categories</li>\r\n<li>Layered / Faceted Navigation for filtering of products in search results</li>\r\n<li>Flat Catalog Module for Improved Performance with large catalogs</li>\r\n<li>Static Block tool to create category landing pages</li>\r\n<li>Ability to assign designs on category and product level (unique design per product/category)</li>\r\n<li>Configurable search with auto-suggested terms</li>\r\n<li>Recently viewed products</li>\r\n<li>Product comparisons</li>\r\n<li>Recently compared products</li>\r\n<li>Cross-sells, Up-sells and Related Items</li>\r\n<li>Popular Search Terms Cloud</li>\r\n<li>Filter by Product Tags</li>\r\n<li>Product Reviews</li>\r\n<li>Product listing in grid or list format</li>\r\n<li>Breadcrumbs</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Product Browsing\"]\r\n<h3>Product Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Multiple Images Per Product</li>\r\n<li>Product Image Zoom-in Capability</li>\r\n<li>Product Reviews</li>\r\n<li>Related Products</li>\r\n<li>Stock Availability</li>\r\n<li>Multi-Tier Pricing Upsell</li>\r\n<li>Product Option Selection</li>\r\n<li>Grouped Products View</li>\r\n<li>Add to Wishlist</li>\r\n<li>Send to a Friend with Email</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]\r\n','WebShop 3.0 Feature List','','inherit','closed','closed','','193-revision-52','','','2011-07-15 12:01:35','2011-07-15 12:01:35','',193,'http://bestecommerce-uk.com/2011/07/193-revision-52/',0,'revision','',0),(237,1,'2011-07-15 11:41:54','2011-07-15 11:41:54','<!-- [one_third]First column of content.[/one_third]\r\n[one_third]Second column of content.[/one_third]\r\n[one_third_last]Last column of content.[/one_third_last]\r\n-->\r\n\r\n[tabs]\r\n	[tab title=\"Site Management\"]\r\n<h3>Site Managment</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one Administration Panel with ability to share as much or as little information as needed</li>\r\n<li>Administration Permission System Roles and Users</li>\r\n<li>Web Services API for easy integration between Magento and any third-party application</li>\r\n<li>Fully 100% customizable design using templates</li>\r\n<li>Customer Groups</li>\r\n<li>One-Click Upgrades</li>\r\n<li>Content Management System for Informational Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n<h3>Analytics and reporting</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n <li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"SEO, Marketing Promotions and Tools\"]\r\n<h3>Search Engine Optimisation</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>100% Search Engine Friendly</li>\r\n                <li>Google Site Map</li>\r\n                <li>Search Engine Friendly URL’s</li>\r\n                <li>URL Rewrites give full control of URL’s</li>\r\n                <li>Meta-information for products and categories</li>\r\n                <li>Auto-generated Site Map for display on site</li>\r\n                <li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Marketing Promotions and Tools</h3>\r\n	<ul>\r\n<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Checkout, Payment and Shipping\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Checks/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\n<li>Shopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Customer\"]\r\n<h3>Customer Service</h3> \r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Contact Us form</li>\r\n<li>Feature-rich Customer Accounts</li>\r\n<li>Order History with Status Updates</li>\r\n<li>Order Tracking from Account</li>\r\n<li>Password Reset email from front-end and admin panel</li>\r\n<li>Order and Account Update Emails</li>\r\n<li>Customizable Order Emails</li>\r\n<li>Create and Edit Orders from the Admin Panel</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Customer Accounts</h3> \r\n	<ul>\r\n		<li>Order status and history</li>\r\n<li>Re-orders from account</li>\r\n<li>Recently ordered items</li>\r\n<li>Address Book with unlimited addresses</li>\r\n<li>Default Billing and Shipping addresses</li>\r\n<li>Wishlist with ability to add comments</li>\r\n<li>Email or Send RSS feed of Wishlist</li>\r\n<li>Newsletter Subscription management</li>\r\n<li>Product Reviews submitted</li>\r\n<li>Product Tags submitted</li>\r\n<li>Downloadable/Digital Products<li>\r\n<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Management\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Inventory Management with Backordered items, Minimum and Maximum quantities</li>\r\n<li>Batch Import and Export of catalog</li>\r\n<li>Batch Updates to products in admin panel</li>\r\n<li>Google Base Integration</li>\r\n<li>Simple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products</li>\r\n<li>Virtual Products</li>\r\n<li>Downloadable/Digital Products</li>\r\n<li>Customer Personalized Products - upload text for embroidery, monogramming, etc.</li>\r\n<li>Tax Rates per location, customer group and product type</li>\r\n<li>Attribute Sets for quick product creation of different item types</li>\r\n<li>Create Store-specific attributes on the fly</li>\r\n<li>Media Manager with automatic image resizing and watermarking</li>\r\n<li>Advanced Pricing Rules and support for Special Prices (see marketing tools)</li>\r\n<li>Search Results rewrites and redirects</li>\r\n<li>Approve, Edit and Delete Product Tags</li>\r\n<li>Approve, Edit and Delete Product Reviews</li>\r\n<li>RSS feed for Low Inventory Alerts</li>\r\n<li>Customer Personalized Products - Upload text for embroidery, monogramming, etc. (this one is already there, but want to have the following shown after it)</li>\r\n<li>Customer Personalized Products – Upload Image</li>\r\n<li>Customer Personalized Products – Select Date/Time options for products</li>\r\n<li>Customer Sorting – Define Attributes for Customer Sorting on category (price, brand, etc.)</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Product Browsing\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Multiple Images Per Product</li>\r\n<li>Product Image Zoom-in Capability</li>\r\n<li>Product Reviews</li>\r\n<li>Related Products</li>\r\n<li>Stock Availability</li>\r\n<li>Multi-Tier Pricing Upsell</li>\r\n<li>Product Option Selection</li>\r\n<li>Grouped Products View</li>\r\n<li>Add to Wishlist</li>\r\n<li>Send to a Friend with Email</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Browsing\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Layered / Faceted Navigation for filtering of products in categories</li>\r\n<li>Layered / Faceted Navigation for filtering of products in search results</li>\r\n<li>Flat Catalog Module for Improved Performance with large catalogs</li>\r\n<li>Static Block tool to create category landing pages</li>\r\n<li>Ability to assign designs on category and product level (unique design per product/category)</li>\r\n<li>Configurable search with auto-suggested terms</li>\r\n<li>Recently viewed products</li>\r\n<li>Product comparisons</li>\r\n<li>Recently compared products</li>\r\n<li>Cross-sells, Up-sells and Related Items</li>\r\n<li>Popular Search Terms Cloud</li>\r\n<li>Filter by Product Tags</li>\r\n<li>Product Reviews</li>\r\n<li>Product listing in grid or list format</li>\r\n<li>Breadcrumbs</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]\r\n','WebShop 3.0 Feature List','','inherit','closed','closed','','193-revision-43','','','2011-07-15 11:41:54','2011-07-15 11:41:54','',193,'http://bestecommerce-uk.com/2011/07/193-revision-43/',0,'revision','',0),(234,1,'2011-07-15 11:32:32','2011-07-15 11:32:32','<!-- [one_third]First column of content.[/one_third]\r\n[one_third]Second column of content.[/one_third]\r\n[one_third_last]Last column of content.[/one_third_last]\r\n-->\r\n\r\n[tabs]\r\n	[tab title=\"Site Management\"]\r\n<h3>Site Managment</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one Administration Panel with ability to share as much or as little information as needed</li>\r\n<li>Administration Permission System Roles and Users</li>\r\n<li>Web Services API for easy integration between Magento and any third-party application</li>\r\n<li>Fully 100% customizable design using templates</li>\r\n<li>Customer Groups</li>\r\n<li>One-Click Upgrades</li>\r\n<li>Content Management System for Informational Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n<h3>Analytics and reporting</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n <li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"SEO, Marketing Promotions and Tools\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>100% Search Engine Friendly</li>\r\n                <li>Google Site Map</li>\r\n                <li>Search Engine Friendly URL’s</li>\r\n                <li>URL Rewrites give full control of URL’s</li>\r\n                <li>Meta-information for products and categories</li>\r\n                <li>Auto-generated Site Map for display on site</li>\r\n                <li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n\r\n[tab title=\"Marketing Promotions and Tools\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Checkout, Payment and Shipping\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Checks/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\nShopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Customer\"]\r\n<h3>Customer Service</h3> \r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Contact Us form</li>\r\n<li>Feature-rich Customer Accounts</li>\r\n<li>Order History with Status Updates</li>\r\n<li>Order Tracking from Account</li>\r\n<li>Password Reset email from front-end and admin panel</li>\r\n<li>Order and Account Update Emails</li>\r\n<li>Customizable Order Emails</li>\r\n<li>Create and Edit Orders from the Admin Panel</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Customer Accounts</h3> \r\n	<ul>\r\n		<li>Order status and history</li>\r\n<li>Re-orders from account</li>\r\n<li>Recently ordered items</li>\r\n<li>Address Book with unlimited addresses</li>\r\n<li>Default Billing and Shipping addresses</li>\r\n<li>Wishlist with ability to add comments</li>\r\n<li>Email or Send RSS feed of Wishlist</li>\r\n<li>Newsletter Subscription management</li>\r\n<li>Product Reviews submitted</li>\r\n<li>Product Tags submitted</li>\r\n<li>Downloadable/Digital Products<li>\r\n<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Management\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Inventory Management with Backordered items, Minimum and Maximum quantities</li>\r\n<li>Batch Import and Export of catalog</li>\r\n<li>Batch Updates to products in admin panel</li>\r\n<li>Google Base Integration</li>\r\n<li>Simple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products</li>\r\n<li>Virtual Products</li>\r\n<li>Downloadable/Digital Products</li>\r\n<li>Customer Personalized Products - upload text for embroidery, monogramming, etc.</li>\r\n<li>Tax Rates per location, customer group and product type</li>\r\n<li>Attribute Sets for quick product creation of different item types</li>\r\n<li>Create Store-specific attributes on the fly</li>\r\n<li>Media Manager with automatic image resizing and watermarking</li>\r\n<li>Advanced Pricing Rules and support for Special Prices (see marketing tools)</li>\r\n<li>Search Results rewrites and redirects</li>\r\n<li>Approve, Edit and Delete Product Tags</li>\r\n<li>Approve, Edit and Delete Product Reviews</li>\r\n<li>RSS feed for Low Inventory Alerts</li>\r\n<li>Customer Personalized Products - Upload text for embroidery, monogramming, etc. (this one is already there, but want to have the following shown after it)</li>\r\n<li>Customer Personalized Products – Upload Image</li>\r\n<li>Customer Personalized Products – Select Date/Time options for products</li>\r\n<li>Customer Sorting – Define Attributes for Customer Sorting on category (price, brand, etc.)</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Product Browsing\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Multiple Images Per Product</li>\r\n<li>Product Image Zoom-in Capability</li>\r\n<li>Product Reviews</li>\r\n<li>Related Products</li>\r\n<li>Stock Availability</li>\r\n<li>Multi-Tier Pricing Upsell</li>\r\n<li>Product Option Selection</li>\r\n<li>Grouped Products View</li>\r\n<li>Add to Wishlist</li>\r\n<li>Send to a Friend with Email</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Browsing\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Layered / Faceted Navigation for filtering of products in categories</li>\r\n<li>Layered / Faceted Navigation for filtering of products in search results</li>\r\n<li>Flat Catalog Module for Improved Performance with large catalogs</li>\r\n<li>Static Block tool to create category landing pages</li>\r\n<li>Ability to assign designs on category and product level (unique design per product/category)</li>\r\n<li>Configurable search with auto-suggested terms</li>\r\n<li>Recently viewed products</li>\r\n<li>Product comparisons</li>\r\n<li>Recently compared products</li>\r\n<li>Cross-sells, Up-sells and Related Items</li>\r\n<li>Popular Search Terms Cloud</li>\r\n<li>Filter by Product Tags</li>\r\n<li>Product Reviews</li>\r\n<li>Product listing in grid or list format</li>\r\n<li>Breadcrumbs</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]\r\n','WebShop 3.0 Feature List','','inherit','closed','closed','','193-revision-40','','','2011-07-15 11:32:32','2011-07-15 11:32:32','',193,'http://bestecommerce-uk.com/2011/07/193-revision-40/',0,'revision','',0),(224,1,'2011-07-14 16:17:26','2011-07-14 16:17:26','<!-- [one_third]First column of content.[/one_third]\r\n[one_third]Second column of content.[/one_third]\r\n[one_third_last]Last column of content.[/one_third_last]\r\n-->\r\n\r\n[tabs]\r\n	[tab title=\"Site Management\"]\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n		<li>Control multiple websites and stores from one Administration Panel with ability to share as much or as little information as needed</li>\r\n                <li>Administration Permission System Roles and Users</li>\r\n                <li>Web Services API for easy integration between Magento and any third-party application</li>\r\n                <li>Fully 100% customizable design using templates</li>\r\n                <li>Customer Groups</li>\r\n                <li>One-Click Upgrades</li>\r\n                <li>Content Management System for Informational Pages</li>\r\n                <li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"Search Engine Optimization\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>100% Search Engine Friendly</li>\r\n                <li>Google Site Map</li>\r\n                <li>Search Engine Friendly URL’s</li>\r\n                <li>URL Rewrites give full control of URL’s</li>\r\n                <li>Meta-information for products and categories</li>\r\n                <li>Auto-generated Site Map for display on site</li>\r\n                <li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"Analytics and Reporting\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Marketing Promotions and Tools\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Checkout, Payment and Shipping\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Checks/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\nShopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Customer Service\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Contact Us form</li>\r\n<li>Feature-rich Customer Accounts</li>\r\n<li>Order History with Status Updates</li>\r\n<li>Order Tracking from Account</li>\r\n<li>Password Reset email from front-end and admin panel</li>\r\n<li>Order and Account Update Emails</li>\r\n<li>Customizable Order Emails</li>\r\n<li>Create and Edit Orders from the Admin Panel</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Customer Accounts\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Order status and history</li>\r\n<li>Re-orders from account</li>\r\n<li>Recently ordered items</li>\r\n<li>Address Book with unlimited addresses</li>\r\n<li>Default Billing and Shipping addresses</li>\r\n<li>Wishlist with ability to add comments</li>\r\n<li>Email or Send RSS feed of Wishlist</li>\r\n<li>Newsletter Subscription management</li>\r\n<li>Product Reviews submitted</li>\r\n<li>Product Tags submitted</li>\r\n<li>Downloadable/Digital Products<li>\r\n<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Management\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Inventory Management with Backordered items, Minimum and Maximum quantities</li>\r\n<li>Batch Import and Export of catalog</li>\r\n<li>Batch Updates to products in admin panel</li>\r\n<li>Google Base Integration</li>\r\n<li>Simple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products</li>\r\n<li>Virtual Products</li>\r\n<li>Downloadable/Digital Products</li>\r\n<li>Customer Personalized Products - upload text for embroidery, monogramming, etc.</li>\r\n<li>Tax Rates per location, customer group and product type</li>\r\n<li>Attribute Sets for quick product creation of different item types</li>\r\n<li>Create Store-specific attributes on the fly</li>\r\n<li>Media Manager with automatic image resizing and watermarking</li>\r\n<li>Advanced Pricing Rules and support for Special Prices (see marketing tools)</li>\r\n<li>Search Results rewrites and redirects</li>\r\n<li>Approve, Edit and Delete Product Tags</li>\r\n<li>Approve, Edit and Delete Product Reviews</li>\r\n<li>RSS feed for Low Inventory Alerts</li>\r\n<li>Customer Personalized Products - Upload text for embroidery, monogramming, etc. (this one is already there, but want to have the following shown after it)</li>\r\n<li>Customer Personalized Products – Upload Image</li>\r\n<li>Customer Personalized Products – Select Date/Time options for products</li>\r\n<li>Customer Sorting – Define Attributes for Customer Sorting on category (price, brand, etc.)</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Product Browsing\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Multiple Images Per Product</li>\r\n<li>Product Image Zoom-in Capability</li>\r\n<li>Product Reviews</li>\r\n<li>Related Products</li>\r\n<li>Stock Availability</li>\r\n<li>Multi-Tier Pricing Upsell</li>\r\n<li>Product Option Selection</li>\r\n<li>Grouped Products View</li>\r\n<li>Add to Wishlist</li>\r\n<li>Send to a Friend with Email</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Browsing\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Layered / Faceted Navigation for filtering of products in categories</li>\r\n<li>Layered / Faceted Navigation for filtering of products in search results</li>\r\n<li>Flat Catalog Module for Improved Performance with large catalogs</li>\r\n<li>Static Block tool to create category landing pages</li>\r\n<li>Ability to assign designs on category and product level (unique design per product/category)</li>\r\n<li>Configurable search with auto-suggested terms</li>\r\n<li>Recently viewed products</li>\r\n<li>Product comparisons</li>\r\n<li>Recently compared products</li>\r\n<li>Cross-sells, Up-sells and Related Items</li>\r\n<li>Popular Search Terms Cloud</li>\r\n<li>Filter by Product Tags</li>\r\n<li>Product Reviews</li>\r\n<li>Product listing in grid or list format</li>\r\n<li>Breadcrumbs</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]\r\n','WebShop 3.0 Feature List','','inherit','closed','closed','','193-revision-30','','','2011-07-14 16:17:26','2011-07-14 16:17:26','',193,'http://bestecommerce-uk.com/2011/07/193-revision-30/',0,'revision','',0),(226,1,'2011-07-15 11:01:29','2011-07-15 11:01:29','<!-- [one_third]First column of content.[/one_third]\r\n[one_third]Second column of content.[/one_third]\r\n[one_third_last]Last column of content.[/one_third_last]\r\n-->\r\n\r\n[tabs]\r\n	[tab title=\"Site Management\"]\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n		<li>Control multiple websites and stores from one Administration Panel with ability to share as much or as little information as needed</li>\r\n                <li>Administration Permission System Roles and Users</li>\r\n                <li>Web Services API for easy integration between Magento and any third-party application</li>\r\n                <li>Fully 100% customizable design using templates</li>\r\n                <li>Customer Groups</li>\r\n                <li>One-Click Upgrades</li>\r\n                <li>Content Management System for Informational Pages</li>\r\n                <li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"Search Engine Optimization\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>100% Search Engine Friendly</li>\r\n                <li>Google Site Map</li>\r\n                <li>Search Engine Friendly URL’s</li>\r\n                <li>URL Rewrites give full control of URL’s</li>\r\n                <li>Meta-information for products and categories</li>\r\n                <li>Auto-generated Site Map for display on site</li>\r\n                <li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"Analytics and Reporting\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Marketing Promotions and Tools\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Checkout, Payment and Shipping\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Checks/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\nShopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Customer Service\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Contact Us form</li>\r\n<li>Feature-rich Customer Accounts</li>\r\n<li>Order History with Status Updates</li>\r\n<li>Order Tracking from Account</li>\r\n<li>Password Reset email from front-end and admin panel</li>\r\n<li>Order and Account Update Emails</li>\r\n<li>Customizable Order Emails</li>\r\n<li>Create and Edit Orders from the Admin Panel</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Customer Accounts\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Order status and history</li>\r\n<li>Re-orders from account</li>\r\n<li>Recently ordered items</li>\r\n<li>Address Book with unlimited addresses</li>\r\n<li>Default Billing and Shipping addresses</li>\r\n<li>Wishlist with ability to add comments</li>\r\n<li>Email or Send RSS feed of Wishlist</li>\r\n<li>Newsletter Subscription management</li>\r\n<li>Product Reviews submitted</li>\r\n<li>Product Tags submitted</li>\r\n<li>Downloadable/Digital Products<li>\r\n<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Management\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Inventory Management with Backordered items, Minimum and Maximum quantities</li>\r\n<li>Batch Import and Export of catalog</li>\r\n<li>Batch Updates to products in admin panel</li>\r\n<li>Google Base Integration</li>\r\n<li>Simple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products</li>\r\n<li>Virtual Products</li>\r\n<li>Downloadable/Digital Products</li>\r\n<li>Customer Personalized Products - upload text for embroidery, monogramming, etc.</li>\r\n<li>Tax Rates per location, customer group and product type</li>\r\n<li>Attribute Sets for quick product creation of different item types</li>\r\n<li>Create Store-specific attributes on the fly</li>\r\n<li>Media Manager with automatic image resizing and watermarking</li>\r\n<li>Advanced Pricing Rules and support for Special Prices (see marketing tools)</li>\r\n<li>Search Results rewrites and redirects</li>\r\n<li>Approve, Edit and Delete Product Tags</li>\r\n<li>Approve, Edit and Delete Product Reviews</li>\r\n<li>RSS feed for Low Inventory Alerts</li>\r\n<li>Customer Personalized Products - Upload text for embroidery, monogramming, etc. (this one is already there, but want to have the following shown after it)</li>\r\n<li>Customer Personalized Products – Upload Image</li>\r\n<li>Customer Personalized Products – Select Date/Time options for products</li>\r\n<li>Customer Sorting – Define Attributes for Customer Sorting on category (price, brand, etc.)</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Product Browsing\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Multiple Images Per Product</li>\r\n<li>Product Image Zoom-in Capability</li>\r\n<li>Product Reviews</li>\r\n<li>Related Products</li>\r\n<li>Stock Availability</li>\r\n<li>Multi-Tier Pricing Upsell</li>\r\n<li>Product Option Selection</li>\r\n<li>Grouped Products View</li>\r\n<li>Add to Wishlist</li>\r\n<li>Send to a Friend with Email</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Browsing\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Layered / Faceted Navigation for filtering of products in categories</li>\r\n<li>Layered / Faceted Navigation for filtering of products in search results</li>\r\n<li>Flat Catalog Module for Improved Performance with large catalogs</li>\r\n<li>Static Block tool to create category landing pages</li>\r\n<li>Ability to assign designs on category and product level (unique design per product/category)</li>\r\n<li>Configurable search with auto-suggested terms</li>\r\n<li>Recently viewed products</li>\r\n<li>Product comparisons</li>\r\n<li>Recently compared products</li>\r\n<li>Cross-sells, Up-sells and Related Items</li>\r\n<li>Popular Search Terms Cloud</li>\r\n<li>Filter by Product Tags</li>\r\n<li>Product Reviews</li>\r\n<li>Product listing in grid or list format</li>\r\n<li>Breadcrumbs</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]\r\n','WebShop 3.0 Feature List','','inherit','closed','closed','','193-revision-32','','','2011-07-15 11:01:29','2011-07-15 11:01:29','',193,'http://bestecommerce-uk.com/2011/07/193-revision-32/',0,'revision','',0),(230,1,'2011-07-15 11:21:01','2011-07-15 11:21:01','<!-- [one_third]First column of content.[/one_third]\r\n[one_third]Second column of content.[/one_third]\r\n[one_third_last]Last column of content.[/one_third_last]\r\n-->\r\n\r\n[tabs]\r\n	[tab title=\"Site Management\"]\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n		<li>Control multiple websites and stores from one Administration Panel with ability to share as much or as little information as needed</li>\r\n                <li>Administration Permission System Roles and Users</li>\r\n                <li>Web Services API for easy integration between Magento and any third-party application</li>\r\n                <li>Fully 100% customizable design using templates</li>\r\n                <li>Customer Groups</li>\r\n                <li>One-Click Upgrades</li>\r\n                <li>Content Management System for Informational Pages</li>\r\n                <li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"Search Engine Optimization\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>100% Search Engine Friendly</li>\r\n                <li>Google Site Map</li>\r\n                <li>Search Engine Friendly URL’s</li>\r\n                <li>URL Rewrites give full control of URL’s</li>\r\n                <li>Meta-information for products and categories</li>\r\n                <li>Auto-generated Site Map for display on site</li>\r\n                <li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"Analytics and Reporting\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Marketing Promotions and Tools\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Checkout, Payment and Shipping\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Checks/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\nShopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Customer\"]\r\n<h3>Customer Service</h3> \r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Contact Us form</li>\r\n<li>Feature-rich Customer Accounts</li>\r\n<li>Order History with Status Updates</li>\r\n<li>Order Tracking from Account</li>\r\n<li>Password Reset email from front-end and admin panel</li>\r\n<li>Order and Account Update Emails</li>\r\n<li>Customizable Order Emails</li>\r\n<li>Create and Edit Orders from the Admin Panel</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Customer Accounts</h3> \r\n	<ul>\r\n		<li>Order status and history</li>\r\n<li>Re-orders from account</li>\r\n<li>Recently ordered items</li>\r\n<li>Address Book with unlimited addresses</li>\r\n<li>Default Billing and Shipping addresses</li>\r\n<li>Wishlist with ability to add comments</li>\r\n<li>Email or Send RSS feed of Wishlist</li>\r\n<li>Newsletter Subscription management</li>\r\n<li>Product Reviews submitted</li>\r\n<li>Product Tags submitted</li>\r\n<li>Downloadable/Digital Products<li>\r\n<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Customer Accounts\"]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Catalog Management\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Inventory Management with Backordered items, Minimum and Maximum quantities</li>\r\n<li>Batch Import and Export of catalog</li>\r\n<li>Batch Updates to products in admin panel</li>\r\n<li>Google Base Integration</li>\r\n<li>Simple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products</li>\r\n<li>Virtual Products</li>\r\n<li>Downloadable/Digital Products</li>\r\n<li>Customer Personalized Products - upload text for embroidery, monogramming, etc.</li>\r\n<li>Tax Rates per location, customer group and product type</li>\r\n<li>Attribute Sets for quick product creation of different item types</li>\r\n<li>Create Store-specific attributes on the fly</li>\r\n<li>Media Manager with automatic image resizing and watermarking</li>\r\n<li>Advanced Pricing Rules and support for Special Prices (see marketing tools)</li>\r\n<li>Search Results rewrites and redirects</li>\r\n<li>Approve, Edit and Delete Product Tags</li>\r\n<li>Approve, Edit and Delete Product Reviews</li>\r\n<li>RSS feed for Low Inventory Alerts</li>\r\n<li>Customer Personalized Products - Upload text for embroidery, monogramming, etc. (this one is already there, but want to have the following shown after it)</li>\r\n<li>Customer Personalized Products – Upload Image</li>\r\n<li>Customer Personalized Products – Select Date/Time options for products</li>\r\n<li>Customer Sorting – Define Attributes for Customer Sorting on category (price, brand, etc.)</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Product Browsing\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Multiple Images Per Product</li>\r\n<li>Product Image Zoom-in Capability</li>\r\n<li>Product Reviews</li>\r\n<li>Related Products</li>\r\n<li>Stock Availability</li>\r\n<li>Multi-Tier Pricing Upsell</li>\r\n<li>Product Option Selection</li>\r\n<li>Grouped Products View</li>\r\n<li>Add to Wishlist</li>\r\n<li>Send to a Friend with Email</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Browsing\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Layered / Faceted Navigation for filtering of products in categories</li>\r\n<li>Layered / Faceted Navigation for filtering of products in search results</li>\r\n<li>Flat Catalog Module for Improved Performance with large catalogs</li>\r\n<li>Static Block tool to create category landing pages</li>\r\n<li>Ability to assign designs on category and product level (unique design per product/category)</li>\r\n<li>Configurable search with auto-suggested terms</li>\r\n<li>Recently viewed products</li>\r\n<li>Product comparisons</li>\r\n<li>Recently compared products</li>\r\n<li>Cross-sells, Up-sells and Related Items</li>\r\n<li>Popular Search Terms Cloud</li>\r\n<li>Filter by Product Tags</li>\r\n<li>Product Reviews</li>\r\n<li>Product listing in grid or list format</li>\r\n<li>Breadcrumbs</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]\r\n','WebShop 3.0 Feature List','','inherit','closed','closed','','193-revision-36','','','2011-07-15 11:21:01','2011-07-15 11:21:01','',193,'http://bestecommerce-uk.com/2011/07/193-revision-36/',0,'revision','',0),(228,1,'2011-07-15 11:18:28','2011-07-15 11:18:28','<!-- [one_third]First column of content.[/one_third]\r\n[one_third]Second column of content.[/one_third]\r\n[one_third_last]Last column of content.[/one_third_last]\r\n-->\r\n\r\n[tabs]\r\n	[tab title=\"Site Management\"]\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n		<li>Control multiple websites and stores from one Administration Panel with ability to share as much or as little information as needed</li>\r\n                <li>Administration Permission System Roles and Users</li>\r\n                <li>Web Services API for easy integration between Magento and any third-party application</li>\r\n                <li>Fully 100% customizable design using templates</li>\r\n                <li>Customer Groups</li>\r\n                <li>One-Click Upgrades</li>\r\n                <li>Content Management System for Informational Pages</li>\r\n                <li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"Search Engine Optimization\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>100% Search Engine Friendly</li>\r\n                <li>Google Site Map</li>\r\n                <li>Search Engine Friendly URL’s</li>\r\n                <li>URL Rewrites give full control of URL’s</li>\r\n                <li>Meta-information for products and categories</li>\r\n                <li>Auto-generated Site Map for display on site</li>\r\n                <li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"Analytics and Reporting\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Marketing Promotions and Tools\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Checkout, Payment and Shipping\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Checks/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\nShopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Customer Service\"]\r\n<h3>Service</h3> \r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Contact Us form</li>\r\n<li>Feature-rich Customer Accounts</li>\r\n<li>Order History with Status Updates</li>\r\n<li>Order Tracking from Account</li>\r\n<li>Password Reset email from front-end and admin panel</li>\r\n<li>Order and Account Update Emails</li>\r\n<li>Customizable Order Emails</li>\r\n<li>Create and Edit Orders from the Admin Panel</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Customer Accounts\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Order status and history</li>\r\n<li>Re-orders from account</li>\r\n<li>Recently ordered items</li>\r\n<li>Address Book with unlimited addresses</li>\r\n<li>Default Billing and Shipping addresses</li>\r\n<li>Wishlist with ability to add comments</li>\r\n<li>Email or Send RSS feed of Wishlist</li>\r\n<li>Newsletter Subscription management</li>\r\n<li>Product Reviews submitted</li>\r\n<li>Product Tags submitted</li>\r\n<li>Downloadable/Digital Products<li>\r\n<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Management\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Inventory Management with Backordered items, Minimum and Maximum quantities</li>\r\n<li>Batch Import and Export of catalog</li>\r\n<li>Batch Updates to products in admin panel</li>\r\n<li>Google Base Integration</li>\r\n<li>Simple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products</li>\r\n<li>Virtual Products</li>\r\n<li>Downloadable/Digital Products</li>\r\n<li>Customer Personalized Products - upload text for embroidery, monogramming, etc.</li>\r\n<li>Tax Rates per location, customer group and product type</li>\r\n<li>Attribute Sets for quick product creation of different item types</li>\r\n<li>Create Store-specific attributes on the fly</li>\r\n<li>Media Manager with automatic image resizing and watermarking</li>\r\n<li>Advanced Pricing Rules and support for Special Prices (see marketing tools)</li>\r\n<li>Search Results rewrites and redirects</li>\r\n<li>Approve, Edit and Delete Product Tags</li>\r\n<li>Approve, Edit and Delete Product Reviews</li>\r\n<li>RSS feed for Low Inventory Alerts</li>\r\n<li>Customer Personalized Products - Upload text for embroidery, monogramming, etc. (this one is already there, but want to have the following shown after it)</li>\r\n<li>Customer Personalized Products – Upload Image</li>\r\n<li>Customer Personalized Products – Select Date/Time options for products</li>\r\n<li>Customer Sorting – Define Attributes for Customer Sorting on category (price, brand, etc.)</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Product Browsing\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Multiple Images Per Product</li>\r\n<li>Product Image Zoom-in Capability</li>\r\n<li>Product Reviews</li>\r\n<li>Related Products</li>\r\n<li>Stock Availability</li>\r\n<li>Multi-Tier Pricing Upsell</li>\r\n<li>Product Option Selection</li>\r\n<li>Grouped Products View</li>\r\n<li>Add to Wishlist</li>\r\n<li>Send to a Friend with Email</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Browsing\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Layered / Faceted Navigation for filtering of products in categories</li>\r\n<li>Layered / Faceted Navigation for filtering of products in search results</li>\r\n<li>Flat Catalog Module for Improved Performance with large catalogs</li>\r\n<li>Static Block tool to create category landing pages</li>\r\n<li>Ability to assign designs on category and product level (unique design per product/category)</li>\r\n<li>Configurable search with auto-suggested terms</li>\r\n<li>Recently viewed products</li>\r\n<li>Product comparisons</li>\r\n<li>Recently compared products</li>\r\n<li>Cross-sells, Up-sells and Related Items</li>\r\n<li>Popular Search Terms Cloud</li>\r\n<li>Filter by Product Tags</li>\r\n<li>Product Reviews</li>\r\n<li>Product listing in grid or list format</li>\r\n<li>Breadcrumbs</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]\r\n','WebShop 3.0 Feature List','','inherit','closed','closed','','193-revision-34','','','2011-07-15 11:18:28','2011-07-15 11:18:28','',193,'http://bestecommerce-uk.com/2011/07/193-revision-34/',0,'revision','',0),(225,1,'2011-07-14 16:24:22','2011-07-14 16:24:22','<!-- [one_third]First column of content.[/one_third]\r\n[one_third]Second column of content.[/one_third]\r\n[one_third_last]Last column of content.[/one_third_last]\r\n-->\r\n\r\n[tabs]\r\n	[tab title=\"Site Management\"]\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n		<li>Control multiple websites and stores from one Administration Panel with ability to share as much or as little information as needed</li>\r\n                <li>Administration Permission System Roles and Users</li>\r\n                <li>Web Services API for easy integration between Magento and any third-party application</li>\r\n                <li>Fully 100% customizable design using templates</li>\r\n                <li>Customer Groups</li>\r\n                <li>One-Click Upgrades</li>\r\n                <li>Content Management System for Informational Pages</li>\r\n                <li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"Search Engine Optimization\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>100% Search Engine Friendly</li>\r\n                <li>Google Site Map</li>\r\n                <li>Search Engine Friendly URL’s</li>\r\n                <li>URL Rewrites give full control of URL’s</li>\r\n                <li>Meta-information for products and categories</li>\r\n                <li>Auto-generated Site Map for display on site</li>\r\n                <li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"Analytics and Reporting\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Marketing Promotions and Tools\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Checkout, Payment and Shipping\"]\r\n[one_half]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Checks/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\n<li>Shopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n[/one_half]\r\n\r\n[one_half_last]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/one_half_last]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Customer Service\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Contact Us form</li>\r\n<li>Feature-rich Customer Accounts</li>\r\n<li>Order History with Status Updates</li>\r\n<li>Order Tracking from Account</li>\r\n<li>Password Reset email from front-end and admin panel</li>\r\n<li>Order and Account Update Emails</li>\r\n<li>Customizable Order Emails</li>\r\n<li>Create and Edit Orders from the Admin Panel</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Customer Accounts\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Order status and history</li>\r\n<li>Re-orders from account</li>\r\n<li>Recently ordered items</li>\r\n<li>Address Book with unlimited addresses</li>\r\n<li>Default Billing and Shipping addresses</li>\r\n<li>Wishlist with ability to add comments</li>\r\n<li>Email or Send RSS feed of Wishlist</li>\r\n<li>Newsletter Subscription management</li>\r\n<li>Product Reviews submitted</li>\r\n<li>Product Tags submitted</li>\r\n<li>Downloadable/Digital Products<li>\r\n<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Management\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Inventory Management with Backordered items, Minimum and Maximum quantities</li>\r\n<li>Batch Import and Export of catalog</li>\r\n<li>Batch Updates to products in admin panel</li>\r\n<li>Google Base Integration</li>\r\n<li>Simple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products</li>\r\n<li>Virtual Products</li>\r\n<li>Downloadable/Digital Products</li>\r\n<li>Customer Personalized Products - upload text for embroidery, monogramming, etc.</li>\r\n<li>Tax Rates per location, customer group and product type</li>\r\n<li>Attribute Sets for quick product creation of different item types</li>\r\n<li>Create Store-specific attributes on the fly</li>\r\n<li>Media Manager with automatic image resizing and watermarking</li>\r\n<li>Advanced Pricing Rules and support for Special Prices (see marketing tools)</li>\r\n<li>Search Results rewrites and redirects</li>\r\n<li>Approve, Edit and Delete Product Tags</li>\r\n<li>Approve, Edit and Delete Product Reviews</li>\r\n<li>RSS feed for Low Inventory Alerts</li>\r\n<li>Customer Personalized Products - Upload text for embroidery, monogramming, etc. (this one is already there, but want to have the following shown after it)</li>\r\n<li>Customer Personalized Products – Upload Image</li>\r\n<li>Customer Personalized Products – Select Date/Time options for products</li>\r\n<li>Customer Sorting – Define Attributes for Customer Sorting on category (price, brand, etc.)</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Product Browsing\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Multiple Images Per Product</li>\r\n<li>Product Image Zoom-in Capability</li>\r\n<li>Product Reviews</li>\r\n<li>Related Products</li>\r\n<li>Stock Availability</li>\r\n<li>Multi-Tier Pricing Upsell</li>\r\n<li>Product Option Selection</li>\r\n<li>Grouped Products View</li>\r\n<li>Add to Wishlist</li>\r\n<li>Send to a Friend with Email</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Browsing\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Layered / Faceted Navigation for filtering of products in categories</li>\r\n<li>Layered / Faceted Navigation for filtering of products in search results</li>\r\n<li>Flat Catalog Module for Improved Performance with large catalogs</li>\r\n<li>Static Block tool to create category landing pages</li>\r\n<li>Ability to assign designs on category and product level (unique design per product/category)</li>\r\n<li>Configurable search with auto-suggested terms</li>\r\n<li>Recently viewed products</li>\r\n<li>Product comparisons</li>\r\n<li>Recently compared products</li>\r\n<li>Cross-sells, Up-sells and Related Items</li>\r\n<li>Popular Search Terms Cloud</li>\r\n<li>Filter by Product Tags</li>\r\n<li>Product Reviews</li>\r\n<li>Product listing in grid or list format</li>\r\n<li>Breadcrumbs</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]\r\n','WebShop 3.0 Feature List','','inherit','closed','closed','','193-revision-31','','','2011-07-14 16:24:22','2011-07-14 16:24:22','',193,'http://bestecommerce-uk.com/2011/07/193-revision-31/',0,'revision','',0),(227,1,'2011-07-15 11:16:49','2011-07-15 11:16:49','<!-- [one_third]First column of content.[/one_third]\r\n[one_third]Second column of content.[/one_third]\r\n[one_third_last]Last column of content.[/one_third_last]\r\n-->\r\n\r\n[tabs]\r\n	[tab title=\"Site Management\"]\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n		<li>Control multiple websites and stores from one Administration Panel with ability to share as much or as little information as needed</li>\r\n                <li>Administration Permission System Roles and Users</li>\r\n                <li>Web Services API for easy integration between Magento and any third-party application</li>\r\n                <li>Fully 100% customizable design using templates</li>\r\n                <li>Customer Groups</li>\r\n                <li>One-Click Upgrades</li>\r\n                <li>Content Management System for Informational Pages</li>\r\n                <li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"Search Engine Optimization\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>100% Search Engine Friendly</li>\r\n                <li>Google Site Map</li>\r\n                <li>Search Engine Friendly URL’s</li>\r\n                <li>URL Rewrites give full control of URL’s</li>\r\n                <li>Meta-information for products and categories</li>\r\n                <li>Auto-generated Site Map for display on site</li>\r\n                <li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"Analytics and Reporting\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Marketing Promotions and Tools\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Checkout, Payment and Shipping\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Checks/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\nShopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Customer Service\"]\r\n<h3>Customer service</h3> \r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Contact Us form</li>\r\n<li>Feature-rich Customer Accounts</li>\r\n<li>Order History with Status Updates</li>\r\n<li>Order Tracking from Account</li>\r\n<li>Password Reset email from front-end and admin panel</li>\r\n<li>Order and Account Update Emails</li>\r\n<li>Customizable Order Emails</li>\r\n<li>Create and Edit Orders from the Admin Panel</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Customer Accounts\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Order status and history</li>\r\n<li>Re-orders from account</li>\r\n<li>Recently ordered items</li>\r\n<li>Address Book with unlimited addresses</li>\r\n<li>Default Billing and Shipping addresses</li>\r\n<li>Wishlist with ability to add comments</li>\r\n<li>Email or Send RSS feed of Wishlist</li>\r\n<li>Newsletter Subscription management</li>\r\n<li>Product Reviews submitted</li>\r\n<li>Product Tags submitted</li>\r\n<li>Downloadable/Digital Products<li>\r\n<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Management\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Inventory Management with Backordered items, Minimum and Maximum quantities</li>\r\n<li>Batch Import and Export of catalog</li>\r\n<li>Batch Updates to products in admin panel</li>\r\n<li>Google Base Integration</li>\r\n<li>Simple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products</li>\r\n<li>Virtual Products</li>\r\n<li>Downloadable/Digital Products</li>\r\n<li>Customer Personalized Products - upload text for embroidery, monogramming, etc.</li>\r\n<li>Tax Rates per location, customer group and product type</li>\r\n<li>Attribute Sets for quick product creation of different item types</li>\r\n<li>Create Store-specific attributes on the fly</li>\r\n<li>Media Manager with automatic image resizing and watermarking</li>\r\n<li>Advanced Pricing Rules and support for Special Prices (see marketing tools)</li>\r\n<li>Search Results rewrites and redirects</li>\r\n<li>Approve, Edit and Delete Product Tags</li>\r\n<li>Approve, Edit and Delete Product Reviews</li>\r\n<li>RSS feed for Low Inventory Alerts</li>\r\n<li>Customer Personalized Products - Upload text for embroidery, monogramming, etc. (this one is already there, but want to have the following shown after it)</li>\r\n<li>Customer Personalized Products – Upload Image</li>\r\n<li>Customer Personalized Products – Select Date/Time options for products</li>\r\n<li>Customer Sorting – Define Attributes for Customer Sorting on category (price, brand, etc.)</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Product Browsing\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Multiple Images Per Product</li>\r\n<li>Product Image Zoom-in Capability</li>\r\n<li>Product Reviews</li>\r\n<li>Related Products</li>\r\n<li>Stock Availability</li>\r\n<li>Multi-Tier Pricing Upsell</li>\r\n<li>Product Option Selection</li>\r\n<li>Grouped Products View</li>\r\n<li>Add to Wishlist</li>\r\n<li>Send to a Friend with Email</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Browsing\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Layered / Faceted Navigation for filtering of products in categories</li>\r\n<li>Layered / Faceted Navigation for filtering of products in search results</li>\r\n<li>Flat Catalog Module for Improved Performance with large catalogs</li>\r\n<li>Static Block tool to create category landing pages</li>\r\n<li>Ability to assign designs on category and product level (unique design per product/category)</li>\r\n<li>Configurable search with auto-suggested terms</li>\r\n<li>Recently viewed products</li>\r\n<li>Product comparisons</li>\r\n<li>Recently compared products</li>\r\n<li>Cross-sells, Up-sells and Related Items</li>\r\n<li>Popular Search Terms Cloud</li>\r\n<li>Filter by Product Tags</li>\r\n<li>Product Reviews</li>\r\n<li>Product listing in grid or list format</li>\r\n<li>Breadcrumbs</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]\r\n','WebShop 3.0 Feature List','','inherit','closed','closed','','193-revision-33','','','2011-07-15 11:16:49','2011-07-15 11:16:49','',193,'http://bestecommerce-uk.com/2011/07/193-revision-33/',0,'revision','',0),(229,1,'2011-07-15 11:20:00','2011-07-15 11:20:00','<!-- [one_third]First column of content.[/one_third]\r\n[one_third]Second column of content.[/one_third]\r\n[one_third_last]Last column of content.[/one_third_last]\r\n-->\r\n\r\n[tabs]\r\n	[tab title=\"Site Management\"]\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n		<li>Control multiple websites and stores from one Administration Panel with ability to share as much or as little information as needed</li>\r\n                <li>Administration Permission System Roles and Users</li>\r\n                <li>Web Services API for easy integration between Magento and any third-party application</li>\r\n                <li>Fully 100% customizable design using templates</li>\r\n                <li>Customer Groups</li>\r\n                <li>One-Click Upgrades</li>\r\n                <li>Content Management System for Informational Pages</li>\r\n                <li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"Search Engine Optimization\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>100% Search Engine Friendly</li>\r\n                <li>Google Site Map</li>\r\n                <li>Search Engine Friendly URL’s</li>\r\n                <li>URL Rewrites give full control of URL’s</li>\r\n                <li>Meta-information for products and categories</li>\r\n                <li>Auto-generated Site Map for display on site</li>\r\n                <li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"Analytics and Reporting\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Marketing Promotions and Tools\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Checkout, Payment and Shipping\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Checks/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\nShopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Customer\"]\r\n<h3>Customer Service</h3> \r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Contact Us form</li>\r\n<li>Feature-rich Customer Accounts</li>\r\n<li>Order History with Status Updates</li>\r\n<li>Order Tracking from Account</li>\r\n<li>Password Reset email from front-end and admin panel</li>\r\n<li>Order and Account Update Emails</li>\r\n<li>Customizable Order Emails</li>\r\n<li>Create and Edit Orders from the Admin Panel</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Order status and history</li>\r\n<li>Re-orders from account</li>\r\n<li>Recently ordered items</li>\r\n<li>Address Book with unlimited addresses</li>\r\n<li>Default Billing and Shipping addresses</li>\r\n<li>Wishlist with ability to add comments</li>\r\n<li>Email or Send RSS feed of Wishlist</li>\r\n<li>Newsletter Subscription management</li>\r\n<li>Product Reviews submitted</li>\r\n<li>Product Tags submitted</li>\r\n<li>Downloadable/Digital Products<li>\r\n<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Customer Accounts\"]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Catalog Management\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Inventory Management with Backordered items, Minimum and Maximum quantities</li>\r\n<li>Batch Import and Export of catalog</li>\r\n<li>Batch Updates to products in admin panel</li>\r\n<li>Google Base Integration</li>\r\n<li>Simple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products</li>\r\n<li>Virtual Products</li>\r\n<li>Downloadable/Digital Products</li>\r\n<li>Customer Personalized Products - upload text for embroidery, monogramming, etc.</li>\r\n<li>Tax Rates per location, customer group and product type</li>\r\n<li>Attribute Sets for quick product creation of different item types</li>\r\n<li>Create Store-specific attributes on the fly</li>\r\n<li>Media Manager with automatic image resizing and watermarking</li>\r\n<li>Advanced Pricing Rules and support for Special Prices (see marketing tools)</li>\r\n<li>Search Results rewrites and redirects</li>\r\n<li>Approve, Edit and Delete Product Tags</li>\r\n<li>Approve, Edit and Delete Product Reviews</li>\r\n<li>RSS feed for Low Inventory Alerts</li>\r\n<li>Customer Personalized Products - Upload text for embroidery, monogramming, etc. (this one is already there, but want to have the following shown after it)</li>\r\n<li>Customer Personalized Products – Upload Image</li>\r\n<li>Customer Personalized Products – Select Date/Time options for products</li>\r\n<li>Customer Sorting – Define Attributes for Customer Sorting on category (price, brand, etc.)</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Product Browsing\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Multiple Images Per Product</li>\r\n<li>Product Image Zoom-in Capability</li>\r\n<li>Product Reviews</li>\r\n<li>Related Products</li>\r\n<li>Stock Availability</li>\r\n<li>Multi-Tier Pricing Upsell</li>\r\n<li>Product Option Selection</li>\r\n<li>Grouped Products View</li>\r\n<li>Add to Wishlist</li>\r\n<li>Send to a Friend with Email</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Browsing\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Layered / Faceted Navigation for filtering of products in categories</li>\r\n<li>Layered / Faceted Navigation for filtering of products in search results</li>\r\n<li>Flat Catalog Module for Improved Performance with large catalogs</li>\r\n<li>Static Block tool to create category landing pages</li>\r\n<li>Ability to assign designs on category and product level (unique design per product/category)</li>\r\n<li>Configurable search with auto-suggested terms</li>\r\n<li>Recently viewed products</li>\r\n<li>Product comparisons</li>\r\n<li>Recently compared products</li>\r\n<li>Cross-sells, Up-sells and Related Items</li>\r\n<li>Popular Search Terms Cloud</li>\r\n<li>Filter by Product Tags</li>\r\n<li>Product Reviews</li>\r\n<li>Product listing in grid or list format</li>\r\n<li>Breadcrumbs</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]\r\n','WebShop 3.0 Feature List','','inherit','closed','closed','','193-revision-35','','','2011-07-15 11:20:00','2011-07-15 11:20:00','',193,'http://bestecommerce-uk.com/2011/07/193-revision-35/',0,'revision','',0),(233,1,'2011-07-15 11:29:38','2011-07-15 11:29:38','<!-- [one_third]First column of content.[/one_third]\r\n[one_third]Second column of content.[/one_third]\r\n[one_third_last]Last column of content.[/one_third_last]\r\n-->\r\n\r\n[tabs]\r\n	[tab title=\"Site Management\"]\r\n<h3>Site Managment</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n		<li>Control multiple websites and stores from one Administration Panel with ability to share as much or as little information as needed</li>\r\n                <li>Administration Permission System Roles and Users</li>\r\n                <li>Web Services API for easy integration between Magento and any third-party application</li>\r\n                <li>Fully 100% customizable design using templates</li>\r\n                <li>Customer Groups</li>\r\n                <li>One-Click Upgrades</li>\r\n                <li>Content Management System for Informational Pages</li>\r\n                <li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n<h3>Analytics and reporting</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"Search Engine Optimization\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>100% Search Engine Friendly</li>\r\n                <li>Google Site Map</li>\r\n                <li>Search Engine Friendly URL’s</li>\r\n                <li>URL Rewrites give full control of URL’s</li>\r\n                <li>Meta-information for products and categories</li>\r\n                <li>Auto-generated Site Map for display on site</li>\r\n                <li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n\r\n[tab title=\"Marketing Promotions and Tools\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Checkout, Payment and Shipping\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Checks/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\nShopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Customer\"]\r\n<h3>Customer Service</h3> \r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Contact Us form</li>\r\n<li>Feature-rich Customer Accounts</li>\r\n<li>Order History with Status Updates</li>\r\n<li>Order Tracking from Account</li>\r\n<li>Password Reset email from front-end and admin panel</li>\r\n<li>Order and Account Update Emails</li>\r\n<li>Customizable Order Emails</li>\r\n<li>Create and Edit Orders from the Admin Panel</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Customer Accounts</h3> \r\n	<ul>\r\n		<li>Order status and history</li>\r\n<li>Re-orders from account</li>\r\n<li>Recently ordered items</li>\r\n<li>Address Book with unlimited addresses</li>\r\n<li>Default Billing and Shipping addresses</li>\r\n<li>Wishlist with ability to add comments</li>\r\n<li>Email or Send RSS feed of Wishlist</li>\r\n<li>Newsletter Subscription management</li>\r\n<li>Product Reviews submitted</li>\r\n<li>Product Tags submitted</li>\r\n<li>Downloadable/Digital Products<li>\r\n<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Management\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Inventory Management with Backordered items, Minimum and Maximum quantities</li>\r\n<li>Batch Import and Export of catalog</li>\r\n<li>Batch Updates to products in admin panel</li>\r\n<li>Google Base Integration</li>\r\n<li>Simple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products</li>\r\n<li>Virtual Products</li>\r\n<li>Downloadable/Digital Products</li>\r\n<li>Customer Personalized Products - upload text for embroidery, monogramming, etc.</li>\r\n<li>Tax Rates per location, customer group and product type</li>\r\n<li>Attribute Sets for quick product creation of different item types</li>\r\n<li>Create Store-specific attributes on the fly</li>\r\n<li>Media Manager with automatic image resizing and watermarking</li>\r\n<li>Advanced Pricing Rules and support for Special Prices (see marketing tools)</li>\r\n<li>Search Results rewrites and redirects</li>\r\n<li>Approve, Edit and Delete Product Tags</li>\r\n<li>Approve, Edit and Delete Product Reviews</li>\r\n<li>RSS feed for Low Inventory Alerts</li>\r\n<li>Customer Personalized Products - Upload text for embroidery, monogramming, etc. (this one is already there, but want to have the following shown after it)</li>\r\n<li>Customer Personalized Products – Upload Image</li>\r\n<li>Customer Personalized Products – Select Date/Time options for products</li>\r\n<li>Customer Sorting – Define Attributes for Customer Sorting on category (price, brand, etc.)</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Product Browsing\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Multiple Images Per Product</li>\r\n<li>Product Image Zoom-in Capability</li>\r\n<li>Product Reviews</li>\r\n<li>Related Products</li>\r\n<li>Stock Availability</li>\r\n<li>Multi-Tier Pricing Upsell</li>\r\n<li>Product Option Selection</li>\r\n<li>Grouped Products View</li>\r\n<li>Add to Wishlist</li>\r\n<li>Send to a Friend with Email</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Browsing\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Layered / Faceted Navigation for filtering of products in categories</li>\r\n<li>Layered / Faceted Navigation for filtering of products in search results</li>\r\n<li>Flat Catalog Module for Improved Performance with large catalogs</li>\r\n<li>Static Block tool to create category landing pages</li>\r\n<li>Ability to assign designs on category and product level (unique design per product/category)</li>\r\n<li>Configurable search with auto-suggested terms</li>\r\n<li>Recently viewed products</li>\r\n<li>Product comparisons</li>\r\n<li>Recently compared products</li>\r\n<li>Cross-sells, Up-sells and Related Items</li>\r\n<li>Popular Search Terms Cloud</li>\r\n<li>Filter by Product Tags</li>\r\n<li>Product Reviews</li>\r\n<li>Product listing in grid or list format</li>\r\n<li>Breadcrumbs</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]\r\n','WebShop 3.0 Feature List','','inherit','closed','closed','','193-revision-39','','','2011-07-15 11:29:38','2011-07-15 11:29:38','',193,'http://bestecommerce-uk.com/2011/07/193-revision-39/',0,'revision','',0),(231,1,'2011-07-15 11:23:19','2011-07-15 11:23:19','<!-- [one_third]First column of content.[/one_third]\r\n[one_third]Second column of content.[/one_third]\r\n[one_third_last]Last column of content.[/one_third_last]\r\n-->\r\n\r\n[tabs]\r\n	[tab title=\"Site Management\"]\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n		<li>Control multiple websites and stores from one Administration Panel with ability to share as much or as little information as needed</li>\r\n                <li>Administration Permission System Roles and Users</li>\r\n                <li>Web Services API for easy integration between Magento and any third-party application</li>\r\n                <li>Fully 100% customizable design using templates</li>\r\n                <li>Customer Groups</li>\r\n                <li>One-Click Upgrades</li>\r\n                <li>Content Management System for Informational Pages</li>\r\n                <li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"Search Engine Optimization\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>100% Search Engine Friendly</li>\r\n                <li>Google Site Map</li>\r\n                <li>Search Engine Friendly URL’s</li>\r\n                <li>URL Rewrites give full control of URL’s</li>\r\n                <li>Meta-information for products and categories</li>\r\n                <li>Auto-generated Site Map for display on site</li>\r\n                <li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"Analytics and Reporting\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Marketing Promotions and Tools\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Checkout, Payment and Shipping\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Checks/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\nShopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Customer\"]\r\n<h3>Customer Service</h3> \r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Contact Us form</li>\r\n<li>Feature-rich Customer Accounts</li>\r\n<li>Order History with Status Updates</li>\r\n<li>Order Tracking from Account</li>\r\n<li>Password Reset email from front-end and admin panel</li>\r\n<li>Order and Account Update Emails</li>\r\n<li>Customizable Order Emails</li>\r\n<li>Create and Edit Orders from the Admin Panel</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Customer Accounts</h3> \r\n	<ul>\r\n		<li>Order status and history</li>\r\n<li>Re-orders from account</li>\r\n<li>Recently ordered items</li>\r\n<li>Address Book with unlimited addresses</li>\r\n<li>Default Billing and Shipping addresses</li>\r\n<li>Wishlist with ability to add comments</li>\r\n<li>Email or Send RSS feed of Wishlist</li>\r\n<li>Newsletter Subscription management</li>\r\n<li>Product Reviews submitted</li>\r\n<li>Product Tags submitted</li>\r\n<li>Downloadable/Digital Products<li>\r\n<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Management\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Inventory Management with Backordered items, Minimum and Maximum quantities</li>\r\n<li>Batch Import and Export of catalog</li>\r\n<li>Batch Updates to products in admin panel</li>\r\n<li>Google Base Integration</li>\r\n<li>Simple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products</li>\r\n<li>Virtual Products</li>\r\n<li>Downloadable/Digital Products</li>\r\n<li>Customer Personalized Products - upload text for embroidery, monogramming, etc.</li>\r\n<li>Tax Rates per location, customer group and product type</li>\r\n<li>Attribute Sets for quick product creation of different item types</li>\r\n<li>Create Store-specific attributes on the fly</li>\r\n<li>Media Manager with automatic image resizing and watermarking</li>\r\n<li>Advanced Pricing Rules and support for Special Prices (see marketing tools)</li>\r\n<li>Search Results rewrites and redirects</li>\r\n<li>Approve, Edit and Delete Product Tags</li>\r\n<li>Approve, Edit and Delete Product Reviews</li>\r\n<li>RSS feed for Low Inventory Alerts</li>\r\n<li>Customer Personalized Products - Upload text for embroidery, monogramming, etc. (this one is already there, but want to have the following shown after it)</li>\r\n<li>Customer Personalized Products – Upload Image</li>\r\n<li>Customer Personalized Products – Select Date/Time options for products</li>\r\n<li>Customer Sorting – Define Attributes for Customer Sorting on category (price, brand, etc.)</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Product Browsing\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Multiple Images Per Product</li>\r\n<li>Product Image Zoom-in Capability</li>\r\n<li>Product Reviews</li>\r\n<li>Related Products</li>\r\n<li>Stock Availability</li>\r\n<li>Multi-Tier Pricing Upsell</li>\r\n<li>Product Option Selection</li>\r\n<li>Grouped Products View</li>\r\n<li>Add to Wishlist</li>\r\n<li>Send to a Friend with Email</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Browsing\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Layered / Faceted Navigation for filtering of products in categories</li>\r\n<li>Layered / Faceted Navigation for filtering of products in search results</li>\r\n<li>Flat Catalog Module for Improved Performance with large catalogs</li>\r\n<li>Static Block tool to create category landing pages</li>\r\n<li>Ability to assign designs on category and product level (unique design per product/category)</li>\r\n<li>Configurable search with auto-suggested terms</li>\r\n<li>Recently viewed products</li>\r\n<li>Product comparisons</li>\r\n<li>Recently compared products</li>\r\n<li>Cross-sells, Up-sells and Related Items</li>\r\n<li>Popular Search Terms Cloud</li>\r\n<li>Filter by Product Tags</li>\r\n<li>Product Reviews</li>\r\n<li>Product listing in grid or list format</li>\r\n<li>Breadcrumbs</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]\r\n','WebShop 3.0 Feature List','','inherit','closed','closed','','193-revision-37','','','2011-07-15 11:23:19','2011-07-15 11:23:19','',193,'http://bestecommerce-uk.com/2011/07/193-revision-37/',0,'revision','',0),(232,1,'2011-07-15 11:27:34','2011-07-15 11:27:34','<!-- [one_third]First column of content.[/one_third]\r\n[one_third]Second column of content.[/one_third]\r\n[one_third_last]Last column of content.[/one_third_last]\r\n-->\r\n\r\n[tabs]\r\n	[tab title=\"Site Management\"]\r\n<h3>Site Managment</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n		<li>Control multiple websites and stores from one Administration Panel with ability to share as much or as little information as needed</li>\r\n                <li>Administration Permission System Roles and Users</li>\r\n                <li>Web Services API for easy integration between Magento and any third-party application</li>\r\n                <li>Fully 100% customizable design using templates</li>\r\n                <li>Customer Groups</li>\r\n                <li>One-Click Upgrades</li>\r\n                <li>Content Management System for Informational Pages</li>\r\n                <li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"Search Engine Optimization\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>100% Search Engine Friendly</li>\r\n                <li>Google Site Map</li>\r\n                <li>Search Engine Friendly URL’s</li>\r\n                <li>URL Rewrites give full control of URL’s</li>\r\n                <li>Meta-information for products and categories</li>\r\n                <li>Auto-generated Site Map for display on site</li>\r\n                <li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"Analytics and Reporting\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Marketing Promotions and Tools\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Checkout, Payment and Shipping\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Checks/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\nShopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Customer\"]\r\n<h3>Customer Service</h3> \r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Contact Us form</li>\r\n<li>Feature-rich Customer Accounts</li>\r\n<li>Order History with Status Updates</li>\r\n<li>Order Tracking from Account</li>\r\n<li>Password Reset email from front-end and admin panel</li>\r\n<li>Order and Account Update Emails</li>\r\n<li>Customizable Order Emails</li>\r\n<li>Create and Edit Orders from the Admin Panel</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Customer Accounts</h3> \r\n	<ul>\r\n		<li>Order status and history</li>\r\n<li>Re-orders from account</li>\r\n<li>Recently ordered items</li>\r\n<li>Address Book with unlimited addresses</li>\r\n<li>Default Billing and Shipping addresses</li>\r\n<li>Wishlist with ability to add comments</li>\r\n<li>Email or Send RSS feed of Wishlist</li>\r\n<li>Newsletter Subscription management</li>\r\n<li>Product Reviews submitted</li>\r\n<li>Product Tags submitted</li>\r\n<li>Downloadable/Digital Products<li>\r\n<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Management\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Inventory Management with Backordered items, Minimum and Maximum quantities</li>\r\n<li>Batch Import and Export of catalog</li>\r\n<li>Batch Updates to products in admin panel</li>\r\n<li>Google Base Integration</li>\r\n<li>Simple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products</li>\r\n<li>Virtual Products</li>\r\n<li>Downloadable/Digital Products</li>\r\n<li>Customer Personalized Products - upload text for embroidery, monogramming, etc.</li>\r\n<li>Tax Rates per location, customer group and product type</li>\r\n<li>Attribute Sets for quick product creation of different item types</li>\r\n<li>Create Store-specific attributes on the fly</li>\r\n<li>Media Manager with automatic image resizing and watermarking</li>\r\n<li>Advanced Pricing Rules and support for Special Prices (see marketing tools)</li>\r\n<li>Search Results rewrites and redirects</li>\r\n<li>Approve, Edit and Delete Product Tags</li>\r\n<li>Approve, Edit and Delete Product Reviews</li>\r\n<li>RSS feed for Low Inventory Alerts</li>\r\n<li>Customer Personalized Products - Upload text for embroidery, monogramming, etc. (this one is already there, but want to have the following shown after it)</li>\r\n<li>Customer Personalized Products – Upload Image</li>\r\n<li>Customer Personalized Products – Select Date/Time options for products</li>\r\n<li>Customer Sorting – Define Attributes for Customer Sorting on category (price, brand, etc.)</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Product Browsing\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Multiple Images Per Product</li>\r\n<li>Product Image Zoom-in Capability</li>\r\n<li>Product Reviews</li>\r\n<li>Related Products</li>\r\n<li>Stock Availability</li>\r\n<li>Multi-Tier Pricing Upsell</li>\r\n<li>Product Option Selection</li>\r\n<li>Grouped Products View</li>\r\n<li>Add to Wishlist</li>\r\n<li>Send to a Friend with Email</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Browsing\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Layered / Faceted Navigation for filtering of products in categories</li>\r\n<li>Layered / Faceted Navigation for filtering of products in search results</li>\r\n<li>Flat Catalog Module for Improved Performance with large catalogs</li>\r\n<li>Static Block tool to create category landing pages</li>\r\n<li>Ability to assign designs on category and product level (unique design per product/category)</li>\r\n<li>Configurable search with auto-suggested terms</li>\r\n<li>Recently viewed products</li>\r\n<li>Product comparisons</li>\r\n<li>Recently compared products</li>\r\n<li>Cross-sells, Up-sells and Related Items</li>\r\n<li>Popular Search Terms Cloud</li>\r\n<li>Filter by Product Tags</li>\r\n<li>Product Reviews</li>\r\n<li>Product listing in grid or list format</li>\r\n<li>Breadcrumbs</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]\r\n','WebShop 3.0 Feature List','','inherit','closed','closed','','193-revision-38','','','2011-07-15 11:27:34','2011-07-15 11:27:34','',193,'http://bestecommerce-uk.com/2011/07/193-revision-38/',0,'revision','',0),(317,1,'2011-07-18 13:20:25','2011-07-18 13:20:25','<!-- [one_third]First column of content.[/one_third]\r\n[one_third]Second column of content.[/one_third]\r\n[one_third_last]Last column of content.[/one_third_last]\r\n-->\r\n\r\n[tabs]\r\n	[tab title=\"Site Management\"]\r\n<h3>Site Management</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\r\n<li>Administration of permissions, system roles and users</li>\r\n<li>Web Services API for easy integration between Magento and any third-party application</li>\r\n<li>Fully 100% customizable design using templates</li>\r\n<li>Customer Groups</li>\r\n<li>One-Click Upgrades</li>\r\n<li>Content Management System for Informational Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n<h3>Analytics and reporting</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n <li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"SEO and Marketing\"]\r\n<h3>Search Engine Optimisation</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>100% Search Engine Friendly</li>\r\n<li>Google Site Map</li>\r\n<li>Search Engine Friendly URL’s</li>\r\n<li>URL Rewrites give full control of URL’s</li>\r\n<li>Meta-information for products and categories</li>\r\n<li>Auto-generated Site Map for display on site</li>\r\n<li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Marketing Promotions and Tools</h3>\r\n	<ul>\r\n<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n<h3>Orders</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n<h3>Checkout, Payment and Shipping</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Cheques/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\n<li>Shopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Customer\"]\r\n<h3>Customer Service</h3> \r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Contact Us form</li>\r\n<li>Feature-rich Customer Accounts</li>\r\n<li>Order History with Status Updates</li>\r\n<li>Order Tracking from Account</li>\r\n<li>Password Reset email from front-end and admin panel</li>\r\n<li>Order and Account Update Emails</li>\r\n<li>Customizable Order Emails</li>\r\n<li>Create and Edit Orders from the Admin Panel</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Customer Accounts</h3> \r\n	<ul>\r\n		<li>Order status and history</li>\r\n<li>Re-orders from account</li>\r\n<li>Recently ordered items</li>\r\n<li>Address Book with unlimited addresses</li>\r\n<li>Default Billing and Shipping addresses</li>\r\n<li>Wishlist with ability to add comments</li>\r\n<li>Email or Send RSS feed of Wishlist</li>\r\n<li>Newsletter Subscription management</li>\r\n<li>Product Reviews submitted</li>\r\n<li>Product Tags submitted</li>\r\n<li>Downloadable/Digital Products<li>\r\n<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Management & Browsing\"]\r\n<h3>Catalog Management</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Inventory Management with Backordered items, Minimum and Maximum quantities</li>\r\n<li>Batch Import and Export of catalog</li>\r\n<li>Batch Updates to products in admin panel</li>\r\n<li>Google Base Integration</li>\r\n<li>Simple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products</li>\r\n<li>Virtual Products</li>\r\n<li>Downloadable/Digital Products</li>\r\n<li>Customer Personalized Products - upload text for embroidery, monogramming, etc.</li>\r\n<li>Tax Rates per location, customer group and product type</li>\r\n<li>Attribute Sets for quick product creation of different item types</li>\r\n<li>Create Store-specific attributes on the fly</li>\r\n<li>Media Manager with automatic image resizing and watermarking</li>\r\n<li>Advanced Pricing Rules and support for Special Prices (see marketing tools)</li>\r\n<li>Search Results rewrites and redirects</li>\r\n<li>Approve, Edit and Delete Product Tags</li>\r\n<li>Approve, Edit and Delete Product Reviews</li>\r\n<li>RSS feed for Low Inventory Alerts</li>\r\n<li>Customer Personalized Products - Upload text for embroidery, monogramming, etc. (this one is already there, but want to have the following shown after it)</li>\r\n<li>Customer Personalized Products – Upload Image</li>\r\n<li>Customer Personalized Products – Select Date/Time options for products</li>\r\n<li>Customer Sorting – Define Attributes for Customer Sorting on category (price, brand, etc.)</li>\r\n			</ul>\r\n[/bullet_list]\r\n<h3>Catalog Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Layered / Faceted Navigation for filtering of products in categories</li>\r\n<li>Layered / Faceted Navigation for filtering of products in search results</li>\r\n<li>Flat Catalog Module for Improved Performance with large catalogs</li>\r\n<li>Static Block tool to create category landing pages</li>\r\n<li>Ability to assign designs on category and product level (unique design per product/category)</li>\r\n<li>Configurable search with auto-suggested terms</li>\r\n<li>Recently viewed products</li>\r\n<li>Product comparisons</li>\r\n<li>Recently compared products</li>\r\n<li>Cross-sells, Up-sells and Related Items</li>\r\n<li>Popular Search Terms Cloud</li>\r\n<li>Filter by Product Tags</li>\r\n<li>Product Reviews</li>\r\n<li>Product listing in grid or list format</li>\r\n<li>Breadcrumbs</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Product Browsing\"]\r\n<h3>Product Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Multiple Images Per Product</li>\r\n<li>Product Image Zoom-in Capability</li>\r\n<li>Product Reviews</li>\r\n<li>Related Products</li>\r\n<li>Stock Availability</li>\r\n<li>Multi-Tier Pricing Upsell</li>\r\n<li>Product Option Selection</li>\r\n<li>Grouped Products View</li>\r\n<li>Add to Wishlist</li>\r\n<li>Send to a Friend with Email</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]\r\n','WebShop 3.0 Feature List','','inherit','closed','closed','','193-revision-61','','','2011-07-18 13:20:25','2011-07-18 13:20:25','',193,'http://bestecommerce-uk.com/2011/07/193-revision-61/',0,'revision','',0),(236,1,'2011-07-15 11:35:25','2011-07-15 11:35:25','<!-- [one_third]First column of content.[/one_third]\r\n[one_third]Second column of content.[/one_third]\r\n[one_third_last]Last column of content.[/one_third_last]\r\n-->\r\n\r\n[tabs]\r\n	[tab title=\"Site Management\"]\r\n<h3>Site Managment</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one Administration Panel with ability to share as much or as little information as needed</li>\r\n<li>Administration Permission System Roles and Users</li>\r\n<li>Web Services API for easy integration between Magento and any third-party application</li>\r\n<li>Fully 100% customizable design using templates</li>\r\n<li>Customer Groups</li>\r\n<li>One-Click Upgrades</li>\r\n<li>Content Management System for Informational Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n<h3>Analytics and reporting</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n <li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"SEO, Marketing Promotions and Tools\"]\r\n<h3>Search Engine Optimisation</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>100% Search Engine Friendly</li>\r\n                <li>Google Site Map</li>\r\n                <li>Search Engine Friendly URL’s</li>\r\n                <li>URL Rewrites give full control of URL’s</li>\r\n                <li>Meta-information for products and categories</li>\r\n                <li>Auto-generated Site Map for display on site</li>\r\n                <li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Marketing Promotions and Tools</h3>\r\n	<ul>\r\n<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Checkout, Payment and Shipping\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Checks/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\nShopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Customer\"]\r\n<h3>Customer Service</h3> \r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Contact Us form</li>\r\n<li>Feature-rich Customer Accounts</li>\r\n<li>Order History with Status Updates</li>\r\n<li>Order Tracking from Account</li>\r\n<li>Password Reset email from front-end and admin panel</li>\r\n<li>Order and Account Update Emails</li>\r\n<li>Customizable Order Emails</li>\r\n<li>Create and Edit Orders from the Admin Panel</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Customer Accounts</h3> \r\n	<ul>\r\n		<li>Order status and history</li>\r\n<li>Re-orders from account</li>\r\n<li>Recently ordered items</li>\r\n<li>Address Book with unlimited addresses</li>\r\n<li>Default Billing and Shipping addresses</li>\r\n<li>Wishlist with ability to add comments</li>\r\n<li>Email or Send RSS feed of Wishlist</li>\r\n<li>Newsletter Subscription management</li>\r\n<li>Product Reviews submitted</li>\r\n<li>Product Tags submitted</li>\r\n<li>Downloadable/Digital Products<li>\r\n<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Management\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Inventory Management with Backordered items, Minimum and Maximum quantities</li>\r\n<li>Batch Import and Export of catalog</li>\r\n<li>Batch Updates to products in admin panel</li>\r\n<li>Google Base Integration</li>\r\n<li>Simple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products</li>\r\n<li>Virtual Products</li>\r\n<li>Downloadable/Digital Products</li>\r\n<li>Customer Personalized Products - upload text for embroidery, monogramming, etc.</li>\r\n<li>Tax Rates per location, customer group and product type</li>\r\n<li>Attribute Sets for quick product creation of different item types</li>\r\n<li>Create Store-specific attributes on the fly</li>\r\n<li>Media Manager with automatic image resizing and watermarking</li>\r\n<li>Advanced Pricing Rules and support for Special Prices (see marketing tools)</li>\r\n<li>Search Results rewrites and redirects</li>\r\n<li>Approve, Edit and Delete Product Tags</li>\r\n<li>Approve, Edit and Delete Product Reviews</li>\r\n<li>RSS feed for Low Inventory Alerts</li>\r\n<li>Customer Personalized Products - Upload text for embroidery, monogramming, etc. (this one is already there, but want to have the following shown after it)</li>\r\n<li>Customer Personalized Products – Upload Image</li>\r\n<li>Customer Personalized Products – Select Date/Time options for products</li>\r\n<li>Customer Sorting – Define Attributes for Customer Sorting on category (price, brand, etc.)</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Product Browsing\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Multiple Images Per Product</li>\r\n<li>Product Image Zoom-in Capability</li>\r\n<li>Product Reviews</li>\r\n<li>Related Products</li>\r\n<li>Stock Availability</li>\r\n<li>Multi-Tier Pricing Upsell</li>\r\n<li>Product Option Selection</li>\r\n<li>Grouped Products View</li>\r\n<li>Add to Wishlist</li>\r\n<li>Send to a Friend with Email</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Browsing\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Layered / Faceted Navigation for filtering of products in categories</li>\r\n<li>Layered / Faceted Navigation for filtering of products in search results</li>\r\n<li>Flat Catalog Module for Improved Performance with large catalogs</li>\r\n<li>Static Block tool to create category landing pages</li>\r\n<li>Ability to assign designs on category and product level (unique design per product/category)</li>\r\n<li>Configurable search with auto-suggested terms</li>\r\n<li>Recently viewed products</li>\r\n<li>Product comparisons</li>\r\n<li>Recently compared products</li>\r\n<li>Cross-sells, Up-sells and Related Items</li>\r\n<li>Popular Search Terms Cloud</li>\r\n<li>Filter by Product Tags</li>\r\n<li>Product Reviews</li>\r\n<li>Product listing in grid or list format</li>\r\n<li>Breadcrumbs</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]\r\n','WebShop 3.0 Feature List','','inherit','closed','closed','','193-revision-42','','','2011-07-15 11:35:25','2011-07-15 11:35:25','',193,'http://bestecommerce-uk.com/2011/07/193-revision-42/',0,'revision','',0),(235,1,'2011-07-15 11:34:45','2011-07-15 11:34:45','<!-- [one_third]First column of content.[/one_third]\r\n[one_third]Second column of content.[/one_third]\r\n[one_third_last]Last column of content.[/one_third_last]\r\n-->\r\n\r\n[tabs]\r\n	[tab title=\"Site Management\"]\r\n<h3>Site Managment</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one Administration Panel with ability to share as much or as little information as needed</li>\r\n<li>Administration Permission System Roles and Users</li>\r\n<li>Web Services API for easy integration between Magento and any third-party application</li>\r\n<li>Fully 100% customizable design using templates</li>\r\n<li>Customer Groups</li>\r\n<li>One-Click Upgrades</li>\r\n<li>Content Management System for Informational Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n<h3>Analytics and reporting</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n <li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"SEO, Marketing Promotions and Tools\"]\r\n<h3>Search Engine Optimisation</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>100% Search Engine Friendly</li>\r\n                <li>Google Site Map</li>\r\n                <li>Search Engine Friendly URL’s</li>\r\n                <li>URL Rewrites give full control of URL’s</li>\r\n                <li>Meta-information for products and categories</li>\r\n                <li>Auto-generated Site Map for display on site</li>\r\n                <li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Marketing Promotions and Tools</h3>\r\n	<ul>\r\n<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n\r\n[tab title=\"Marketing Promotions and Tools\"]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Checkout, Payment and Shipping\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Checks/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\nShopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Customer\"]\r\n<h3>Customer Service</h3> \r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Contact Us form</li>\r\n<li>Feature-rich Customer Accounts</li>\r\n<li>Order History with Status Updates</li>\r\n<li>Order Tracking from Account</li>\r\n<li>Password Reset email from front-end and admin panel</li>\r\n<li>Order and Account Update Emails</li>\r\n<li>Customizable Order Emails</li>\r\n<li>Create and Edit Orders from the Admin Panel</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Customer Accounts</h3> \r\n	<ul>\r\n		<li>Order status and history</li>\r\n<li>Re-orders from account</li>\r\n<li>Recently ordered items</li>\r\n<li>Address Book with unlimited addresses</li>\r\n<li>Default Billing and Shipping addresses</li>\r\n<li>Wishlist with ability to add comments</li>\r\n<li>Email or Send RSS feed of Wishlist</li>\r\n<li>Newsletter Subscription management</li>\r\n<li>Product Reviews submitted</li>\r\n<li>Product Tags submitted</li>\r\n<li>Downloadable/Digital Products<li>\r\n<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Management\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Inventory Management with Backordered items, Minimum and Maximum quantities</li>\r\n<li>Batch Import and Export of catalog</li>\r\n<li>Batch Updates to products in admin panel</li>\r\n<li>Google Base Integration</li>\r\n<li>Simple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products</li>\r\n<li>Virtual Products</li>\r\n<li>Downloadable/Digital Products</li>\r\n<li>Customer Personalized Products - upload text for embroidery, monogramming, etc.</li>\r\n<li>Tax Rates per location, customer group and product type</li>\r\n<li>Attribute Sets for quick product creation of different item types</li>\r\n<li>Create Store-specific attributes on the fly</li>\r\n<li>Media Manager with automatic image resizing and watermarking</li>\r\n<li>Advanced Pricing Rules and support for Special Prices (see marketing tools)</li>\r\n<li>Search Results rewrites and redirects</li>\r\n<li>Approve, Edit and Delete Product Tags</li>\r\n<li>Approve, Edit and Delete Product Reviews</li>\r\n<li>RSS feed for Low Inventory Alerts</li>\r\n<li>Customer Personalized Products - Upload text for embroidery, monogramming, etc. (this one is already there, but want to have the following shown after it)</li>\r\n<li>Customer Personalized Products – Upload Image</li>\r\n<li>Customer Personalized Products – Select Date/Time options for products</li>\r\n<li>Customer Sorting – Define Attributes for Customer Sorting on category (price, brand, etc.)</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Product Browsing\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Multiple Images Per Product</li>\r\n<li>Product Image Zoom-in Capability</li>\r\n<li>Product Reviews</li>\r\n<li>Related Products</li>\r\n<li>Stock Availability</li>\r\n<li>Multi-Tier Pricing Upsell</li>\r\n<li>Product Option Selection</li>\r\n<li>Grouped Products View</li>\r\n<li>Add to Wishlist</li>\r\n<li>Send to a Friend with Email</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Browsing\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Layered / Faceted Navigation for filtering of products in categories</li>\r\n<li>Layered / Faceted Navigation for filtering of products in search results</li>\r\n<li>Flat Catalog Module for Improved Performance with large catalogs</li>\r\n<li>Static Block tool to create category landing pages</li>\r\n<li>Ability to assign designs on category and product level (unique design per product/category)</li>\r\n<li>Configurable search with auto-suggested terms</li>\r\n<li>Recently viewed products</li>\r\n<li>Product comparisons</li>\r\n<li>Recently compared products</li>\r\n<li>Cross-sells, Up-sells and Related Items</li>\r\n<li>Popular Search Terms Cloud</li>\r\n<li>Filter by Product Tags</li>\r\n<li>Product Reviews</li>\r\n<li>Product listing in grid or list format</li>\r\n<li>Breadcrumbs</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]\r\n','WebShop 3.0 Feature List','','inherit','closed','closed','','193-revision-41','','','2011-07-15 11:34:45','2011-07-15 11:34:45','',193,'http://bestecommerce-uk.com/2011/07/193-revision-41/',0,'revision','',0),(238,1,'2011-07-15 11:43:21','2011-07-15 11:43:21','<!-- [one_third]First column of content.[/one_third]\r\n[one_third]Second column of content.[/one_third]\r\n[one_third_last]Last column of content.[/one_third_last]\r\n-->\r\n\r\n[tabs]\r\n	[tab title=\"Site Management\"]\r\n<h3>Site Managment</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one Administration Panel with ability to share as much or as little information as needed</li>\r\n<li>Administration Permission System Roles and Users</li>\r\n<li>Web Services API for easy integration between Magento and any third-party application</li>\r\n<li>Fully 100% customizable design using templates</li>\r\n<li>Customer Groups</li>\r\n<li>One-Click Upgrades</li>\r\n<li>Content Management System for Informational Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n<h3>Analytics and reporting</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n <li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"SEO, Marketing Promotions and Tools\"]\r\n<h3>Search Engine Optimisation</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>100% Search Engine Friendly</li>\r\n<li>Google Site Map</li>\r\n<li>Search Engine Friendly URL’s</li>\r\n<li>URL Rewrites give full control of URL’s</li>\r\n<li>Meta-information for products and categories</li>\r\n<li>Auto-generated Site Map for display on site</li>\r\n<li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Marketing Promotions and Tools</h3>\r\n	<ul>\r\n<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Checkout, Payment and Shipping\"]\r\n<h3>Checkout, Payment and Shipping</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Checks/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\n<li>Shopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Customer\"]\r\n<h3>Customer Service</h3> \r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Contact Us form</li>\r\n<li>Feature-rich Customer Accounts</li>\r\n<li>Order History with Status Updates</li>\r\n<li>Order Tracking from Account</li>\r\n<li>Password Reset email from front-end and admin panel</li>\r\n<li>Order and Account Update Emails</li>\r\n<li>Customizable Order Emails</li>\r\n<li>Create and Edit Orders from the Admin Panel</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Customer Accounts</h3> \r\n	<ul>\r\n		<li>Order status and history</li>\r\n<li>Re-orders from account</li>\r\n<li>Recently ordered items</li>\r\n<li>Address Book with unlimited addresses</li>\r\n<li>Default Billing and Shipping addresses</li>\r\n<li>Wishlist with ability to add comments</li>\r\n<li>Email or Send RSS feed of Wishlist</li>\r\n<li>Newsletter Subscription management</li>\r\n<li>Product Reviews submitted</li>\r\n<li>Product Tags submitted</li>\r\n<li>Downloadable/Digital Products<li>\r\n<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Management\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Inventory Management with Backordered items, Minimum and Maximum quantities</li>\r\n<li>Batch Import and Export of catalog</li>\r\n<li>Batch Updates to products in admin panel</li>\r\n<li>Google Base Integration</li>\r\n<li>Simple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products</li>\r\n<li>Virtual Products</li>\r\n<li>Downloadable/Digital Products</li>\r\n<li>Customer Personalized Products - upload text for embroidery, monogramming, etc.</li>\r\n<li>Tax Rates per location, customer group and product type</li>\r\n<li>Attribute Sets for quick product creation of different item types</li>\r\n<li>Create Store-specific attributes on the fly</li>\r\n<li>Media Manager with automatic image resizing and watermarking</li>\r\n<li>Advanced Pricing Rules and support for Special Prices (see marketing tools)</li>\r\n<li>Search Results rewrites and redirects</li>\r\n<li>Approve, Edit and Delete Product Tags</li>\r\n<li>Approve, Edit and Delete Product Reviews</li>\r\n<li>RSS feed for Low Inventory Alerts</li>\r\n<li>Customer Personalized Products - Upload text for embroidery, monogramming, etc. (this one is already there, but want to have the following shown after it)</li>\r\n<li>Customer Personalized Products – Upload Image</li>\r\n<li>Customer Personalized Products – Select Date/Time options for products</li>\r\n<li>Customer Sorting – Define Attributes for Customer Sorting on category (price, brand, etc.)</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Product Browsing\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Multiple Images Per Product</li>\r\n<li>Product Image Zoom-in Capability</li>\r\n<li>Product Reviews</li>\r\n<li>Related Products</li>\r\n<li>Stock Availability</li>\r\n<li>Multi-Tier Pricing Upsell</li>\r\n<li>Product Option Selection</li>\r\n<li>Grouped Products View</li>\r\n<li>Add to Wishlist</li>\r\n<li>Send to a Friend with Email</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Browsing\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Layered / Faceted Navigation for filtering of products in categories</li>\r\n<li>Layered / Faceted Navigation for filtering of products in search results</li>\r\n<li>Flat Catalog Module for Improved Performance with large catalogs</li>\r\n<li>Static Block tool to create category landing pages</li>\r\n<li>Ability to assign designs on category and product level (unique design per product/category)</li>\r\n<li>Configurable search with auto-suggested terms</li>\r\n<li>Recently viewed products</li>\r\n<li>Product comparisons</li>\r\n<li>Recently compared products</li>\r\n<li>Cross-sells, Up-sells and Related Items</li>\r\n<li>Popular Search Terms Cloud</li>\r\n<li>Filter by Product Tags</li>\r\n<li>Product Reviews</li>\r\n<li>Product listing in grid or list format</li>\r\n<li>Breadcrumbs</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]\r\n','WebShop 3.0 Feature List','','inherit','closed','closed','','193-revision-44','','','2011-07-15 11:43:21','2011-07-15 11:43:21','',193,'http://bestecommerce-uk.com/2011/07/193-revision-44/',0,'revision','',0),(241,1,'2011-07-15 11:50:04','2011-07-15 11:50:04','<!-- [one_third]First column of content.[/one_third]\r\n[one_third]Second column of content.[/one_third]\r\n[one_third_last]Last column of content.[/one_third_last]\r\n-->\r\n\r\n[tabs]\r\n	[tab title=\"Site Management\"]\r\n<h3>Site Managment</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one Administration Panel with ability to share as much or as little information as needed</li>\r\n<li>Administration Permission System Roles and Users</li>\r\n<li>Web Services API for easy integration between Magento and any third-party application</li>\r\n<li>Fully 100% customizable design using templates</li>\r\n<li>Customer Groups</li>\r\n<li>One-Click Upgrades</li>\r\n<li>Content Management System for Informational Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n<h3>Analytics and reporting</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n <li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"SEO, Marketing Promotions and Tools\"]\r\n<h3>Search Engine Optimisation</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>100% Search Engine Friendly</li>\r\n<li>Google Site Map</li>\r\n<li>Search Engine Friendly URL’s</li>\r\n<li>URL Rewrites give full control of URL’s</li>\r\n<li>Meta-information for products and categories</li>\r\n<li>Auto-generated Site Map for display on site</li>\r\n<li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Marketing Promotions and Tools</h3>\r\n	<ul>\r\n<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n<h3>Orders</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n<h3>Checkout, Payment and Shipping</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Checks/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\n<li>Shopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Customer\"]\r\n<h3>Customer Service</h3> \r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Contact Us form</li>\r\n<li>Feature-rich Customer Accounts</li>\r\n<li>Order History with Status Updates</li>\r\n<li>Order Tracking from Account</li>\r\n<li>Password Reset email from front-end and admin panel</li>\r\n<li>Order and Account Update Emails</li>\r\n<li>Customizable Order Emails</li>\r\n<li>Create and Edit Orders from the Admin Panel</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Customer Accounts</h3> \r\n	<ul>\r\n		<li>Order status and history</li>\r\n<li>Re-orders from account</li>\r\n<li>Recently ordered items</li>\r\n<li>Address Book with unlimited addresses</li>\r\n<li>Default Billing and Shipping addresses</li>\r\n<li>Wishlist with ability to add comments</li>\r\n<li>Email or Send RSS feed of Wishlist</li>\r\n<li>Newsletter Subscription management</li>\r\n<li>Product Reviews submitted</li>\r\n<li>Product Tags submitted</li>\r\n<li>Downloadable/Digital Products<li>\r\n<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Management\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Inventory Management with Backordered items, Minimum and Maximum quantities</li>\r\n<li>Batch Import and Export of catalog</li>\r\n<li>Batch Updates to products in admin panel</li>\r\n<li>Google Base Integration</li>\r\n<li>Simple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products</li>\r\n<li>Virtual Products</li>\r\n<li>Downloadable/Digital Products</li>\r\n<li>Customer Personalized Products - upload text for embroidery, monogramming, etc.</li>\r\n<li>Tax Rates per location, customer group and product type</li>\r\n<li>Attribute Sets for quick product creation of different item types</li>\r\n<li>Create Store-specific attributes on the fly</li>\r\n<li>Media Manager with automatic image resizing and watermarking</li>\r\n<li>Advanced Pricing Rules and support for Special Prices (see marketing tools)</li>\r\n<li>Search Results rewrites and redirects</li>\r\n<li>Approve, Edit and Delete Product Tags</li>\r\n<li>Approve, Edit and Delete Product Reviews</li>\r\n<li>RSS feed for Low Inventory Alerts</li>\r\n<li>Customer Personalized Products - Upload text for embroidery, monogramming, etc. (this one is already there, but want to have the following shown after it)</li>\r\n<li>Customer Personalized Products – Upload Image</li>\r\n<li>Customer Personalized Products – Select Date/Time options for products</li>\r\n<li>Customer Sorting – Define Attributes for Customer Sorting on category (price, brand, etc.)</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Product Browsing\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Multiple Images Per Product</li>\r\n<li>Product Image Zoom-in Capability</li>\r\n<li>Product Reviews</li>\r\n<li>Related Products</li>\r\n<li>Stock Availability</li>\r\n<li>Multi-Tier Pricing Upsell</li>\r\n<li>Product Option Selection</li>\r\n<li>Grouped Products View</li>\r\n<li>Add to Wishlist</li>\r\n<li>Send to a Friend with Email</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Browsing\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Layered / Faceted Navigation for filtering of products in categories</li>\r\n<li>Layered / Faceted Navigation for filtering of products in search results</li>\r\n<li>Flat Catalog Module for Improved Performance with large catalogs</li>\r\n<li>Static Block tool to create category landing pages</li>\r\n<li>Ability to assign designs on category and product level (unique design per product/category)</li>\r\n<li>Configurable search with auto-suggested terms</li>\r\n<li>Recently viewed products</li>\r\n<li>Product comparisons</li>\r\n<li>Recently compared products</li>\r\n<li>Cross-sells, Up-sells and Related Items</li>\r\n<li>Popular Search Terms Cloud</li>\r\n<li>Filter by Product Tags</li>\r\n<li>Product Reviews</li>\r\n<li>Product listing in grid or list format</li>\r\n<li>Breadcrumbs</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]\r\n','WebShop 3.0 Feature List','','inherit','closed','closed','','193-revision-47','','','2011-07-15 11:50:04','2011-07-15 11:50:04','',193,'http://bestecommerce-uk.com/2011/07/193-revision-47/',0,'revision','',0),(239,1,'2011-07-15 11:48:27','2011-07-15 11:48:27','<!-- [one_third]First column of content.[/one_third]\r\n[one_third]Second column of content.[/one_third]\r\n[one_third_last]Last column of content.[/one_third_last]\r\n-->\r\n\r\n[tabs]\r\n	[tab title=\"Site Management\"]\r\n<h3>Site Managment</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one Administration Panel with ability to share as much or as little information as needed</li>\r\n<li>Administration Permission System Roles and Users</li>\r\n<li>Web Services API for easy integration between Magento and any third-party application</li>\r\n<li>Fully 100% customizable design using templates</li>\r\n<li>Customer Groups</li>\r\n<li>One-Click Upgrades</li>\r\n<li>Content Management System for Informational Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n<h3>Analytics and reporting</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n <li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"SEO, Marketing Promotions and Tools\"]\r\n<h3>Search Engine Optimisation</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>100% Search Engine Friendly</li>\r\n<li>Google Site Map</li>\r\n<li>Search Engine Friendly URL’s</li>\r\n<li>URL Rewrites give full control of URL’s</li>\r\n<li>Meta-information for products and categories</li>\r\n<li>Auto-generated Site Map for display on site</li>\r\n<li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Marketing Promotions and Tools</h3>\r\n	<ul>\r\n<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Checkout, Payment and Shipping\"]\r\n<h3>Checkout, Payment and Shipping</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Checks/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\n<li>Shopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n<h3>Orders</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Customer\"]\r\n<h3>Customer Service</h3> \r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Contact Us form</li>\r\n<li>Feature-rich Customer Accounts</li>\r\n<li>Order History with Status Updates</li>\r\n<li>Order Tracking from Account</li>\r\n<li>Password Reset email from front-end and admin panel</li>\r\n<li>Order and Account Update Emails</li>\r\n<li>Customizable Order Emails</li>\r\n<li>Create and Edit Orders from the Admin Panel</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Customer Accounts</h3> \r\n	<ul>\r\n		<li>Order status and history</li>\r\n<li>Re-orders from account</li>\r\n<li>Recently ordered items</li>\r\n<li>Address Book with unlimited addresses</li>\r\n<li>Default Billing and Shipping addresses</li>\r\n<li>Wishlist with ability to add comments</li>\r\n<li>Email or Send RSS feed of Wishlist</li>\r\n<li>Newsletter Subscription management</li>\r\n<li>Product Reviews submitted</li>\r\n<li>Product Tags submitted</li>\r\n<li>Downloadable/Digital Products<li>\r\n<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Management\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Inventory Management with Backordered items, Minimum and Maximum quantities</li>\r\n<li>Batch Import and Export of catalog</li>\r\n<li>Batch Updates to products in admin panel</li>\r\n<li>Google Base Integration</li>\r\n<li>Simple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products</li>\r\n<li>Virtual Products</li>\r\n<li>Downloadable/Digital Products</li>\r\n<li>Customer Personalized Products - upload text for embroidery, monogramming, etc.</li>\r\n<li>Tax Rates per location, customer group and product type</li>\r\n<li>Attribute Sets for quick product creation of different item types</li>\r\n<li>Create Store-specific attributes on the fly</li>\r\n<li>Media Manager with automatic image resizing and watermarking</li>\r\n<li>Advanced Pricing Rules and support for Special Prices (see marketing tools)</li>\r\n<li>Search Results rewrites and redirects</li>\r\n<li>Approve, Edit and Delete Product Tags</li>\r\n<li>Approve, Edit and Delete Product Reviews</li>\r\n<li>RSS feed for Low Inventory Alerts</li>\r\n<li>Customer Personalized Products - Upload text for embroidery, monogramming, etc. (this one is already there, but want to have the following shown after it)</li>\r\n<li>Customer Personalized Products – Upload Image</li>\r\n<li>Customer Personalized Products – Select Date/Time options for products</li>\r\n<li>Customer Sorting – Define Attributes for Customer Sorting on category (price, brand, etc.)</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Product Browsing\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Multiple Images Per Product</li>\r\n<li>Product Image Zoom-in Capability</li>\r\n<li>Product Reviews</li>\r\n<li>Related Products</li>\r\n<li>Stock Availability</li>\r\n<li>Multi-Tier Pricing Upsell</li>\r\n<li>Product Option Selection</li>\r\n<li>Grouped Products View</li>\r\n<li>Add to Wishlist</li>\r\n<li>Send to a Friend with Email</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Browsing\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Layered / Faceted Navigation for filtering of products in categories</li>\r\n<li>Layered / Faceted Navigation for filtering of products in search results</li>\r\n<li>Flat Catalog Module for Improved Performance with large catalogs</li>\r\n<li>Static Block tool to create category landing pages</li>\r\n<li>Ability to assign designs on category and product level (unique design per product/category)</li>\r\n<li>Configurable search with auto-suggested terms</li>\r\n<li>Recently viewed products</li>\r\n<li>Product comparisons</li>\r\n<li>Recently compared products</li>\r\n<li>Cross-sells, Up-sells and Related Items</li>\r\n<li>Popular Search Terms Cloud</li>\r\n<li>Filter by Product Tags</li>\r\n<li>Product Reviews</li>\r\n<li>Product listing in grid or list format</li>\r\n<li>Breadcrumbs</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]\r\n','WebShop 3.0 Feature List','','inherit','closed','closed','','193-revision-45','','','2011-07-15 11:48:27','2011-07-15 11:48:27','',193,'http://bestecommerce-uk.com/2011/07/193-revision-45/',0,'revision','',0),(240,1,'2011-07-15 11:49:39','2011-07-15 11:49:39','<!-- [one_third]First column of content.[/one_third]\r\n[one_third]Second column of content.[/one_third]\r\n[one_third_last]Last column of content.[/one_third_last]\r\n-->\r\n\r\n[tabs]\r\n	[tab title=\"Site Management\"]\r\n<h3>Site Managment</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one Administration Panel with ability to share as much or as little information as needed</li>\r\n<li>Administration Permission System Roles and Users</li>\r\n<li>Web Services API for easy integration between Magento and any third-party application</li>\r\n<li>Fully 100% customizable design using templates</li>\r\n<li>Customer Groups</li>\r\n<li>One-Click Upgrades</li>\r\n<li>Content Management System for Informational Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n<h3>Analytics and reporting</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n <li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"SEO, Marketing Promotions and Tools\"]\r\n<h3>Search Engine Optimisation</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>100% Search Engine Friendly</li>\r\n<li>Google Site Map</li>\r\n<li>Search Engine Friendly URL’s</li>\r\n<li>URL Rewrites give full control of URL’s</li>\r\n<li>Meta-information for products and categories</li>\r\n<li>Auto-generated Site Map for display on site</li>\r\n<li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Marketing Promotions and Tools</h3>\r\n	<ul>\r\n<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Checkout, Payment and Shipping\"]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n<h3>Orders</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n<h3>Checkout, Payment and Shipping</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Checks/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\n<li>Shopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Customer\"]\r\n<h3>Customer Service</h3> \r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Contact Us form</li>\r\n<li>Feature-rich Customer Accounts</li>\r\n<li>Order History with Status Updates</li>\r\n<li>Order Tracking from Account</li>\r\n<li>Password Reset email from front-end and admin panel</li>\r\n<li>Order and Account Update Emails</li>\r\n<li>Customizable Order Emails</li>\r\n<li>Create and Edit Orders from the Admin Panel</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Customer Accounts</h3> \r\n	<ul>\r\n		<li>Order status and history</li>\r\n<li>Re-orders from account</li>\r\n<li>Recently ordered items</li>\r\n<li>Address Book with unlimited addresses</li>\r\n<li>Default Billing and Shipping addresses</li>\r\n<li>Wishlist with ability to add comments</li>\r\n<li>Email or Send RSS feed of Wishlist</li>\r\n<li>Newsletter Subscription management</li>\r\n<li>Product Reviews submitted</li>\r\n<li>Product Tags submitted</li>\r\n<li>Downloadable/Digital Products<li>\r\n<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Management\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Inventory Management with Backordered items, Minimum and Maximum quantities</li>\r\n<li>Batch Import and Export of catalog</li>\r\n<li>Batch Updates to products in admin panel</li>\r\n<li>Google Base Integration</li>\r\n<li>Simple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products</li>\r\n<li>Virtual Products</li>\r\n<li>Downloadable/Digital Products</li>\r\n<li>Customer Personalized Products - upload text for embroidery, monogramming, etc.</li>\r\n<li>Tax Rates per location, customer group and product type</li>\r\n<li>Attribute Sets for quick product creation of different item types</li>\r\n<li>Create Store-specific attributes on the fly</li>\r\n<li>Media Manager with automatic image resizing and watermarking</li>\r\n<li>Advanced Pricing Rules and support for Special Prices (see marketing tools)</li>\r\n<li>Search Results rewrites and redirects</li>\r\n<li>Approve, Edit and Delete Product Tags</li>\r\n<li>Approve, Edit and Delete Product Reviews</li>\r\n<li>RSS feed for Low Inventory Alerts</li>\r\n<li>Customer Personalized Products - Upload text for embroidery, monogramming, etc. (this one is already there, but want to have the following shown after it)</li>\r\n<li>Customer Personalized Products – Upload Image</li>\r\n<li>Customer Personalized Products – Select Date/Time options for products</li>\r\n<li>Customer Sorting – Define Attributes for Customer Sorting on category (price, brand, etc.)</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Product Browsing\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Multiple Images Per Product</li>\r\n<li>Product Image Zoom-in Capability</li>\r\n<li>Product Reviews</li>\r\n<li>Related Products</li>\r\n<li>Stock Availability</li>\r\n<li>Multi-Tier Pricing Upsell</li>\r\n<li>Product Option Selection</li>\r\n<li>Grouped Products View</li>\r\n<li>Add to Wishlist</li>\r\n<li>Send to a Friend with Email</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Browsing\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Layered / Faceted Navigation for filtering of products in categories</li>\r\n<li>Layered / Faceted Navigation for filtering of products in search results</li>\r\n<li>Flat Catalog Module for Improved Performance with large catalogs</li>\r\n<li>Static Block tool to create category landing pages</li>\r\n<li>Ability to assign designs on category and product level (unique design per product/category)</li>\r\n<li>Configurable search with auto-suggested terms</li>\r\n<li>Recently viewed products</li>\r\n<li>Product comparisons</li>\r\n<li>Recently compared products</li>\r\n<li>Cross-sells, Up-sells and Related Items</li>\r\n<li>Popular Search Terms Cloud</li>\r\n<li>Filter by Product Tags</li>\r\n<li>Product Reviews</li>\r\n<li>Product listing in grid or list format</li>\r\n<li>Breadcrumbs</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]\r\n','WebShop 3.0 Feature List','','inherit','closed','closed','','193-revision-46','','','2011-07-15 11:49:39','2011-07-15 11:49:39','',193,'http://bestecommerce-uk.com/2011/07/193-revision-46/',0,'revision','',0),(242,1,'2011-07-15 11:53:59','2011-07-15 11:53:59','<!-- [one_third]First column of content.[/one_third]\r\n[one_third]Second column of content.[/one_third]\r\n[one_third_last]Last column of content.[/one_third_last]\r\n-->\r\n\r\n[tabs]\r\n	[tab title=\"Site Management\"]\r\n<h3>Site Managment</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one Administration Panel with ability to share as much or as little information as needed</li>\r\n<li>Administration Permission System Roles and Users</li>\r\n<li>Web Services API for easy integration between Magento and any third-party application</li>\r\n<li>Fully 100% customizable design using templates</li>\r\n<li>Customer Groups</li>\r\n<li>One-Click Upgrades</li>\r\n<li>Content Management System for Informational Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n<h3>Analytics and reporting</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n <li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"SEO, Marketing Promotions and Tools\"]\r\n<h3>Search Engine Optimisation</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>100% Search Engine Friendly</li>\r\n<li>Google Site Map</li>\r\n<li>Search Engine Friendly URL’s</li>\r\n<li>URL Rewrites give full control of URL’s</li>\r\n<li>Meta-information for products and categories</li>\r\n<li>Auto-generated Site Map for display on site</li>\r\n<li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Marketing Promotions and Tools</h3>\r\n	<ul>\r\n<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n<h3>Orders</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n<h3>Checkout, Payment and Shipping</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Checks/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\n<li>Shopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Customer\"]\r\n<h3>Customer Service</h3> \r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Contact Us form</li>\r\n<li>Feature-rich Customer Accounts</li>\r\n<li>Order History with Status Updates</li>\r\n<li>Order Tracking from Account</li>\r\n<li>Password Reset email from front-end and admin panel</li>\r\n<li>Order and Account Update Emails</li>\r\n<li>Customizable Order Emails</li>\r\n<li>Create and Edit Orders from the Admin Panel</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Customer Accounts</h3> \r\n	<ul>\r\n		<li>Order status and history</li>\r\n<li>Re-orders from account</li>\r\n<li>Recently ordered items</li>\r\n<li>Address Book with unlimited addresses</li>\r\n<li>Default Billing and Shipping addresses</li>\r\n<li>Wishlist with ability to add comments</li>\r\n<li>Email or Send RSS feed of Wishlist</li>\r\n<li>Newsletter Subscription management</li>\r\n<li>Product Reviews submitted</li>\r\n<li>Product Tags submitted</li>\r\n<li>Downloadable/Digital Products<li>\r\n<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Management\"]\r\n<h3>Catalog Management</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Inventory Management with Backordered items, Minimum and Maximum quantities</li>\r\n<li>Batch Import and Export of catalog</li>\r\n<li>Batch Updates to products in admin panel</li>\r\n<li>Google Base Integration</li>\r\n<li>Simple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products</li>\r\n<li>Virtual Products</li>\r\n<li>Downloadable/Digital Products</li>\r\n<li>Customer Personalized Products - upload text for embroidery, monogramming, etc.</li>\r\n<li>Tax Rates per location, customer group and product type</li>\r\n<li>Attribute Sets for quick product creation of different item types</li>\r\n<li>Create Store-specific attributes on the fly</li>\r\n<li>Media Manager with automatic image resizing and watermarking</li>\r\n<li>Advanced Pricing Rules and support for Special Prices (see marketing tools)</li>\r\n<li>Search Results rewrites and redirects</li>\r\n<li>Approve, Edit and Delete Product Tags</li>\r\n<li>Approve, Edit and Delete Product Reviews</li>\r\n<li>RSS feed for Low Inventory Alerts</li>\r\n<li>Customer Personalized Products - Upload text for embroidery, monogramming, etc. (this one is already there, but want to have the following shown after it)</li>\r\n<li>Customer Personalized Products – Upload Image</li>\r\n<li>Customer Personalized Products – Select Date/Time options for products</li>\r\n<li>Customer Sorting – Define Attributes for Customer Sorting on category (price, brand, etc.)</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Product Browsing\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Multiple Images Per Product</li>\r\n<li>Product Image Zoom-in Capability</li>\r\n<li>Product Reviews</li>\r\n<li>Related Products</li>\r\n<li>Stock Availability</li>\r\n<li>Multi-Tier Pricing Upsell</li>\r\n<li>Product Option Selection</li>\r\n<li>Grouped Products View</li>\r\n<li>Add to Wishlist</li>\r\n<li>Send to a Friend with Email</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Browsing\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Layered / Faceted Navigation for filtering of products in categories</li>\r\n<li>Layered / Faceted Navigation for filtering of products in search results</li>\r\n<li>Flat Catalog Module for Improved Performance with large catalogs</li>\r\n<li>Static Block tool to create category landing pages</li>\r\n<li>Ability to assign designs on category and product level (unique design per product/category)</li>\r\n<li>Configurable search with auto-suggested terms</li>\r\n<li>Recently viewed products</li>\r\n<li>Product comparisons</li>\r\n<li>Recently compared products</li>\r\n<li>Cross-sells, Up-sells and Related Items</li>\r\n<li>Popular Search Terms Cloud</li>\r\n<li>Filter by Product Tags</li>\r\n<li>Product Reviews</li>\r\n<li>Product listing in grid or list format</li>\r\n<li>Breadcrumbs</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]\r\n','WebShop 3.0 Feature List','','inherit','closed','closed','','193-revision-48','','','2011-07-15 11:53:59','2011-07-15 11:53:59','',193,'http://bestecommerce-uk.com/2011/07/193-revision-48/',0,'revision','',0),(323,1,'2011-07-18 13:32:10','2011-07-18 13:32:10','<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>Our entry level product for the SME\'s and growing companies, WebShop 3.0 Lite provides a high level of function across the board.</p><p>Supporting advanced functions from multi-tiered pricing structures to integration with Amazon and eBay, the pro system is the benchmark for growing and established High Street brand retailers</p> \r\n<h2>£999 + £60/month   </h2>\r\n<a href=\"/about-us\" class=\"btn impactBtn\"><span>Add to Cart/Sign-Up</span></a><br /><br /><br />\r\n[button_link url=\"webshop-3-0-feature-list\" style=\"medium blue\"]View Webshop 3.0 functionality[/button_link]\r\n[button_link url=\"http://www.webdesign-uk.org/webshop-3-0-feature-list/\" style=\"medium blue\"]Webshop 3.0 functionality.pdf[/button_link]<br /><br /><br />\r\n\r\n</div></div>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n\r\n</div></div>\r\n\r\n\r\n<!--[tabs]\r\n	[tab title=\"Site Management\"]\r\n<h3>Site Management</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\r\n<li>Administration of permissions, system roles and users</li>\r\n<li>Web Services API for easy integration between Magento and any third-party application</li>\r\n<li>Fully 100% customizable design using templates</li>\r\n<li>Customer Groups</li>\r\n<li>One-Click Upgrades</li>\r\n<li>Content Management System for Informational Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n<h3>Analytics and reporting</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n <li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"SEO, Marketing Promotions and Tools\"]\r\n<h3>Search Engine Optimisation</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>100% Search Engine Friendly</li>\r\n<li>Google Site Map</li>\r\n<li>Search Engine Friendly URL’s</li>\r\n<li>URL Rewrites give full control of URL’s</li>\r\n<li>Meta-information for products and categories</li>\r\n<li>Auto-generated Site Map for display on site</li>\r\n<li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Marketing Promotions and Tools</h3>\r\n	<ul>\r\n<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n<h3>Orders</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n<h3>Checkout, Payment and Shipping</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Cheques/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\n<li>Shopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Customer\"]\r\n<h3>Customer Service</h3> \r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Contact Us form</li>\r\n<li>Feature-rich Customer Accounts</li>\r\n<li>Order History with Status Updates</li>\r\n<li>Order Tracking from Account</li>\r\n<li>Password Reset email from front-end and admin panel</li>\r\n<li>Order and Account Update Emails</li>\r\n<li>Customizable Order Emails</li>\r\n<li>Create and Edit Orders from the Admin Panel</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Customer Accounts</h3> \r\n	<ul>\r\n		<li>Order status and history</li>\r\n<li>Re-orders from account</li>\r\n<li>Recently ordered items</li>\r\n<li>Address Book with unlimited addresses</li>\r\n<li>Default Billing and Shipping addresses</li>\r\n<li>Wishlist with ability to add comments</li>\r\n<li>Email or Send RSS feed of Wishlist</li>\r\n<li>Newsletter Subscription management</li>\r\n<li>Product Reviews submitted</li>\r\n<li>Product Tags submitted</li>\r\n<li>Downloadable/Digital Products<li>\r\n<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Management & Browsing\"]\r\n<h3>Catalog Management</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Inventory Management with Backordered items, Minimum and Maximum quantities</li>\r\n<li>Batch Import and Export of catalog</li>\r\n<li>Batch Updates to products in admin panel</li>\r\n<li>Google Base Integration</li>\r\n<li>Simple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products</li>\r\n<li>Virtual Products</li>\r\n<li>Downloadable/Digital Products</li>\r\n<li>Customer Personalized Products - upload text for embroidery, monogramming, etc.</li>\r\n<li>Tax Rates per location, customer group and product type</li>\r\n<li>Attribute Sets for quick product creation of different item types</li>\r\n<li>Create Store-specific attributes on the fly</li>\r\n<li>Media Manager with automatic image resizing and watermarking</li>\r\n<li>Advanced Pricing Rules and support for Special Prices (see marketing tools)</li>\r\n<li>Search Results rewrites and redirects</li>\r\n<li>Approve, Edit and Delete Product Tags</li>\r\n<li>Approve, Edit and Delete Product Reviews</li>\r\n<li>RSS feed for Low Inventory Alerts</li>\r\n<li>Customer Personalized Products - Upload text for embroidery, monogramming, etc. (this one is already there, but want to have the following shown after it)</li>\r\n<li>Customer Personalized Products – Upload Image</li>\r\n<li>Customer Personalized Products – Select Date/Time options for products</li>\r\n<li>Customer Sorting – Define Attributes for Customer Sorting on category (price, brand, etc.)</li>\r\n			</ul>\r\n[/bullet_list]\r\n<h3>Catalog Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Layered / Faceted Navigation for filtering of products in categories</li>\r\n<li>Layered / Faceted Navigation for filtering of products in search results</li>\r\n<li>Flat Catalog Module for Improved Performance with large catalogs</li>\r\n<li>Static Block tool to create category landing pages</li>\r\n<li>Ability to assign designs on category and product level (unique design per product/category)</li>\r\n<li>Configurable search with auto-suggested terms</li>\r\n<li>Recently viewed products</li>\r\n<li>Product comparisons</li>\r\n<li>Recently compared products</li>\r\n<li>Cross-sells, Up-sells and Related Items</li>\r\n<li>Popular Search Terms Cloud</li>\r\n<li>Filter by Product Tags</li>\r\n<li>Product Reviews</li>\r\n<li>Product listing in grid or list format</li>\r\n<li>Breadcrumbs</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Product Browsing\"]\r\n<h3>Product Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Multiple Images Per Product</li>\r\n<li>Product Image Zoom-in Capability</li>\r\n<li>Product Reviews</li>\r\n<li>Related Products</li>\r\n<li>Stock Availability</li>\r\n<li>Multi-Tier Pricing Upsell</li>\r\n<li>Product Option Selection</li>\r\n<li>Grouped Products View</li>\r\n<li>Add to Wishlist</li>\r\n<li>Send to a Friend with Email</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]-->\r\n\r\n\r\n\r\n\r\n','eCommerce WebShop Lite','','inherit','closed','closed','','156-revision-27','','','2011-07-18 13:32:10','2011-07-18 13:32:10','',156,'http://bestecommerce-uk.com/2011/07/156-revision-27/',0,'revision','',0),(243,1,'2011-07-15 11:56:40','2011-07-15 11:56:40','<!-- [one_third]First column of content.[/one_third]\r\n[one_third]Second column of content.[/one_third]\r\n[one_third_last]Last column of content.[/one_third_last]\r\n-->\r\n\r\n[tabs]\r\n	[tab title=\"Site Management\"]\r\n<h3>Site Managment</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one Administration Panel with ability to share as much or as little information as needed</li>\r\n<li>Administration Permission System Roles and Users</li>\r\n<li>Web Services API for easy integration between Magento and any third-party application</li>\r\n<li>Fully 100% customizable design using templates</li>\r\n<li>Customer Groups</li>\r\n<li>One-Click Upgrades</li>\r\n<li>Content Management System for Informational Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n<h3>Analytics and reporting</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n <li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"SEO, Marketing Promotions and Tools\"]\r\n<h3>Search Engine Optimisation</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>100% Search Engine Friendly</li>\r\n<li>Google Site Map</li>\r\n<li>Search Engine Friendly URL’s</li>\r\n<li>URL Rewrites give full control of URL’s</li>\r\n<li>Meta-information for products and categories</li>\r\n<li>Auto-generated Site Map for display on site</li>\r\n<li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Marketing Promotions and Tools</h3>\r\n	<ul>\r\n<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n<h3>Orders</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n<h3>Checkout, Payment and Shipping</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Checks/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\n<li>Shopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Customer\"]\r\n<h3>Customer Service</h3> \r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Contact Us form</li>\r\n<li>Feature-rich Customer Accounts</li>\r\n<li>Order History with Status Updates</li>\r\n<li>Order Tracking from Account</li>\r\n<li>Password Reset email from front-end and admin panel</li>\r\n<li>Order and Account Update Emails</li>\r\n<li>Customizable Order Emails</li>\r\n<li>Create and Edit Orders from the Admin Panel</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Customer Accounts</h3> \r\n	<ul>\r\n		<li>Order status and history</li>\r\n<li>Re-orders from account</li>\r\n<li>Recently ordered items</li>\r\n<li>Address Book with unlimited addresses</li>\r\n<li>Default Billing and Shipping addresses</li>\r\n<li>Wishlist with ability to add comments</li>\r\n<li>Email or Send RSS feed of Wishlist</li>\r\n<li>Newsletter Subscription management</li>\r\n<li>Product Reviews submitted</li>\r\n<li>Product Tags submitted</li>\r\n<li>Downloadable/Digital Products<li>\r\n<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog & Product Management\"]\r\n<h3>Catalog Management</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Inventory Management with Backordered items, Minimum and Maximum quantities</li>\r\n<li>Batch Import and Export of catalog</li>\r\n<li>Batch Updates to products in admin panel</li>\r\n<li>Google Base Integration</li>\r\n<li>Simple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products</li>\r\n<li>Virtual Products</li>\r\n<li>Downloadable/Digital Products</li>\r\n<li>Customer Personalized Products - upload text for embroidery, monogramming, etc.</li>\r\n<li>Tax Rates per location, customer group and product type</li>\r\n<li>Attribute Sets for quick product creation of different item types</li>\r\n<li>Create Store-specific attributes on the fly</li>\r\n<li>Media Manager with automatic image resizing and watermarking</li>\r\n<li>Advanced Pricing Rules and support for Special Prices (see marketing tools)</li>\r\n<li>Search Results rewrites and redirects</li>\r\n<li>Approve, Edit and Delete Product Tags</li>\r\n<li>Approve, Edit and Delete Product Reviews</li>\r\n<li>RSS feed for Low Inventory Alerts</li>\r\n<li>Customer Personalized Products - Upload text for embroidery, monogramming, etc. (this one is already there, but want to have the following shown after it)</li>\r\n<li>Customer Personalized Products – Upload Image</li>\r\n<li>Customer Personalized Products – Select Date/Time options for products</li>\r\n<li>Customer Sorting – Define Attributes for Customer Sorting on category (price, brand, etc.)</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n\r\n<h3>Product Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Multiple Images Per Product</li>\r\n<li>Product Image Zoom-in Capability</li>\r\n<li>Product Reviews</li>\r\n<li>Related Products</li>\r\n<li>Stock Availability</li>\r\n<li>Multi-Tier Pricing Upsell</li>\r\n<li>Product Option Selection</li>\r\n<li>Grouped Products View</li>\r\n<li>Add to Wishlist</li>\r\n<li>Send to a Friend with Email</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Product Browsing\"]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Catalog Browsing\"]\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Layered / Faceted Navigation for filtering of products in categories</li>\r\n<li>Layered / Faceted Navigation for filtering of products in search results</li>\r\n<li>Flat Catalog Module for Improved Performance with large catalogs</li>\r\n<li>Static Block tool to create category landing pages</li>\r\n<li>Ability to assign designs on category and product level (unique design per product/category)</li>\r\n<li>Configurable search with auto-suggested terms</li>\r\n<li>Recently viewed products</li>\r\n<li>Product comparisons</li>\r\n<li>Recently compared products</li>\r\n<li>Cross-sells, Up-sells and Related Items</li>\r\n<li>Popular Search Terms Cloud</li>\r\n<li>Filter by Product Tags</li>\r\n<li>Product Reviews</li>\r\n<li>Product listing in grid or list format</li>\r\n<li>Breadcrumbs</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]\r\n','WebShop 3.0 Feature List','','inherit','closed','closed','','193-revision-49','','','2011-07-15 11:56:40','2011-07-15 11:56:40','',193,'http://bestecommerce-uk.com/2011/07/193-revision-49/',0,'revision','',0),(244,1,'2011-07-15 11:58:36','2011-07-15 11:58:36','<!-- [one_third]First column of content.[/one_third]\r\n[one_third]Second column of content.[/one_third]\r\n[one_third_last]Last column of content.[/one_third_last]\r\n-->\r\n\r\n[tabs]\r\n	[tab title=\"Site Management\"]\r\n<h3>Site Managment</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one Administration Panel with ability to share as much or as little information as needed</li>\r\n<li>Administration Permission System Roles and Users</li>\r\n<li>Web Services API for easy integration between Magento and any third-party application</li>\r\n<li>Fully 100% customizable design using templates</li>\r\n<li>Customer Groups</li>\r\n<li>One-Click Upgrades</li>\r\n<li>Content Management System for Informational Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n<h3>Analytics and reporting</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n <li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"SEO, Marketing Promotions and Tools\"]\r\n<h3>Search Engine Optimisation</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>100% Search Engine Friendly</li>\r\n<li>Google Site Map</li>\r\n<li>Search Engine Friendly URL’s</li>\r\n<li>URL Rewrites give full control of URL’s</li>\r\n<li>Meta-information for products and categories</li>\r\n<li>Auto-generated Site Map for display on site</li>\r\n<li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Marketing Promotions and Tools</h3>\r\n	<ul>\r\n<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n<h3>Orders</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n<h3>Checkout, Payment and Shipping</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Checks/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\n<li>Shopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Customer\"]\r\n<h3>Customer Service</h3> \r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Contact Us form</li>\r\n<li>Feature-rich Customer Accounts</li>\r\n<li>Order History with Status Updates</li>\r\n<li>Order Tracking from Account</li>\r\n<li>Password Reset email from front-end and admin panel</li>\r\n<li>Order and Account Update Emails</li>\r\n<li>Customizable Order Emails</li>\r\n<li>Create and Edit Orders from the Admin Panel</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Customer Accounts</h3> \r\n	<ul>\r\n		<li>Order status and history</li>\r\n<li>Re-orders from account</li>\r\n<li>Recently ordered items</li>\r\n<li>Address Book with unlimited addresses</li>\r\n<li>Default Billing and Shipping addresses</li>\r\n<li>Wishlist with ability to add comments</li>\r\n<li>Email or Send RSS feed of Wishlist</li>\r\n<li>Newsletter Subscription management</li>\r\n<li>Product Reviews submitted</li>\r\n<li>Product Tags submitted</li>\r\n<li>Downloadable/Digital Products<li>\r\n<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog & Product Management\"]\r\n<h3>Catalog Management</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Inventory Management with Backordered items, Minimum and Maximum quantities</li>\r\n<li>Batch Import and Export of catalog</li>\r\n<li>Batch Updates to products in admin panel</li>\r\n<li>Google Base Integration</li>\r\n<li>Simple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products</li>\r\n<li>Virtual Products</li>\r\n<li>Downloadable/Digital Products</li>\r\n<li>Customer Personalized Products - upload text for embroidery, monogramming, etc.</li>\r\n<li>Tax Rates per location, customer group and product type</li>\r\n<li>Attribute Sets for quick product creation of different item types</li>\r\n<li>Create Store-specific attributes on the fly</li>\r\n<li>Media Manager with automatic image resizing and watermarking</li>\r\n<li>Advanced Pricing Rules and support for Special Prices (see marketing tools)</li>\r\n<li>Search Results rewrites and redirects</li>\r\n<li>Approve, Edit and Delete Product Tags</li>\r\n<li>Approve, Edit and Delete Product Reviews</li>\r\n<li>RSS feed for Low Inventory Alerts</li>\r\n<li>Customer Personalized Products - Upload text for embroidery, monogramming, etc. (this one is already there, but want to have the following shown after it)</li>\r\n<li>Customer Personalized Products – Upload Image</li>\r\n<li>Customer Personalized Products – Select Date/Time options for products</li>\r\n<li>Customer Sorting – Define Attributes for Customer Sorting on category (price, brand, etc.)</li>\r\n			</ul>\r\n[/bullet_list]\r\n<h3>Catalog Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Layered / Faceted Navigation for filtering of products in categories</li>\r\n<li>Layered / Faceted Navigation for filtering of products in search results</li>\r\n<li>Flat Catalog Module for Improved Performance with large catalogs</li>\r\n<li>Static Block tool to create category landing pages</li>\r\n<li>Ability to assign designs on category and product level (unique design per product/category)</li>\r\n<li>Configurable search with auto-suggested terms</li>\r\n<li>Recently viewed products</li>\r\n<li>Product comparisons</li>\r\n<li>Recently compared products</li>\r\n<li>Cross-sells, Up-sells and Related Items</li>\r\n<li>Popular Search Terms Cloud</li>\r\n<li>Filter by Product Tags</li>\r\n<li>Product Reviews</li>\r\n<li>Product listing in grid or list format</li>\r\n<li>Breadcrumbs</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n<h3>Product Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Multiple Images Per Product</li>\r\n<li>Product Image Zoom-in Capability</li>\r\n<li>Product Reviews</li>\r\n<li>Related Products</li>\r\n<li>Stock Availability</li>\r\n<li>Multi-Tier Pricing Upsell</li>\r\n<li>Product Option Selection</li>\r\n<li>Grouped Products View</li>\r\n<li>Add to Wishlist</li>\r\n<li>Send to a Friend with Email</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Catalog Browsing\"]\r\n\r\n[/tab]\r\n\r\n[/tabs]\r\n','WebShop 3.0 Feature List','','inherit','closed','closed','','193-revision-50','','','2011-07-15 11:58:36','2011-07-15 11:58:36','',193,'http://bestecommerce-uk.com/2011/07/193-revision-50/',0,'revision','',0),(245,1,'2011-07-15 11:59:49','2011-07-15 11:59:49','<!-- [one_third]First column of content.[/one_third]\r\n[one_third]Second column of content.[/one_third]\r\n[one_third_last]Last column of content.[/one_third_last]\r\n-->\r\n\r\n[tabs]\r\n	[tab title=\"Site Management\"]\r\n<h3>Site Management</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one Administration Panel with ability to share as much or as little information as needed</li>\r\n<li>Administration Permission System Roles and Users</li>\r\n<li>Web Services API for easy integration between Magento and any third-party application</li>\r\n<li>Fully 100% customizable design using templates</li>\r\n<li>Customer Groups</li>\r\n<li>One-Click Upgrades</li>\r\n<li>Content Management System for Informational Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n<h3>Analytics and reporting</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n <li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"SEO, Marketing Promotions and Tools\"]\r\n<h3>Search Engine Optimisation</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>100% Search Engine Friendly</li>\r\n<li>Google Site Map</li>\r\n<li>Search Engine Friendly URL’s</li>\r\n<li>URL Rewrites give full control of URL’s</li>\r\n<li>Meta-information for products and categories</li>\r\n<li>Auto-generated Site Map for display on site</li>\r\n<li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Marketing Promotions and Tools</h3>\r\n	<ul>\r\n<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n<h3>Orders</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n<h3>Checkout, Payment and Shipping</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Checks/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\n<li>Shopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Customer\"]\r\n<h3>Customer Service</h3> \r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Contact Us form</li>\r\n<li>Feature-rich Customer Accounts</li>\r\n<li>Order History with Status Updates</li>\r\n<li>Order Tracking from Account</li>\r\n<li>Password Reset email from front-end and admin panel</li>\r\n<li>Order and Account Update Emails</li>\r\n<li>Customizable Order Emails</li>\r\n<li>Create and Edit Orders from the Admin Panel</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Customer Accounts</h3> \r\n	<ul>\r\n		<li>Order status and history</li>\r\n<li>Re-orders from account</li>\r\n<li>Recently ordered items</li>\r\n<li>Address Book with unlimited addresses</li>\r\n<li>Default Billing and Shipping addresses</li>\r\n<li>Wishlist with ability to add comments</li>\r\n<li>Email or Send RSS feed of Wishlist</li>\r\n<li>Newsletter Subscription management</li>\r\n<li>Product Reviews submitted</li>\r\n<li>Product Tags submitted</li>\r\n<li>Downloadable/Digital Products<li>\r\n<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog & Product Management\"]\r\n<h3>Catalog Management</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Inventory Management with Backordered items, Minimum and Maximum quantities</li>\r\n<li>Batch Import and Export of catalog</li>\r\n<li>Batch Updates to products in admin panel</li>\r\n<li>Google Base Integration</li>\r\n<li>Simple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products</li>\r\n<li>Virtual Products</li>\r\n<li>Downloadable/Digital Products</li>\r\n<li>Customer Personalized Products - upload text for embroidery, monogramming, etc.</li>\r\n<li>Tax Rates per location, customer group and product type</li>\r\n<li>Attribute Sets for quick product creation of different item types</li>\r\n<li>Create Store-specific attributes on the fly</li>\r\n<li>Media Manager with automatic image resizing and watermarking</li>\r\n<li>Advanced Pricing Rules and support for Special Prices (see marketing tools)</li>\r\n<li>Search Results rewrites and redirects</li>\r\n<li>Approve, Edit and Delete Product Tags</li>\r\n<li>Approve, Edit and Delete Product Reviews</li>\r\n<li>RSS feed for Low Inventory Alerts</li>\r\n<li>Customer Personalized Products - Upload text for embroidery, monogramming, etc. (this one is already there, but want to have the following shown after it)</li>\r\n<li>Customer Personalized Products – Upload Image</li>\r\n<li>Customer Personalized Products – Select Date/Time options for products</li>\r\n<li>Customer Sorting – Define Attributes for Customer Sorting on category (price, brand, etc.)</li>\r\n			</ul>\r\n[/bullet_list]\r\n<h3>Catalog Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Layered / Faceted Navigation for filtering of products in categories</li>\r\n<li>Layered / Faceted Navigation for filtering of products in search results</li>\r\n<li>Flat Catalog Module for Improved Performance with large catalogs</li>\r\n<li>Static Block tool to create category landing pages</li>\r\n<li>Ability to assign designs on category and product level (unique design per product/category)</li>\r\n<li>Configurable search with auto-suggested terms</li>\r\n<li>Recently viewed products</li>\r\n<li>Product comparisons</li>\r\n<li>Recently compared products</li>\r\n<li>Cross-sells, Up-sells and Related Items</li>\r\n<li>Popular Search Terms Cloud</li>\r\n<li>Filter by Product Tags</li>\r\n<li>Product Reviews</li>\r\n<li>Product listing in grid or list format</li>\r\n<li>Breadcrumbs</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n<h3>Product Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Multiple Images Per Product</li>\r\n<li>Product Image Zoom-in Capability</li>\r\n<li>Product Reviews</li>\r\n<li>Related Products</li>\r\n<li>Stock Availability</li>\r\n<li>Multi-Tier Pricing Upsell</li>\r\n<li>Product Option Selection</li>\r\n<li>Grouped Products View</li>\r\n<li>Add to Wishlist</li>\r\n<li>Send to a Friend with Email</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Catalog Browsing\"]\r\n\r\n[/tab]\r\n\r\n[/tabs]\r\n','WebShop 3.0 Feature List','','inherit','closed','closed','','193-revision-51','','','2011-07-15 11:59:49','2011-07-15 11:59:49','',193,'http://bestecommerce-uk.com/2011/07/193-revision-51/',0,'revision','',0),(247,1,'2011-07-15 12:02:53','2011-07-15 12:02:53','<!-- [one_third]First column of content.[/one_third]\r\n[one_third]Second column of content.[/one_third]\r\n[one_third_last]Last column of content.[/one_third_last]\r\n-->\r\n\r\n[tabs]\r\n	[tab title=\"Site Management\"]\r\n<h3>Site Management</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one Administration Panel with ability to share as much or as little information as needed</li>\r\n<li>Administration Permission System Roles and Users</li>\r\n<li>Web Services API for easy integration between Magento and any third-party application</li>\r\n<li>Fully 100% customizable design using templates</li>\r\n<li>Customer Groups</li>\r\n<li>One-Click Upgrades</li>\r\n<li>Content Management System for Informational Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n<h3>Analytics and reporting</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n <li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"SEO, Marketing Promotions and Tools\"]\r\n<h3>Search Engine Optimisation</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>100% Search Engine Friendly</li>\r\n<li>Google Site Map</li>\r\n<li>Search Engine Friendly URL’s</li>\r\n<li>URL Rewrites give full control of URL’s</li>\r\n<li>Meta-information for products and categories</li>\r\n<li>Auto-generated Site Map for display on site</li>\r\n<li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Marketing Promotions and Tools</h3>\r\n	<ul>\r\n<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n<h3>Orders</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n<h3>Checkout, Payment and Shipping</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Checks/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\n<li>Shopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Customer\"]\r\n<h3>Customer Service</h3> \r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Contact Us form</li>\r\n<li>Feature-rich Customer Accounts</li>\r\n<li>Order History with Status Updates</li>\r\n<li>Order Tracking from Account</li>\r\n<li>Password Reset email from front-end and admin panel</li>\r\n<li>Order and Account Update Emails</li>\r\n<li>Customizable Order Emails</li>\r\n<li>Create and Edit Orders from the Admin Panel</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Customer Accounts</h3> \r\n	<ul>\r\n		<li>Order status and history</li>\r\n<li>Re-orders from account</li>\r\n<li>Recently ordered items</li>\r\n<li>Address Book with unlimited addresses</li>\r\n<li>Default Billing and Shipping addresses</li>\r\n<li>Wishlist with ability to add comments</li>\r\n<li>Email or Send RSS feed of Wishlist</li>\r\n<li>Newsletter Subscription management</li>\r\n<li>Product Reviews submitted</li>\r\n<li>Product Tags submitted</li>\r\n<li>Downloadable/Digital Products<li>\r\n<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Management & Browsing\"]\r\n<h3>Catalog Management</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Inventory Management with Backordered items, Minimum and Maximum quantities</li>\r\n<li>Batch Import and Export of catalog</li>\r\n<li>Batch Updates to products in admin panel</li>\r\n<li>Google Base Integration</li>\r\n<li>Simple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products</li>\r\n<li>Virtual Products</li>\r\n<li>Downloadable/Digital Products</li>\r\n<li>Customer Personalized Products - upload text for embroidery, monogramming, etc.</li>\r\n<li>Tax Rates per location, customer group and product type</li>\r\n<li>Attribute Sets for quick product creation of different item types</li>\r\n<li>Create Store-specific attributes on the fly</li>\r\n<li>Media Manager with automatic image resizing and watermarking</li>\r\n<li>Advanced Pricing Rules and support for Special Prices (see marketing tools)</li>\r\n<li>Search Results rewrites and redirects</li>\r\n<li>Approve, Edit and Delete Product Tags</li>\r\n<li>Approve, Edit and Delete Product Reviews</li>\r\n<li>RSS feed for Low Inventory Alerts</li>\r\n<li>Customer Personalized Products - Upload text for embroidery, monogramming, etc. (this one is already there, but want to have the following shown after it)</li>\r\n<li>Customer Personalized Products – Upload Image</li>\r\n<li>Customer Personalized Products – Select Date/Time options for products</li>\r\n<li>Customer Sorting – Define Attributes for Customer Sorting on category (price, brand, etc.)</li>\r\n			</ul>\r\n[/bullet_list]\r\n<h3>Catalog Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Layered / Faceted Navigation for filtering of products in categories</li>\r\n<li>Layered / Faceted Navigation for filtering of products in search results</li>\r\n<li>Flat Catalog Module for Improved Performance with large catalogs</li>\r\n<li>Static Block tool to create category landing pages</li>\r\n<li>Ability to assign designs on category and product level (unique design per product/category)</li>\r\n<li>Configurable search with auto-suggested terms</li>\r\n<li>Recently viewed products</li>\r\n<li>Product comparisons</li>\r\n<li>Recently compared products</li>\r\n<li>Cross-sells, Up-sells and Related Items</li>\r\n<li>Popular Search Terms Cloud</li>\r\n<li>Filter by Product Tags</li>\r\n<li>Product Reviews</li>\r\n<li>Product listing in grid or list format</li>\r\n<li>Breadcrumbs</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Product Browsing\"]\r\n<h3>Product Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Multiple Images Per Product</li>\r\n<li>Product Image Zoom-in Capability</li>\r\n<li>Product Reviews</li>\r\n<li>Related Products</li>\r\n<li>Stock Availability</li>\r\n<li>Multi-Tier Pricing Upsell</li>\r\n<li>Product Option Selection</li>\r\n<li>Grouped Products View</li>\r\n<li>Add to Wishlist</li>\r\n<li>Send to a Friend with Email</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]\r\n','WebShop 3.0 Feature List','','inherit','closed','closed','','193-revision-53','','','2011-07-15 12:02:53','2011-07-15 12:02:53','',193,'http://bestecommerce-uk.com/2011/07/193-revision-53/',0,'revision','',0),(248,1,'2011-07-15 12:04:18','2011-07-15 12:04:18','<!-- [one_third]First column of content.[/one_third]\r\n[one_third]Second column of content.[/one_third]\r\n[one_third_last]Last column of content.[/one_third_last]\r\n-->\r\n\r\n[tabs]\r\n	[tab title=\"Site Management\"]\r\n<h3>Site Management</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one Administration Panel with ability to share as much or as little information as needed</li>\r\n<li>Administration Permission System Roles and Users</li>\r\n<li>Web Services API for easy integration between Magento and any third-party application</li>\r\n<li>Fully 100% customizable design using templates</li>\r\n<li>Customer Groups</li>\r\n<li>One-Click Upgrades</li>\r\n<li>Content Management System for Informational Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n<h3>Analytics and reporting</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n <li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"SEO, Marketing Promotions and Tools\"]\r\n<h3>Search Engine Optimisation</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>100% Search Engine Friendly</li>\r\n<li>Google Site Map</li>\r\n<li>Search Engine Friendly URL’s</li>\r\n<li>URL Rewrites give full control of URL’s</li>\r\n<li>Meta-information for products and categories</li>\r\n<li>Auto-generated Site Map for display on site</li>\r\n<li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Marketing Promotions and Tools</h3>\r\n	<ul>\r\n<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n<h3>Orders</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n<h3>Checkout, Payment and Shipping</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Cheques/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\n<li>Shopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Customer\"]\r\n<h3>Customer Service</h3> \r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Contact Us form</li>\r\n<li>Feature-rich Customer Accounts</li>\r\n<li>Order History with Status Updates</li>\r\n<li>Order Tracking from Account</li>\r\n<li>Password Reset email from front-end and admin panel</li>\r\n<li>Order and Account Update Emails</li>\r\n<li>Customizable Order Emails</li>\r\n<li>Create and Edit Orders from the Admin Panel</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Customer Accounts</h3> \r\n	<ul>\r\n		<li>Order status and history</li>\r\n<li>Re-orders from account</li>\r\n<li>Recently ordered items</li>\r\n<li>Address Book with unlimited addresses</li>\r\n<li>Default Billing and Shipping addresses</li>\r\n<li>Wishlist with ability to add comments</li>\r\n<li>Email or Send RSS feed of Wishlist</li>\r\n<li>Newsletter Subscription management</li>\r\n<li>Product Reviews submitted</li>\r\n<li>Product Tags submitted</li>\r\n<li>Downloadable/Digital Products<li>\r\n<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Management & Browsing\"]\r\n<h3>Catalog Management</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Inventory Management with Backordered items, Minimum and Maximum quantities</li>\r\n<li>Batch Import and Export of catalog</li>\r\n<li>Batch Updates to products in admin panel</li>\r\n<li>Google Base Integration</li>\r\n<li>Simple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products</li>\r\n<li>Virtual Products</li>\r\n<li>Downloadable/Digital Products</li>\r\n<li>Customer Personalized Products - upload text for embroidery, monogramming, etc.</li>\r\n<li>Tax Rates per location, customer group and product type</li>\r\n<li>Attribute Sets for quick product creation of different item types</li>\r\n<li>Create Store-specific attributes on the fly</li>\r\n<li>Media Manager with automatic image resizing and watermarking</li>\r\n<li>Advanced Pricing Rules and support for Special Prices (see marketing tools)</li>\r\n<li>Search Results rewrites and redirects</li>\r\n<li>Approve, Edit and Delete Product Tags</li>\r\n<li>Approve, Edit and Delete Product Reviews</li>\r\n<li>RSS feed for Low Inventory Alerts</li>\r\n<li>Customer Personalized Products - Upload text for embroidery, monogramming, etc. (this one is already there, but want to have the following shown after it)</li>\r\n<li>Customer Personalized Products – Upload Image</li>\r\n<li>Customer Personalized Products – Select Date/Time options for products</li>\r\n<li>Customer Sorting – Define Attributes for Customer Sorting on category (price, brand, etc.)</li>\r\n			</ul>\r\n[/bullet_list]\r\n<h3>Catalog Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Layered / Faceted Navigation for filtering of products in categories</li>\r\n<li>Layered / Faceted Navigation for filtering of products in search results</li>\r\n<li>Flat Catalog Module for Improved Performance with large catalogs</li>\r\n<li>Static Block tool to create category landing pages</li>\r\n<li>Ability to assign designs on category and product level (unique design per product/category)</li>\r\n<li>Configurable search with auto-suggested terms</li>\r\n<li>Recently viewed products</li>\r\n<li>Product comparisons</li>\r\n<li>Recently compared products</li>\r\n<li>Cross-sells, Up-sells and Related Items</li>\r\n<li>Popular Search Terms Cloud</li>\r\n<li>Filter by Product Tags</li>\r\n<li>Product Reviews</li>\r\n<li>Product listing in grid or list format</li>\r\n<li>Breadcrumbs</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Product Browsing\"]\r\n<h3>Product Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Multiple Images Per Product</li>\r\n<li>Product Image Zoom-in Capability</li>\r\n<li>Product Reviews</li>\r\n<li>Related Products</li>\r\n<li>Stock Availability</li>\r\n<li>Multi-Tier Pricing Upsell</li>\r\n<li>Product Option Selection</li>\r\n<li>Grouped Products View</li>\r\n<li>Add to Wishlist</li>\r\n<li>Send to a Friend with Email</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]\r\n','WebShop 3.0 Feature List','','inherit','closed','closed','','193-revision-54','','','2011-07-15 12:04:18','2011-07-15 12:04:18','',193,'http://bestecommerce-uk.com/2011/07/193-revision-54/',0,'revision','',0),(249,1,'2011-07-08 14:22:04','2011-07-08 14:22:04','Best eCommerce UK was formed in 2002 with the aim of providing eCommerce solutions and services to business with an emphasis on quality of products and great support.\r\n\r\nWith a growing base of loyal happy customers we feel we have achieved that aim and continue to hold good to those early business principles of supplying good, reliable systems and support to our customers.','About Us','','inherit','closed','closed','','12-revision-4','','','2011-07-08 14:22:04','2011-07-08 14:22:04','',12,'http://bestecommerce-uk.com/2011/07/12-revision-4/',0,'revision','',0),(250,1,'2011-07-08 15:33:12','2011-07-08 15:33:12','<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>Our entry level product for the SME\'s and growing companies, WebShop 3.0 Lite provides a high level of function across the board.</p><p>Supporting advanced functions from multi-tiered pricing structures to integration with Amazon and eBay, the pro system is the benchmark for growing and established High Street brand retailers</p> \r\n<h2>£999 + £60/month   </h2>\r\n<a href=\"/about-us\" class=\"btn impactBtn\"><span>Add to Cart/Sign-Up</span></a><br /><br /><br />\r\n\r\n</div></div>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n\r\n</div></div>\r\n[one_half_last] [/one_half_last]\r\n\r\n\r\n\r\n\r\n\r\n\r\n[tabs]\r\n	[tab title=\"Our Packages\"]<h3>Lorem ipsum dolor sit amet</h3> \r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" class=\"styled-image popup alignright\" title=\"Click me to enlarge!\" rel=\"tab-1\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" width=\"206\" height=\"117\" alt=\"Click me to enlarge!\" class=\"alignright\" /></a>\r\n<p>Consectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique. Quisque mattis elit eros, non facilisis sem. Cras a congue neque. In massa purus, ornare in sagittis id, accumsan ac nisl. Sed sit amet nulla ac dolor adipiscing.</p>[/tab]\r\n	[tab title=\"Our Capabilities\"][bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n	</ul>\r\n[/bullet_list][/tab]\r\n	[tab title=\"Our Support\"]Tab content...[/tab]\r\n[/tabs]','eCommerce WebShop Lite','','inherit','closed','closed','','156-revision-6','','','2011-07-08 15:33:12','2011-07-08 15:33:12','',156,'http://bestecommerce-uk.com/2011/07/156-revision-6/',0,'revision','',0),(581,1,'2011-11-24 09:40:01','2011-11-24 09:40:01','Our starter product for the SME\'s and growing companies, WebShop 3.0 Lite provides a high level of function across the board.\r\n\r\nSupporting advanced functions such as cross-selling and up-selling, as well as product attributes for size or colour variations, the system is well suited to small businesses selling on-line.<br /><br />\r\n&nbsp;\r\n<h2>Key Features</h2>\r\n[bullet_list icon=\"check\"]\r\n<ul>\r\n	<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\r\n	<li>Administration of permissions, system roles and users</li>\r\n	<li>Web Services API for easy integration with third-party applications</li>\r\n	<li>Fully 100% customizable design using templates, or bespoke design</li>\r\n	<li>Support for Customer Groups</li>\r\n	<li>Content Management System for General or Site Information Pages</li>\r\n	<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n</ul>\r\n[/bullet_list]\r\n<h3>£999 + £60/month</h3>\r\nIf you as interested in this product please use the button below to complete a contact form for a call back or call us directly to discuss your requirements.<br /><br />\r\n\r\n<a class=\"btn orange\" href=\"/contact-form-2\"><span>Contact Form</span></a>&nbsp;\r\n\r\n&nbsp;\r\n\r\n','eCommerce WebShop Lite','','inherit','closed','closed','','156-revision-67','','','2011-11-24 09:40:01','2011-11-24 09:40:01','',156,'http://bestecommerce-uk.com/2011/11/156-revision-67/',0,'revision','',0),(544,1,'2011-11-23 13:33:35','2011-11-23 13:33:35','SEO Package 1 is designed to help smaller businesses as well as those who are just getting starting out and may be on a tight budget. This package will increase search engine traffic to your website. It has been designed for those clients who really want to test the marketing benefits of SEO.\r\n\r\n<strong>On-page SEO:</strong>\r\n\r\n    * SEO Analysis & Review\r\n    * Optimisation of title, alt, header and meta tags\r\n    * Optimisation of site content to place targeted keyphrases within the content\r\n    * Craetion and installation of Robots.txt file\r\n    * Creation of HTML & XML Sitemap\r\n    * Submission of sitemap to Google, Yahoo & Bing\r\n\r\n<strong>Off-page SEO:</strong>\r\n\r\n    * 340 One-way themed links/month comprised of:\r\n    * 100 Guaranteed permanent one way article links from multiple Class C IP\'s (guaranteed links not submissions each month)\r\n    * 100 Social bookmarking links.\r\n    * 100 Inbound one way links from Press Release sites\r\n    * 40 inbound one way links from Blog sites\r\n\r\nPrice:   £300/month \r\n\r\n<a href=\"http://www.webdesign-uk.org/contact-form-2\">Contact us</a> the get started or just if you require more information.','SEO Package 1','','inherit','closed','closed','','523-revision-5','','','2011-11-23 13:33:35','2011-11-23 13:33:35','',523,'http://bestecommerce-uk.com/2011/11/523-revision-5/',0,'revision','',0),(463,1,'2011-11-22 12:21:54','2011-11-22 12:21:54','','advert-col-right','','inherit','closed','closed','','advert-col-right','','','2011-11-22 12:21:54','2011-11-22 12:21:54','',0,'http://bestecommerce-uk.com/wp-content/uploads/2011/11/advert-col-right.png',0,'attachment','image/png',0),(462,1,'2011-11-22 11:55:12','2011-11-22 11:55:12','<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>Our entry level product for the SME\'s and growing companies, WebShop 3.0 Lite provides a high level of function across the board.</p><p>Supporting advanced functions such as cross-selling and up-selling, as well as product attributes for size or colour variations, the system is well suited to small businesses selling on-line. </p>\r\n\r\n<h3>Key Features</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\r\n<li>Administration of permissions, system roles and users</li>\r\n<li>Web Services API for easy integration with third-party applications</li>\r\n<li>Fully 100% customizable design using templates, or bespoke design</li>\r\n<li>Support for Customer Groups</li>\r\n<li>Content Management System for General or Site Information Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n\r\n<h2>£999 + £60/month   </h2>\r\n<p>If you as interested in this product please use the button below to complete a contact form for a call back or call us directly to discuss your requirements.<p/>\r\n<a href=\"/contact-form-2\" class=\"btn impactBtn\"><span>Contact Form</span></a><br /><br /><br />\r\n[button_link url=\"webshop-3-0-feature-list\" style=\"medium blue\"]View Webshop 3.0 functionality[/button_link]\r\n\r\n\r\n\r\n\r\n</div></div>\r\n\r\n\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n\r\n</div></div>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n','eCommerce WebShop Lite','','inherit','closed','closed','','156-revision-55','','','2011-11-22 11:55:12','2011-11-22 11:55:12','',156,'http://bestecommerce-uk.com/2011/11/156-revision-55/',0,'revision','',0),(464,1,'2011-11-22 12:23:35','2011-11-22 12:23:35','','advert-col-right','','inherit','closed','closed','','advert-col-right-2','','','2011-11-22 12:23:35','2011-11-22 12:23:35','',156,'http://bestecommerce-uk.com/wp-content/uploads/2011/07/advert-col-right.png',0,'attachment','image/png',0),(465,1,'2011-10-14 14:00:44','2011-10-14 14:00:44','<h1>eCommerce WebShop 3.0 Standard</h1>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>WebShop 3.0 Standard provides a strong base from which to grow your presence on-line with unlimited products and categories and unrivalled ease of use.</p><p>Supporting advanced functions from weight based shipping, to managing stock and invoicing, the standard system is aimed at SME\'s, and growing on-line retailer seeking a site with professional design, functions and ease of use.</p> \r\n<h2>£1999 + £60/month   </h2>\r\n<p>If you as interested in this product please use the button below to complete a contact form for a call back or call us directly to discuss your requirements.<p/>\r\n<a href=\"/contact-form-2\" class=\"btn impactBtn\"><span>Contact Form</span></a><br /><br /><br />\r\n[button_link url=\"webshop-3-0-feature-list\" style=\"medium blue\"]View Webshop 3.0 functionality[/button_link]\r\n<!--[button_link url=\"http://www.webdesign-uk.org/wp-content/uploads/2011/09/Webshop_3.0_features_list.pdf\" style=\"medium blue\"]Webshop 3.0 functionality.pdf[/button_link]<br /><br /><br />-->\r\n\r\n</div></div>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n\r\n</div></div>\r\n[one_half_last] [/one_half_last]\r\n\r\n\r\n\r\n\r\n\r\n\r\n<!--[tabs]\r\n	[tab title=\"Our Packages\"]<h3>Lorem ipsum dolor sit amet</h3> \r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" class=\"styled-image popup alignright\" title=\"Click me to enlarge!\" rel=\"tab-1\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" width=\"206\" height=\"117\" alt=\"Click me to enlarge!\" class=\"alignright\" /></a>\r\n<p>Consectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique. Quisque mattis elit eros, non facilisis sem. Cras a congue neque. In massa purus, ornare in sagittis id, accumsan ac nisl. Sed sit amet nulla ac dolor adipiscing.</p>[/tab]\r\n	[tab title=\"Our Capabilities\"][bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n	</ul>\r\n[/bullet_list][/tab]\r\n	[tab title=\"Our Support\"]Tab content...[/tab]\r\n[/tabs]-->','eCommerce WebShop Standard','','inherit','closed','closed','','137-revision-8','','','2011-10-14 14:00:44','2011-10-14 14:00:44','',137,'http://bestecommerce-uk.com/2011/10/137-revision-8/',0,'revision','',0),(252,1,'2011-07-15 14:38:53','2011-07-15 14:38:53','<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>Our entry level product for the SME\'s and growing companies, WebShop 3.0 Lite provides a high level of function across the board.</p><p>Supporting advanced functions from multi-tiered pricing structures to integration with Amazon and eBay, the pro system is the benchmark for growing and established High Street brand retailers</p> \r\n<h2>£999 + £60/month   </h2>\r\n<a href=\"/about-us\" class=\"btn impactBtn\"><span>Add to Cart/Sign-Up</span></a><br /><br /><br />\r\n\r\n</div></div>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n\r\n</div></div>\r\n[one_half_last] [/one_half_last]\r\n\r\n[tabs]\r\n	[tab title=\"Site Management\"]\r\n<h3>Site Management</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\r\n<li>Administration of permissions, system roles and users</li>\r\n<li>Web Services API for easy integration between Magento and any third-party application</li>\r\n<li>Fully 100% customizable design using templates</li>\r\n<li>Customer Groups</li>\r\n<li>One-Click Upgrades</li>\r\n<li>Content Management System for Informational Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n<h3>Analytics and reporting</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n <li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"SEO, Marketing Promotions and Tools\"]\r\n<h3>Search Engine Optimisation</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>100% Search Engine Friendly</li>\r\n<li>Google Site Map</li>\r\n<li>Search Engine Friendly URL’s</li>\r\n<li>URL Rewrites give full control of URL’s</li>\r\n<li>Meta-information for products and categories</li>\r\n<li>Auto-generated Site Map for display on site</li>\r\n<li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Marketing Promotions and Tools</h3>\r\n	<ul>\r\n<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n<h3>Orders</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n<h3>Checkout, Payment and Shipping</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Cheques/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\n<li>Shopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Customer\"]\r\n<h3>Customer Service</h3> \r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Contact Us form</li>\r\n<li>Feature-rich Customer Accounts</li>\r\n<li>Order History with Status Updates</li>\r\n<li>Order Tracking from Account</li>\r\n<li>Password Reset email from front-end and admin panel</li>\r\n<li>Order and Account Update Emails</li>\r\n<li>Customizable Order Emails</li>\r\n<li>Create and Edit Orders from the Admin Panel</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Customer Accounts</h3> \r\n	<ul>\r\n		<li>Order status and history</li>\r\n<li>Re-orders from account</li>\r\n<li>Recently ordered items</li>\r\n<li>Address Book with unlimited addresses</li>\r\n<li>Default Billing and Shipping addresses</li>\r\n<li>Wishlist with ability to add comments</li>\r\n<li>Email or Send RSS feed of Wishlist</li>\r\n<li>Newsletter Subscription management</li>\r\n<li>Product Reviews submitted</li>\r\n<li>Product Tags submitted</li>\r\n<li>Downloadable/Digital Products<li>\r\n<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Management & Browsing\"]\r\n<h3>Catalog Management</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Inventory Management with Backordered items, Minimum and Maximum quantities</li>\r\n<li>Batch Import and Export of catalog</li>\r\n<li>Batch Updates to products in admin panel</li>\r\n<li>Google Base Integration</li>\r\n<li>Simple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products</li>\r\n<li>Virtual Products</li>\r\n<li>Downloadable/Digital Products</li>\r\n<li>Customer Personalized Products - upload text for embroidery, monogramming, etc.</li>\r\n<li>Tax Rates per location, customer group and product type</li>\r\n<li>Attribute Sets for quick product creation of different item types</li>\r\n<li>Create Store-specific attributes on the fly</li>\r\n<li>Media Manager with automatic image resizing and watermarking</li>\r\n<li>Advanced Pricing Rules and support for Special Prices (see marketing tools)</li>\r\n<li>Search Results rewrites and redirects</li>\r\n<li>Approve, Edit and Delete Product Tags</li>\r\n<li>Approve, Edit and Delete Product Reviews</li>\r\n<li>RSS feed for Low Inventory Alerts</li>\r\n<li>Customer Personalized Products - Upload text for embroidery, monogramming, etc. (this one is already there, but want to have the following shown after it)</li>\r\n<li>Customer Personalized Products – Upload Image</li>\r\n<li>Customer Personalized Products – Select Date/Time options for products</li>\r\n<li>Customer Sorting – Define Attributes for Customer Sorting on category (price, brand, etc.)</li>\r\n			</ul>\r\n[/bullet_list]\r\n<h3>Catalog Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Layered / Faceted Navigation for filtering of products in categories</li>\r\n<li>Layered / Faceted Navigation for filtering of products in search results</li>\r\n<li>Flat Catalog Module for Improved Performance with large catalogs</li>\r\n<li>Static Block tool to create category landing pages</li>\r\n<li>Ability to assign designs on category and product level (unique design per product/category)</li>\r\n<li>Configurable search with auto-suggested terms</li>\r\n<li>Recently viewed products</li>\r\n<li>Product comparisons</li>\r\n<li>Recently compared products</li>\r\n<li>Cross-sells, Up-sells and Related Items</li>\r\n<li>Popular Search Terms Cloud</li>\r\n<li>Filter by Product Tags</li>\r\n<li>Product Reviews</li>\r\n<li>Product listing in grid or list format</li>\r\n<li>Breadcrumbs</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Product Browsing\"]\r\n<h3>Product Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Multiple Images Per Product</li>\r\n<li>Product Image Zoom-in Capability</li>\r\n<li>Product Reviews</li>\r\n<li>Related Products</li>\r\n<li>Stock Availability</li>\r\n<li>Multi-Tier Pricing Upsell</li>\r\n<li>Product Option Selection</li>\r\n<li>Grouped Products View</li>\r\n<li>Add to Wishlist</li>\r\n<li>Send to a Friend with Email</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]\r\n\r\n\r\n\r\n\r\n','eCommerce WebShop Lite','','inherit','closed','closed','','156-revision-8','','','2011-07-15 14:38:53','2011-07-15 14:38:53','',156,'http://bestecommerce-uk.com/2011/07/156-revision-8/',0,'revision','',0),(329,1,'2011-08-11 21:38:03','2011-08-11 21:38:03','[slideshow alias=\"slide-show-alias\"]','eCommerce Site Examples','','inherit','closed','closed','','328-revision','','','2011-08-11 21:38:03','2011-08-11 21:38:03','',328,'http://bestecommerce-uk.com/2011/08/328-revision/',0,'revision','',0),(393,1,'2011-08-11 22:13:36','2011-08-11 22:13:36','[slideshow alias=\"examples\" ]','eCommerce Site Examples','','inherit','closed','closed','','328-revision-5','','','2011-08-11 22:13:36','2011-08-11 22:13:36','',328,'http://bestecommerce-uk.com/2011/08/328-revision-5/',0,'revision','',0),(394,1,'2011-09-02 11:42:30','2011-09-02 11:42:30','[pricing_table columns=\"3\"]\r\n	[pricing_column title=\"WebShop Lite\"]\r\n	    <ul>\r\n		<li>[price_info cost=\"£999\"] + £60 month[/price_info]</li>\r\n		<li>Entry level product for the SME’s and growing companies.</li>\r\n		<li>Includes upload of 30 products</li>\r\n		<li>[button_link url=\"ecommerce-webshop-lite\"]View Package[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n	[pricing_column title=\"WebShop Standard\" highlight=\"true\"]\r\n	    <ul>\r\n	 	<li>[price_info cost=\"£1999\"]+ £60 month[/price_info]</li>\r\n		<li>Provides a strong base from which to grow your presence on-line.</li>\r\n		<li>Inculdes upload of 60 products</li>\r\n		<li>[button_link url=\"ecommerce-webshop-standard\"]View Package[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n	[pricing_column title=\"WebShop Pro\"] \r\n	    <ul>\r\n		<li>[price_info cost=\"£2999\"]+ £60 month[/price_info]</li>\r\n		<li>Our flagship product for the SME’s and growing companies. </li>\r\n		<li>Inculdes upload of 90 products.</li>\r\n		<li>[button_link url=\"e-commerce-webshop-pro\"]View Package[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n[/pricing_table]\r\n','Best eCommerce Packages','','inherit','closed','closed','','71-revision-36','','','2011-09-02 11:42:30','2011-09-02 11:42:30','',71,'http://bestecommerce-uk.com/2011/09/71-revision-36/',0,'revision','',0),(395,1,'2011-09-26 12:40:33','2011-09-26 12:40:33','<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>Our entry level product for the SME\'s and growing companies, WebShop 3.0 Lite provides a high level of function across the board.</p><p>Supporting advanced functions such as cross-selling and up-selling, as well as product attributes for size or colour variations, the system is well suited to small businesses selling on-line. </p>\r\n\r\n<h3>Key Features</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\r\n<li>Administration of permissions, system roles and users</li>\r\n<li>Web Services API for easy integration with third-party applications</li>\r\n<li>Fully 100% customizable design using templates, or bespoke design</li>\r\n<li>Support for Customer Groups</li>\r\n<li>Content Management System for General or Site Information Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n\r\n<h2>£999 + £60/month   </h2>\r\n<p>If you as interested in this product please use the button below to complete a contact form for a call back or call us directly to discuss your requirements.<p/>\r\n<a href=\"/contact-form-2\" class=\"btn impactBtn\"><span>Contact Form</span></a><br /><br /><br />\r\n[button_link url=\"webshop-3-0-feature-list\" style=\"medium blue\"]View Webshop 3.0 functionality[/button_link]\r\n<!--[button_link url=\"http://www.webdesign-uk.org/wp-content/uploads/2011/09/Webshop_3.0_features_list.pdf\" style=\"medium blue\"]Webshop 3.0 functionality.pdf[/button_link]<br /><br /><br />-->\r\n\r\n\r\n\r\n</div></div>\r\n\r\n\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n\r\n</div></div>\r\n\r\n\r\n<!--[tabs]\r\n	[tab title=\"Site Management\"]\r\n<h3>Site Management</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\r\n<li>Administration of permissions, system roles and users</li>\r\n<li>Web Services API for easy integration between Magento and any third-party application</li>\r\n<li>Fully 100% customizable design using templates</li>\r\n<li>Customer Groups</li>\r\n<li>One-Click Upgrades</li>\r\n<li>Content Management System for Informational Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n<h3>Analytics and reporting</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n <li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"SEO, Marketing Promotions and Tools\"]\r\n<h3>Search Engine Optimisation</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>100% Search Engine Friendly</li>\r\n<li>Google Site Map</li>\r\n<li>Search Engine Friendly URL’s</li>\r\n<li>URL Rewrites give full control of URL’s</li>\r\n<li>Meta-information for products and categories</li>\r\n<li>Auto-generated Site Map for display on site</li>\r\n<li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Marketing Promotions and Tools</h3>\r\n	<ul>\r\n<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n<h3>Orders</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n<h3>Checkout, Payment and Shipping</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Cheques/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\n<li>Shopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Customer\"]\r\n<h3>Customer Service</h3> \r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Contact Us form</li>\r\n<li>Feature-rich Customer Accounts</li>\r\n<li>Order History with Status Updates</li>\r\n<li>Order Tracking from Account</li>\r\n<li>Password Reset email from front-end and admin panel</li>\r\n<li>Order and Account Update Emails</li>\r\n<li>Customizable Order Emails</li>\r\n<li>Create and Edit Orders from the Admin Panel</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Customer Accounts</h3> \r\n	<ul>\r\n		<li>Order status and history</li>\r\n<li>Re-orders from account</li>\r\n<li>Recently ordered items</li>\r\n<li>Address Book with unlimited addresses</li>\r\n<li>Default Billing and Shipping addresses</li>\r\n<li>Wishlist with ability to add comments</li>\r\n<li>Email or Send RSS feed of Wishlist</li>\r\n<li>Newsletter Subscription management</li>\r\n<li>Product Reviews submitted</li>\r\n<li>Product Tags submitted</li>\r\n<li>Downloadable/Digital Products<li>\r\n<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Management & Browsing\"]\r\n<h3>Catalog Management</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Inventory Management with Backordered items, Minimum and Maximum quantities</li>\r\n<li>Batch Import and Export of catalog</li>\r\n<li>Batch Updates to products in admin panel</li>\r\n<li>Google Base Integration</li>\r\n<li>Simple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products</li>\r\n<li>Virtual Products</li>\r\n<li>Downloadable/Digital Products</li>\r\n<li>Customer Personalized Products - upload text for embroidery, monogramming, etc.</li>\r\n<li>Tax Rates per location, customer group and product type</li>\r\n<li>Attribute Sets for quick product creation of different item types</li>\r\n<li>Create Store-specific attributes on the fly</li>\r\n<li>Media Manager with automatic image resizing and watermarking</li>\r\n<li>Advanced Pricing Rules and support for Special Prices (see marketing tools)</li>\r\n<li>Search Results rewrites and redirects</li>\r\n<li>Approve, Edit and Delete Product Tags</li>\r\n<li>Approve, Edit and Delete Product Reviews</li>\r\n<li>RSS feed for Low Inventory Alerts</li>\r\n<li>Customer Personalized Products - Upload text for embroidery, monogramming, etc. (this one is already there, but want to have the following shown after it)</li>\r\n<li>Customer Personalized Products – Upload Image</li>\r\n<li>Customer Personalized Products – Select Date/Time options for products</li>\r\n<li>Customer Sorting – Define Attributes for Customer Sorting on category (price, brand, etc.)</li>\r\n			</ul>\r\n[/bullet_list]\r\n<h3>Catalog Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Layered / Faceted Navigation for filtering of products in categories</li>\r\n<li>Layered / Faceted Navigation for filtering of products in search results</li>\r\n<li>Flat Catalog Module for Improved Performance with large catalogs</li>\r\n<li>Static Block tool to create category landing pages</li>\r\n<li>Ability to assign designs on category and product level (unique design per product/category)</li>\r\n<li>Configurable search with auto-suggested terms</li>\r\n<li>Recently viewed products</li>\r\n<li>Product comparisons</li>\r\n<li>Recently compared products</li>\r\n<li>Cross-sells, Up-sells and Related Items</li>\r\n<li>Popular Search Terms Cloud</li>\r\n<li>Filter by Product Tags</li>\r\n<li>Product Reviews</li>\r\n<li>Product listing in grid or list format</li>\r\n<li>Breadcrumbs</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Product Browsing\"]\r\n<h3>Product Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Multiple Images Per Product</li>\r\n<li>Product Image Zoom-in Capability</li>\r\n<li>Product Reviews</li>\r\n<li>Related Products</li>\r\n<li>Stock Availability</li>\r\n<li>Multi-Tier Pricing Upsell</li>\r\n<li>Product Option Selection</li>\r\n<li>Grouped Products View</li>\r\n<li>Add to Wishlist</li>\r\n<li>Send to a Friend with Email</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]-->\r\n\r\n\r\n\r\n\r\n','eCommerce WebShop Lite','','inherit','closed','closed','','156-revision-46','','','2011-09-26 12:40:33','2011-09-26 12:40:33','',156,'http://bestecommerce-uk.com/2011/09/156-revision-46/',0,'revision','',0),(392,1,'2011-07-15 14:27:09','2011-07-15 14:27:09','Best eCommerce UK was formed in 2002 with the aim of providing eCommerce solutions and services to business with an emphasis on quality of products and great support.\r\n\r\nWith a growing base of loyal happy customers we feel we have achieved that aim and continue to hold good to those early business principles of supplying good, reliable systems and support to our customers.','About Best eCommerce','','inherit','closed','closed','','12-revision-5','','','2011-07-15 14:27:09','2011-07-15 14:27:09','',12,'http://bestecommerce-uk.com/2011/07/12-revision-5/',0,'revision','',0),(391,1,'2011-09-12 15:22:46','2011-09-12 15:22:46','[one_half]<h3>Site Management</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\r\n<li>Administration of permissions, system roles and users</li>\r\n<li>Web Services API for easy integration between Magento and any third-party application</li>\r\n<li>Fully 100% customizable design using templates</li>\r\n<li>Customer Groups</li>\r\n<li>One-Click Upgrades</li>\r\n<li>Content Management System for Informational Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list][/one_half]\r\n[one_half_last]\r\n<h3>Analytics and reporting</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n <li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n			</ul>\r\n[/bullet_list][/one_half_last]','2 column','','inherit','closed','closed','','318-revision-3','','','2011-09-12 15:22:46','2011-09-12 15:22:46','',318,'http://bestecommerce-uk.com/2011/09/318-revision-3/',0,'revision','',0),(433,1,'2011-11-21 13:26:40','2011-11-21 13:26:40','<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\">\r\n<div class=\"i0 ugc\">\r\n\r\n&nbsp;\r\n<h1>Web Design &amp; Usability</h1>\r\nWheather you are looking for a simple brochure website to promote your product and services or an online store to sell products online. There is no doubt that the aytheuics of a website affect the customers perception of your product and can easily influence them wether to stay on your website or move onto your competitors website.  It is proven that it can take only a few seconds for a customer to decide how they feel about your website design. It is therefore important that your website complements the brand whilst remaining goal oriented and customer focused.\r\n\r\n<h2>Our Process</h2>\r\nOur Web Design process consists of 5 steps.\r\n\r\n<strong>Consultation</strong>\r\nDuring the consulation period the customers ideas and aims for the website will be discussed and how this will acheive the businesses overall objectives.  Design, functionality, timeframe and cost will be considered in this phase.\r\n\r\n<strong>Specification</strong>\r\nThe website specification can very in size from a single peice of A4 for a small business to a extensive document for large complex website.  The specification should detail the design, techincal and functional requirements of the site as well as the site stucture or in other words how it will look on the web.  If the customer does not have an domain name then a suitable domain will be identified and registered at this stage.  It is our policy that when registering domains on behalf of the customer that it is registered in the customer\'s name and not ours.\r\n\r\n<strong>Develpoment & testing</strong>\r\nThis is where the site begins to take visible shape based on the agreed specification.  The time that this process will take to complete will depend on the complexity and size of the site as well as integartion of any extrenal web technologies.  The expected time scale for this phase will be outlined in the quoation.\r\nOnce the final design has been approved the site will be tested to ensure that all functions are operational and the site is performing as required.\r\n\r\n<strong>Launch</strong>\r\nOnce the testing is complete and approved by the customer the website can be placed into live operation. An agreed date for this will set with the customer considering any associated factors.\r\n\r\n<strong>Support & Maintenance</strong>\r\nOur Support & Maintenance aggreement provides ongoing support and develpoment for the customer\'s site.  Whether it be assistance in adding new feature\'s over time or updating content our suppport & maintenance aggreement apportions time to development as well as covering hosting fees, off-site backups and telephone support so that the customer can be assured that help is at hand when required.\r\n\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n</div>\r\n</div>','Web Design Edinburgh','','inherit','closed','closed','','425-revision-5','','','2011-11-21 13:26:40','2011-11-21 13:26:40','',425,'http://bestecommerce-uk.com/2011/11/425-revision-5/',0,'revision','',0),(262,1,'2011-07-18 10:51:00','2011-07-18 10:51:00','eCommerce WebShop 3.0 Pro\r\n\r\nOur flagship product for the SME’s and growing companies, WebShop 3.0 Pro provides a high level of function across the board.Supporting advanced functions from multi-tiered pricing structures to integration with Amazon and eBay, the pro system is the benchmark for growing and established High Street brand retailers \r\n£2999 + £60/month   \r\nAdd to Cart/Sign-Up\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n[one_half_last] [/one_half_last]\r\n\r\n\r\n\r\n\r\n\r\n\r\n[tabs]\r\n	[tab title=\"Our Packages\"]Lorem ipsum dolor sit amet \r\n\r\nConsectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique. Quisque mattis elit eros, non facilisis sem. Cras a congue neque. In massa purus, ornare in sagittis id, accumsan ac nisl. Sed sit amet nulla ac dolor adipiscing.[/tab]\r\n	[tab title=\"Our Capabilities\"][bullet_list icon=\"check\"]\r\n	\r\n		Your Text\r\n		Your Text\r\n		Your Text\r\n	\r\n[/bullet_list][/tab]\r\n	[tab title=\"Our Support\"]Tab content…[/tab]\r\n[/tabs]','','','publish','closed','closed','','262','','','2011-07-18 10:51:00','2011-07-18 10:51:00','',71,'http://bestecommerce-uk.com/?p=262',2,'nav_menu_item','',0),(263,1,'2011-07-18 10:52:04','2011-07-18 10:52:04','Our entry level product for the SME’s and growing companies, WebShop 3.0 Lite provides a high level of function across the board.Supporting advanced functions from multi-tiered pricing structures to integration with Amazon and eBay, the pro system is the benchmark for growing and established High Street brand retailers \r\n£999 + £60/month   \r\nAdd to Cart/Sign-Up\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n[tabs]\r\n	[tab title=\"Site Management\"]\r\nSite Management\r\n[bullet_list icon=\"check\"]\r\n        \r\nControl multiple websites and stores from one administration panel with ability to share as much or as little information as needed\r\nAdministration of permissions, system roles and users\r\nWeb Services API for easy integration between Magento and any third-party application\r\nFully 100% customizable design using templates\r\nCustomer Groups\r\nOne-Click Upgrades\r\nContent Management System for Informational Pages\r\nGoogle Website Optimizer Integration for A/B and Multivariate Testing\r\n	\r\n[/bullet_list]\r\n\r\nAnalytics and reporting\r\n[bullet_list icon=\"check\"]\r\n	\r\n Integrated with Google Analytics\r\nAdmin Dashboard for Report Overview\r\nSales Report\r\nRSS feed for New Orders\r\nTax Report\r\nAbandoned Shopping Cart Report\r\nBest Viewed Products Report\r\nBest Purchased Products Report\r\nLow Stock Report\r\nSearch Terms Report\r\nProduct Reviews Report\r\nRSS feed for New Reviews\r\nTags Report\r\nRSS feed for New Tags\r\nCoupon Usage Report\r\nTotal Sales Invoiced\r\nTotal Sales Refunded\r\n			\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"SEO, Marketing Promotions and Tools\"]\r\nSearch Engine Optimisation\r\n[bullet_list icon=\"check\"]\r\n	\r\n100% Search Engine Friendly\r\nGoogle Site Map\r\nSearch Engine Friendly URL’s\r\nURL Rewrites give full control of URL’s\r\nMeta-information for products and categories\r\nAuto-generated Site Map for display on site\r\nAuto-Generated Popular Search Terms Page\r\n	\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\nMarketing Promotions and Tools\r\n	\r\nPolls\r\nNewsletter Management\r\nLanding Page Tool for Campaigns\r\nCatalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products\r\nFlexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories\r\nFree Shipping Options\r\nMulti-Tier Pricing for quantity discounts\r\nBundled Products Options\r\nCustomer Group-specific pricing and group-specific tier pricing\r\nRecently Viewed Products\r\nRecently Compared Items\r\nNew Items Promotional Tool\r\nUp-sells in Shopping Cart\r\nCross-sells on product pages\r\nSend to a Friend for all visitors, or registered users only\r\nSend Wishlist to a Friend by Email or RSS\r\nRSS Feeds for New Products, New Specials and New Tags\r\nAuto-generated Site Map\r\nGoogle Site Map\r\n			\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\nOrders\r\n[bullet_list icon=\"check\"]\r\n	\r\nView, edit, create and fulfill orders from admin panel\r\nCreate one or multiple invoices, shipments and credit memos per order to allow for split fulfillment\r\nPrint invoices and packing slips\r\nCall Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices\r\nCreate re-orders for customers from administration panel\r\nEmail Notifications of Orders\r\nRSS feed of New Orders\r\n			\r\n[/bullet_list]\r\n\r\nCheckout, Payment and Shipping\r\n[bullet_list icon=\"check\"]\r\n	\r\nOne-Page Checkout\r\nIntegrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL\r\nConfigurable to authorize and charge, or authorize only and charge on creation of invoices\r\nIntegrated with Amazon Payments\r\nIntegrated with multiple PayPal gateways\r\nIntegrated with Authorize.net\r\nIntegrated with Google Checkout (Level 2)\r\nSaved Credit Card method for offline payments\r\nAccept Cheques/Money Orders\r\nAccept Purchase Orders\r\nPayment Extensions Available through Magento Connect\r\nSSL security support for orders on both front-end and back-end\r\nGuest Checkout and Checkout with account to use address book\r\nShopping Cart with tax and shipping estimates\r\nOption for account creation at beginning of checkout\r\nAccept gift messages per order and per item\r\nSaved Shopping Carts with configurable expiration time\r\nShipping to multiple addresses in one order\r\nOn-site order tracking from customer accounts\r\nMultiple shipments per order\r\nAbility to specify allowed destination countries per method\r\nFlat rate shipping per order\r\nFlat rate shipping per item\r\nFree Shipping\r\nTable rates for weight and destination\r\nTable rates for product sub-totals and destination\r\nTable rates for number of items and destination Free\r\n\r\n\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Customer\"]\r\nCustomer Service \r\n[bullet_list icon=\"check\"]\r\n	\r\nContact Us form\r\nFeature-rich Customer Accounts\r\nOrder History with Status Updates\r\nOrder Tracking from Account\r\nPassword Reset email from front-end and admin panel\r\nOrder and Account Update Emails\r\nCustomizable Order Emails\r\nCreate and Edit Orders from the Admin Panel\r\n			\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\nCustomer Accounts \r\n	\r\n		Order status and history\r\nRe-orders from account\r\nRecently ordered items\r\nAddress Book with unlimited addresses\r\nDefault Billing and Shipping addresses\r\nWishlist with ability to add comments\r\nEmail or Send RSS feed of Wishlist\r\nNewsletter Subscription management\r\nProduct Reviews submitted\r\nProduct Tags submitted\r\nDownloadable/Digital Products\r\nAccount Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags\r\n\r\n			\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Management & Browsing\"]\r\nCatalog Management\r\n[bullet_list icon=\"check\"]\r\n	\r\nInventory Management with Backordered items, Minimum and Maximum quantities\r\nBatch Import and Export of catalog\r\nBatch Updates to products in admin panel\r\nGoogle Base Integration\r\nSimple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products\r\nVirtual Products\r\nDownloadable/Digital Products\r\nCustomer Personalized Products – upload text for embroidery, monogramming, etc.\r\nTax Rates per location, customer group and product type\r\nAttribute Sets for quick product creation of different item types\r\nCreate Store-specific attributes on the fly\r\nMedia Manager with automatic image resizing and watermarking\r\nAdvanced Pricing Rules and support for Special Prices (see marketing tools)\r\nSearch Results rewrites and redirects\r\nApprove, Edit and Delete Product Tags\r\nApprove, Edit and Delete Product Reviews\r\nRSS feed for Low Inventory Alerts\r\nCustomer Personalized Products – Upload text for embroidery, monogramming, etc. (this one is already there, but want to have the following shown after it)\r\nCustomer Personalized Products – Upload Image\r\nCustomer Personalized Products – Select Date/Time options for products\r\nCustomer Sorting – Define Attributes for Customer Sorting on category (price, brand, etc.)\r\n			\r\n[/bullet_list]\r\nCatalog Browsing\r\n[bullet_list icon=\"check\"]\r\n	\r\nLayered / Faceted Navigation for filtering of products in categories\r\nLayered / Faceted Navigation for filtering of products in search results\r\nFlat Catalog Module for Improved Performance with large catalogs\r\nStatic Block tool to create category landing pages\r\nAbility to assign designs on category and product level (unique design per product/category)\r\nConfigurable search with auto-suggested terms\r\nRecently viewed products\r\nProduct comparisons\r\nRecently compared products\r\nCross-sells, Up-sells and Related Items\r\nPopular Search Terms Cloud\r\nFilter by Product Tags\r\nProduct Reviews\r\nProduct listing in grid or list format\r\nBreadcrumbs\r\n			\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Product Browsing\"]\r\nProduct Browsing\r\n[bullet_list icon=\"check\"]\r\n	\r\nMultiple Images Per Product\r\nProduct Image Zoom-in Capability\r\nProduct Reviews\r\nRelated Products\r\nStock Availability\r\nMulti-Tier Pricing Upsell\r\nProduct Option Selection\r\nGrouped Products View\r\nAdd to Wishlist\r\nSend to a Friend with Email\r\n			\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]\r\n\r\n\r\n\r\n\r\n','','','publish','closed','closed','','263','','','2011-07-18 10:52:04','2011-07-18 10:52:04','',71,'http://bestecommerce-uk.com/?p=263',1,'nav_menu_item','',0),(264,1,'2011-07-18 10:52:04','2011-07-18 10:52:04','eCommerce WebShop 3.0 Pro\r\n\r\nOur flagship product for the SME’s and growing companies, WebShop 3.0 Pro provides a high level of function across the board.Supporting advanced functions from multi-tiered pricing structures to integration with Amazon and eBay, the pro system is the benchmark for growing and established High Street brand retailers \r\n£2999 + £60/month   \r\nAdd to Cart/Sign-Up\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n[one_half_last] [/one_half_last]\r\n\r\n\r\n\r\n\r\n\r\n\r\n[tabs]\r\n	[tab title=\"Our Packages\"]Lorem ipsum dolor sit amet \r\n\r\nConsectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique. Quisque mattis elit eros, non facilisis sem. Cras a congue neque. In massa purus, ornare in sagittis id, accumsan ac nisl. Sed sit amet nulla ac dolor adipiscing.[/tab]\r\n	[tab title=\"Our Capabilities\"][bullet_list icon=\"check\"]\r\n	\r\n		Your Text\r\n		Your Text\r\n		Your Text\r\n	\r\n[/bullet_list][/tab]\r\n	[tab title=\"Our Support\"]Tab content…[/tab]\r\n[/tabs]','','','publish','closed','closed','','264','','','2011-07-18 10:52:04','2011-07-18 10:52:04','',71,'http://bestecommerce-uk.com/?p=264',2,'nav_menu_item','',0),(265,1,'2011-07-18 10:53:28','2011-07-18 10:53:28','Our entry level product for the SME’s and growing companies, WebShop 3.0 Lite provides a high level of function across the board.Supporting advanced functions from multi-tiered pricing structures to integration with Amazon and eBay, the pro system is the benchmark for growing and established High Street brand retailers \r\n£999 + £60/month   \r\nAdd to Cart/Sign-Up\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n[tabs]\r\n	[tab title=\"Site Management\"]\r\nSite Management\r\n[bullet_list icon=\"check\"]\r\n        \r\nControl multiple websites and stores from one administration panel with ability to share as much or as little information as needed\r\nAdministration of permissions, system roles and users\r\nWeb Services API for easy integration between Magento and any third-party application\r\nFully 100% customizable design using templates\r\nCustomer Groups\r\nOne-Click Upgrades\r\nContent Management System for Informational Pages\r\nGoogle Website Optimizer Integration for A/B and Multivariate Testing\r\n	\r\n[/bullet_list]\r\n\r\nAnalytics and reporting\r\n[bullet_list icon=\"check\"]\r\n	\r\n Integrated with Google Analytics\r\nAdmin Dashboard for Report Overview\r\nSales Report\r\nRSS feed for New Orders\r\nTax Report\r\nAbandoned Shopping Cart Report\r\nBest Viewed Products Report\r\nBest Purchased Products Report\r\nLow Stock Report\r\nSearch Terms Report\r\nProduct Reviews Report\r\nRSS feed for New Reviews\r\nTags Report\r\nRSS feed for New Tags\r\nCoupon Usage Report\r\nTotal Sales Invoiced\r\nTotal Sales Refunded\r\n			\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"SEO, Marketing Promotions and Tools\"]\r\nSearch Engine Optimisation\r\n[bullet_list icon=\"check\"]\r\n	\r\n100% Search Engine Friendly\r\nGoogle Site Map\r\nSearch Engine Friendly URL’s\r\nURL Rewrites give full control of URL’s\r\nMeta-information for products and categories\r\nAuto-generated Site Map for display on site\r\nAuto-Generated Popular Search Terms Page\r\n	\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\nMarketing Promotions and Tools\r\n	\r\nPolls\r\nNewsletter Management\r\nLanding Page Tool for Campaigns\r\nCatalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products\r\nFlexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories\r\nFree Shipping Options\r\nMulti-Tier Pricing for quantity discounts\r\nBundled Products Options\r\nCustomer Group-specific pricing and group-specific tier pricing\r\nRecently Viewed Products\r\nRecently Compared Items\r\nNew Items Promotional Tool\r\nUp-sells in Shopping Cart\r\nCross-sells on product pages\r\nSend to a Friend for all visitors, or registered users only\r\nSend Wishlist to a Friend by Email or RSS\r\nRSS Feeds for New Products, New Specials and New Tags\r\nAuto-generated Site Map\r\nGoogle Site Map\r\n			\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\nOrders\r\n[bullet_list icon=\"check\"]\r\n	\r\nView, edit, create and fulfill orders from admin panel\r\nCreate one or multiple invoices, shipments and credit memos per order to allow for split fulfillment\r\nPrint invoices and packing slips\r\nCall Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices\r\nCreate re-orders for customers from administration panel\r\nEmail Notifications of Orders\r\nRSS feed of New Orders\r\n			\r\n[/bullet_list]\r\n\r\nCheckout, Payment and Shipping\r\n[bullet_list icon=\"check\"]\r\n	\r\nOne-Page Checkout\r\nIntegrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL\r\nConfigurable to authorize and charge, or authorize only and charge on creation of invoices\r\nIntegrated with Amazon Payments\r\nIntegrated with multiple PayPal gateways\r\nIntegrated with Authorize.net\r\nIntegrated with Google Checkout (Level 2)\r\nSaved Credit Card method for offline payments\r\nAccept Cheques/Money Orders\r\nAccept Purchase Orders\r\nPayment Extensions Available through Magento Connect\r\nSSL security support for orders on both front-end and back-end\r\nGuest Checkout and Checkout with account to use address book\r\nShopping Cart with tax and shipping estimates\r\nOption for account creation at beginning of checkout\r\nAccept gift messages per order and per item\r\nSaved Shopping Carts with configurable expiration time\r\nShipping to multiple addresses in one order\r\nOn-site order tracking from customer accounts\r\nMultiple shipments per order\r\nAbility to specify allowed destination countries per method\r\nFlat rate shipping per order\r\nFlat rate shipping per item\r\nFree Shipping\r\nTable rates for weight and destination\r\nTable rates for product sub-totals and destination\r\nTable rates for number of items and destination Free\r\n\r\n\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Customer\"]\r\nCustomer Service \r\n[bullet_list icon=\"check\"]\r\n	\r\nContact Us form\r\nFeature-rich Customer Accounts\r\nOrder History with Status Updates\r\nOrder Tracking from Account\r\nPassword Reset email from front-end and admin panel\r\nOrder and Account Update Emails\r\nCustomizable Order Emails\r\nCreate and Edit Orders from the Admin Panel\r\n			\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\nCustomer Accounts \r\n	\r\n		Order status and history\r\nRe-orders from account\r\nRecently ordered items\r\nAddress Book with unlimited addresses\r\nDefault Billing and Shipping addresses\r\nWishlist with ability to add comments\r\nEmail or Send RSS feed of Wishlist\r\nNewsletter Subscription management\r\nProduct Reviews submitted\r\nProduct Tags submitted\r\nDownloadable/Digital Products\r\nAccount Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags\r\n\r\n			\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Management & Browsing\"]\r\nCatalog Management\r\n[bullet_list icon=\"check\"]\r\n	\r\nInventory Management with Backordered items, Minimum and Maximum quantities\r\nBatch Import and Export of catalog\r\nBatch Updates to products in admin panel\r\nGoogle Base Integration\r\nSimple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products\r\nVirtual Products\r\nDownloadable/Digital Products\r\nCustomer Personalized Products – upload text for embroidery, monogramming, etc.\r\nTax Rates per location, customer group and product type\r\nAttribute Sets for quick product creation of different item types\r\nCreate Store-specific attributes on the fly\r\nMedia Manager with automatic image resizing and watermarking\r\nAdvanced Pricing Rules and support for Special Prices (see marketing tools)\r\nSearch Results rewrites and redirects\r\nApprove, Edit and Delete Product Tags\r\nApprove, Edit and Delete Product Reviews\r\nRSS feed for Low Inventory Alerts\r\nCustomer Personalized Products – Upload text for embroidery, monogramming, etc. (this one is already there, but want to have the following shown after it)\r\nCustomer Personalized Products – Upload Image\r\nCustomer Personalized Products – Select Date/Time options for products\r\nCustomer Sorting – Define Attributes for Customer Sorting on category (price, brand, etc.)\r\n			\r\n[/bullet_list]\r\nCatalog Browsing\r\n[bullet_list icon=\"check\"]\r\n	\r\nLayered / Faceted Navigation for filtering of products in categories\r\nLayered / Faceted Navigation for filtering of products in search results\r\nFlat Catalog Module for Improved Performance with large catalogs\r\nStatic Block tool to create category landing pages\r\nAbility to assign designs on category and product level (unique design per product/category)\r\nConfigurable search with auto-suggested terms\r\nRecently viewed products\r\nProduct comparisons\r\nRecently compared products\r\nCross-sells, Up-sells and Related Items\r\nPopular Search Terms Cloud\r\nFilter by Product Tags\r\nProduct Reviews\r\nProduct listing in grid or list format\r\nBreadcrumbs\r\n			\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Product Browsing\"]\r\nProduct Browsing\r\n[bullet_list icon=\"check\"]\r\n	\r\nMultiple Images Per Product\r\nProduct Image Zoom-in Capability\r\nProduct Reviews\r\nRelated Products\r\nStock Availability\r\nMulti-Tier Pricing Upsell\r\nProduct Option Selection\r\nGrouped Products View\r\nAdd to Wishlist\r\nSend to a Friend with Email\r\n			\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]\r\n\r\n\r\n\r\n\r\n','','','publish','closed','closed','','265','','','2011-07-18 10:53:33','2011-07-18 10:53:33','',71,'http://bestecommerce-uk.com/?p=265',1,'nav_menu_item','',0),(266,1,'2011-07-18 10:53:28','2011-07-18 10:53:28','eCommerce WebShop 3.0 Standard\r\n\r\nWebShop 3.0 Standard provides a strong base from which to grow your presence on-line with unlimited products and categories and unrivalled ease of use.Supporting advanced functions from weight based shipping, to managing stock and invoicing, the standard system is aimed at SME’s, and growing on-line retailer seeking a site with professional design, functions and ease of use. \r\n£1999 + £60/month   \r\nAdd to Cart/Sign-Up\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n[one_half_last] [/one_half_last]\r\n\r\n\r\n\r\n\r\n\r\n\r\n[tabs]\r\n	[tab title=\"Our Packages\"]Lorem ipsum dolor sit amet \r\n\r\nConsectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique. Quisque mattis elit eros, non facilisis sem. Cras a congue neque. In massa purus, ornare in sagittis id, accumsan ac nisl. Sed sit amet nulla ac dolor adipiscing.[/tab]\r\n	[tab title=\"Our Capabilities\"][bullet_list icon=\"check\"]\r\n	\r\n		Your Text\r\n		Your Text\r\n		Your Text\r\n	\r\n[/bullet_list][/tab]\r\n	[tab title=\"Our Support\"]Tab content…[/tab]\r\n[/tabs]','','','publish','closed','closed','','266','','','2011-07-18 10:53:33','2011-07-18 10:53:33','',71,'http://bestecommerce-uk.com/?p=266',2,'nav_menu_item','',0),(267,1,'2011-07-08 15:28:06','2011-07-08 15:28:06','[pricing_table columns=\"3\"]\r\n	[pricing_column title=\"WebShop Lite\"]\r\n	    <ul>\r\n		<li>[price_info cost=\"£999\"] + £60 month[/price_info]</li>\r\n		<li>Item description and details...</li>\r\n		<li>Some more info...</li>\r\n		<li>[button_link url=\"\"]Title[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n	[pricing_column title=\"WebShop Standard\" highlight=\"true\"]\r\n	    <ul>\r\n	 	<li>[price_info cost=\"£1999\"]+ £60 month[/price_info]</li>\r\n		<li>Item description and details...</li>\r\n		<li>Some more info...</li>\r\n		<li>[button_link url=\"\" style=\"impactBtn\"]Title[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n	[pricing_column title=\"WebShop Pro\"] \r\n	    <ul>\r\n		<li>[price_info cost=\"£2999\"]+ £60 month[/price_info]</li>\r\n		<li>Item description and details...</li>\r\n		<li>Some more info...</li>\r\n		<li>[button_link url=\"\"]Title[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n[/pricing_table]\r\n','Best eCommerce Packages','','inherit','closed','closed','','71-revision-9','','','2011-07-08 15:28:06','2011-07-08 15:28:06','',71,'http://bestecommerce-uk.com/2011/07/71-revision-9/',0,'revision','',0),(268,1,'2011-07-18 11:05:22','2011-07-18 11:05:22','[pricing_table columns=\"3\"]\r\n	[pricing_column title=\"WebShop Lite\"]\r\n	    <ul>\r\n		<li>[price_info cost=\"£999\"] + £60 month[/price_info]</li>\r\n		<li>Item description and details...</li>\r\n		<li>Some more info...</li>\r\n		<li>[button_link url=\"\"]View Package[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n	[pricing_column title=\"WebShop Standard\" highlight=\"true\"]\r\n	    <ul>\r\n	 	<li>[price_info cost=\"£1999\"]+ £60 month[/price_info]</li>\r\n		<li>Item description and details...</li>\r\n		<li>Some more info...</li>\r\n		<li>[button_link url=\"\" style=\"impactBtn\"]Title[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n	[pricing_column title=\"WebShop Pro\"] \r\n	    <ul>\r\n		<li>[price_info cost=\"£2999\"]+ £60 month[/price_info]</li>\r\n		<li>Item description and details...</li>\r\n		<li>Some more info...</li>\r\n		<li>[button_link url=\"\"]Title[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n[/pricing_table]\r\n','Best eCommerce Packages','','inherit','closed','closed','','71-revision-10','','','2011-07-18 11:05:22','2011-07-18 11:05:22','',71,'http://bestecommerce-uk.com/2011/07/71-revision-10/',0,'revision','',0),(270,1,'2011-07-18 11:07:22','2011-07-18 11:07:22','[pricing_table columns=\"3\"]\r\n	[pricing_column title=\"WebShop Lite\"]\r\n	    <ul>\r\n		<li>[price_info cost=\"£999\"] + £60 month[/price_info]</li>\r\n		<li>Item description and details...</li>\r\n		<li>Some more info...</li>\r\n		<li>[button_link url=\"\"]View Package[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n	[pricing_column title=\"WebShop Standard\" highlight=\"true\"]\r\n	    <ul>\r\n	 	<li>[price_info cost=\"£1999\"]+ £60 month[/price_info]</li>\r\n		<li>Item description and details...</li>\r\n		<li>Some more info...</li>\r\n		<li>[button_link url=\"\" style=\"impactBtn\"]Title[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n	[pricing_column title=\"WebShop Pro\"] \r\n	    <ul>\r\n		<li>[price_info cost=\"£2999\"]+ £60 month[/price_info]</li>\r\n		<li>Item description and details...</li>\r\n		<li>Some more info...</li>\r\n		<li>[button_link url=\"\"]Title[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n[/pricing_table]\r\n','Best eCommerce Packages','','inherit','closed','closed','','71-revision-12','','','2011-07-18 11:07:22','2011-07-18 11:07:22','',71,'http://bestecommerce-uk.com/2011/07/71-revision-12/',0,'revision','',0),(269,1,'2011-07-18 11:06:34','2011-07-18 11:06:34','[pricing_table columns=\"3\"]\r\n	[pricing_column title=\"WebShop Lite\"]\r\n	    <ul>\r\n		<li>[price_info cost=\"£999\"] + £60 month[/price_info]</li>\r\n		<li>Item description and details...</li>\r\n		<li>Some more info...</li>\r\n		<li>[button_link url=\"\"]View Package[/ecommerce-webshop-lite]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n	[pricing_column title=\"WebShop Standard\" highlight=\"true\"]\r\n	    <ul>\r\n	 	<li>[price_info cost=\"£1999\"]+ £60 month[/price_info]</li>\r\n		<li>Item description and details...</li>\r\n		<li>Some more info...</li>\r\n		<li>[button_link url=\"\" style=\"impactBtn\"]Title[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n	[pricing_column title=\"WebShop Pro\"] \r\n	    <ul>\r\n		<li>[price_info cost=\"£2999\"]+ £60 month[/price_info]</li>\r\n		<li>Item description and details...</li>\r\n		<li>Some more info...</li>\r\n		<li>[button_link url=\"\"]Title[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n[/pricing_table]\r\n','Best eCommerce Packages','','inherit','closed','closed','','71-revision-11','','','2011-07-18 11:06:34','2011-07-18 11:06:34','',71,'http://bestecommerce-uk.com/2011/07/71-revision-11/',0,'revision','',0),(271,1,'2011-07-18 11:10:14','2011-07-18 11:10:14','[pricing_table columns=\"3\"]\r\n	[pricing_column title=\"WebShop Lite\"]\r\n	    <ul>\r\n		<li>[price_info cost=\"£999\"] + £60 month[/price_info]</li>\r\n		<li>Item description and details...</li>\r\n		<li>Some more info...</li>\r\n		<li>[button_link url=\"http://bestecommerce-uk.com/best-e-commerce-packages/ecommerce-webshop-lite/\"]View Package[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n	[pricing_column title=\"WebShop Standard\" highlight=\"true\"]\r\n	    <ul>\r\n	 	<li>[price_info cost=\"£1999\"]+ £60 month[/price_info]</li>\r\n		<li>Item description and details...</li>\r\n		<li>Some more info...</li>\r\n		<li>[button_link url=\"\" style=\"impactBtn\"]Title[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n	[pricing_column title=\"WebShop Pro\"] \r\n	    <ul>\r\n		<li>[price_info cost=\"£2999\"]+ £60 month[/price_info]</li>\r\n		<li>Item description and details...</li>\r\n		<li>Some more info...</li>\r\n		<li>[button_link url=\"\"]Title[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n[/pricing_table]\r\n','Best eCommerce Packages','','inherit','closed','closed','','71-revision-13','','','2011-07-18 11:10:14','2011-07-18 11:10:14','',71,'http://bestecommerce-uk.com/2011/07/71-revision-13/',0,'revision','',0),(272,1,'2011-07-18 11:15:51','2011-07-18 11:15:51','[pricing_table columns=\"3\"]\r\n	[pricing_column title=\"WebShop Lite\"]\r\n	    <ul>\r\n		<li>[price_info cost=\"£999\"] + £60 month[/price_info]</li>\r\n		<li>Our entry level product for the SME’s and growing companies</li>\r\n		<li>Some more info...</li>\r\n		<li>[button_link url=\"http://bestecommerce-uk.com/best-e-commerce-packages/ecommerce-webshop-lite/\"]View Package[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n	[pricing_column title=\"WebShop Standard\" highlight=\"true\"]\r\n	    <ul>\r\n	 	<li>[price_info cost=\"£1999\"]+ £60 month[/price_info]</li>\r\n		<li>Item description and details...</li>\r\n		<li>Some more info...</li>\r\n		<li>[button_link url=\"\" style=\"impactBtn\"]Title[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n	[pricing_column title=\"WebShop Pro\"] \r\n	    <ul>\r\n		<li>[price_info cost=\"£2999\"]+ £60 month[/price_info]</li>\r\n		<li>Item description and details...</li>\r\n		<li>Some more info...</li>\r\n		<li>[button_link url=\"\"]Title[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n[/pricing_table]\r\n','Best eCommerce Packages','','inherit','closed','closed','','71-revision-14','','','2011-07-18 11:15:51','2011-07-18 11:15:51','',71,'http://bestecommerce-uk.com/2011/07/71-revision-14/',0,'revision','',0),(273,1,'2011-07-18 11:17:50','2011-07-18 11:17:50','[pricing_table columns=\"3\"]\r\n	[pricing_column title=\"WebShop Lite\"]\r\n	    <ul>\r\n		<li>[price_info cost=\"£999\"] + £60 month[/price_info]</li>\r\n		<li>Entry level product for the SME’s and growing companies</li>\r\n		<li>Some more info...</li>\r\n		<li>[button_link url=\"http://bestecommerce-uk.com/best-e-commerce-packages/ecommerce-webshop-lite/\"]View Package[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n	[pricing_column title=\"WebShop Standard\" highlight=\"true\"]\r\n	    <ul>\r\n	 	<li>[price_info cost=\"£1999\"]+ £60 month[/price_info]</li>\r\n		<li>Provides a strong base from which to grow your presence on-line with unlimited products and categories and unrivalled ease of use.</li>\r\n		<li>Some more info...</li>\r\n		<li>[button_link url=\"\" style=\"impactBtn\"]Title[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n	[pricing_column title=\"WebShop Pro\"] \r\n	    <ul>\r\n		<li>[price_info cost=\"£2999\"]+ £60 month[/price_info]</li>\r\n		<li>Item description and details...</li>\r\n		<li>Some more info...</li>\r\n		<li>[button_link url=\"\"]Title[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n[/pricing_table]\r\n','Best eCommerce Packages','','inherit','closed','closed','','71-revision-15','','','2011-07-18 11:17:50','2011-07-18 11:17:50','',71,'http://bestecommerce-uk.com/2011/07/71-revision-15/',0,'revision','',0),(349,1,'2011-06-30 11:47:02','2011-06-30 11:47:02','<h1>Contact Us</h1>[contact_form]','Contact Form','','inherit','closed','closed','','53-revision-3','','','2011-06-30 11:47:02','2011-06-30 11:47:02','',53,'http://bestecommerce-uk.com/2011/06/53-revision-3/',0,'revision','',0),(315,1,'2011-07-18 14:02:43','2011-07-18 14:02:43','[pricing_table columns=\"3\"]\r\n	[pricing_column title=\"WebShop Lite\"]\r\n	    <ul>\r\n		<li>[price_info cost=\"£999\"] + £60 month[/price_info]</li>\r\n		<li>Entry level product for the SME’s and growing companies.</li>\r\n		<li>Includes upload of 30 products</li>\r\n		<li>[button_link url=\"ecommerce-webshop-lite\"]View Package[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n	[pricing_column title=\"WebShop Standard\" highlight=\"true\"]\r\n	    <ul>\r\n	 	<li>[price_info cost=\"£1999\"]+ £60 month[/price_info]</li>\r\n		<li>Provides a strong base from which to grow your presence on-line.</li>\r\n		<li>Allows support for upto 60 products</li>\r\n		<li>[button_link url=\"ecommerce-webshop-standard\"]View Package[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n	[pricing_column title=\"WebShop Pro\"] \r\n	    <ul>\r\n		<li>[price_info cost=\"£2999\"]+ £60 month[/price_info]</li>\r\n		<li>Our flagship product for the SME’s and growing companies. </li>\r\n		<li>WebShop 3.0 Pro provides a high level of function across the board.</li>\r\n		<li>[button_link url=\"e-commerce-webshop-pro\"]View Package[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n[/pricing_table]\r\n','Best eCommerce Packages','','inherit','closed','closed','','71-revision-33','','','2011-07-18 14:02:43','2011-07-18 14:02:43','',71,'http://bestecommerce-uk.com/2011/07/71-revision-33/',0,'revision','',0),(274,1,'2011-07-18 11:19:14','2011-07-18 11:19:14','[pricing_table columns=\"3\"]\r\n	[pricing_column title=\"WebShop Lite\"]\r\n	    <ul>\r\n		<li>[price_info cost=\"£999\"] + £60 month[/price_info]</li>\r\n		<li>Entry level product for the SME’s and growing companies</li>\r\n		<li>Some more info...</li>\r\n		<li>[button_link url=\"http://bestecommerce-uk.com/best-e-commerce-packages/ecommerce-webshop-lite/\"]View Package[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n	[pricing_column title=\"WebShop Standard\" highlight=\"true\"]\r\n	    <ul>\r\n	 	<li>[price_info cost=\"£1999\"]+ £60 month[/price_info]</li>\r\n		<li>Provides a strong base from which to grow your presence on-line with unlimited products and categories and unrivalled ease of use.</li>\r\n		<li>Some more info...</li>\r\n		<li>[button_link url=\"http://bestecommerce-uk.com/best-e-commerce-packages/ecommerce-webshop-standard/\" style=\"impactBtn\"]Title[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n	[pricing_column title=\"WebShop Pro\"] \r\n	    <ul>\r\n		<li>[price_info cost=\"£2999\"]+ £60 month[/price_info]</li>\r\n		<li>Item description and details...</li>\r\n		<li>Some more info...</li>\r\n		<li>[button_link url=\"\"]Title[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n[/pricing_table]\r\n','Best eCommerce Packages','','inherit','closed','closed','','71-revision-16','','','2011-07-18 11:19:14','2011-07-18 11:19:14','',71,'http://bestecommerce-uk.com/2011/07/71-revision-16/',0,'revision','',0),(312,1,'2011-07-18 12:00:02','2011-07-18 12:00:02','<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>Our entry level product for the SME\'s and growing companies, WebShop 3.0 Lite provides a high level of function across the board.</p><p>Supporting advanced functions from multi-tiered pricing structures to integration with Amazon and eBay, the pro system is the benchmark for growing and established High Street brand retailers</p> \r\n<h2>£999 + £60/month   </h2>\r\n<a href=\"/about-us\" class=\"btn impactBtn\"><span>Add to Cart/Sign-Up</span></a><br /><br /><br />\r\n[button_link url=\"http://www.webdesign-uk.org/webshop-3-0-feature-list/\" style=\"medium blue\"]View Webshop 3.0 functionality[/button_link]\r\n[button_link url=\"http://www.webdesign-uk.org/webshop-3-0-feature-list/\" style=\"medium blue\"]Webshop 3.0 functionality.pdf[/button_link]<br /><br /><br />\r\n\r\n</div></div>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n\r\n</div></div>\r\n\r\n\r\n<!--[tabs]\r\n	[tab title=\"Site Management\"]\r\n<h3>Site Management</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\r\n<li>Administration of permissions, system roles and users</li>\r\n<li>Web Services API for easy integration between Magento and any third-party application</li>\r\n<li>Fully 100% customizable design using templates</li>\r\n<li>Customer Groups</li>\r\n<li>One-Click Upgrades</li>\r\n<li>Content Management System for Informational Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n<h3>Analytics and reporting</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n <li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"SEO, Marketing Promotions and Tools\"]\r\n<h3>Search Engine Optimisation</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>100% Search Engine Friendly</li>\r\n<li>Google Site Map</li>\r\n<li>Search Engine Friendly URL’s</li>\r\n<li>URL Rewrites give full control of URL’s</li>\r\n<li>Meta-information for products and categories</li>\r\n<li>Auto-generated Site Map for display on site</li>\r\n<li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Marketing Promotions and Tools</h3>\r\n	<ul>\r\n<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n<h3>Orders</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n<h3>Checkout, Payment and Shipping</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Cheques/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\n<li>Shopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Customer\"]\r\n<h3>Customer Service</h3> \r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Contact Us form</li>\r\n<li>Feature-rich Customer Accounts</li>\r\n<li>Order History with Status Updates</li>\r\n<li>Order Tracking from Account</li>\r\n<li>Password Reset email from front-end and admin panel</li>\r\n<li>Order and Account Update Emails</li>\r\n<li>Customizable Order Emails</li>\r\n<li>Create and Edit Orders from the Admin Panel</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Customer Accounts</h3> \r\n	<ul>\r\n		<li>Order status and history</li>\r\n<li>Re-orders from account</li>\r\n<li>Recently ordered items</li>\r\n<li>Address Book with unlimited addresses</li>\r\n<li>Default Billing and Shipping addresses</li>\r\n<li>Wishlist with ability to add comments</li>\r\n<li>Email or Send RSS feed of Wishlist</li>\r\n<li>Newsletter Subscription management</li>\r\n<li>Product Reviews submitted</li>\r\n<li>Product Tags submitted</li>\r\n<li>Downloadable/Digital Products<li>\r\n<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Management & Browsing\"]\r\n<h3>Catalog Management</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Inventory Management with Backordered items, Minimum and Maximum quantities</li>\r\n<li>Batch Import and Export of catalog</li>\r\n<li>Batch Updates to products in admin panel</li>\r\n<li>Google Base Integration</li>\r\n<li>Simple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products</li>\r\n<li>Virtual Products</li>\r\n<li>Downloadable/Digital Products</li>\r\n<li>Customer Personalized Products - upload text for embroidery, monogramming, etc.</li>\r\n<li>Tax Rates per location, customer group and product type</li>\r\n<li>Attribute Sets for quick product creation of different item types</li>\r\n<li>Create Store-specific attributes on the fly</li>\r\n<li>Media Manager with automatic image resizing and watermarking</li>\r\n<li>Advanced Pricing Rules and support for Special Prices (see marketing tools)</li>\r\n<li>Search Results rewrites and redirects</li>\r\n<li>Approve, Edit and Delete Product Tags</li>\r\n<li>Approve, Edit and Delete Product Reviews</li>\r\n<li>RSS feed for Low Inventory Alerts</li>\r\n<li>Customer Personalized Products - Upload text for embroidery, monogramming, etc. (this one is already there, but want to have the following shown after it)</li>\r\n<li>Customer Personalized Products – Upload Image</li>\r\n<li>Customer Personalized Products – Select Date/Time options for products</li>\r\n<li>Customer Sorting – Define Attributes for Customer Sorting on category (price, brand, etc.)</li>\r\n			</ul>\r\n[/bullet_list]\r\n<h3>Catalog Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Layered / Faceted Navigation for filtering of products in categories</li>\r\n<li>Layered / Faceted Navigation for filtering of products in search results</li>\r\n<li>Flat Catalog Module for Improved Performance with large catalogs</li>\r\n<li>Static Block tool to create category landing pages</li>\r\n<li>Ability to assign designs on category and product level (unique design per product/category)</li>\r\n<li>Configurable search with auto-suggested terms</li>\r\n<li>Recently viewed products</li>\r\n<li>Product comparisons</li>\r\n<li>Recently compared products</li>\r\n<li>Cross-sells, Up-sells and Related Items</li>\r\n<li>Popular Search Terms Cloud</li>\r\n<li>Filter by Product Tags</li>\r\n<li>Product Reviews</li>\r\n<li>Product listing in grid or list format</li>\r\n<li>Breadcrumbs</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Product Browsing\"]\r\n<h3>Product Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Multiple Images Per Product</li>\r\n<li>Product Image Zoom-in Capability</li>\r\n<li>Product Reviews</li>\r\n<li>Related Products</li>\r\n<li>Stock Availability</li>\r\n<li>Multi-Tier Pricing Upsell</li>\r\n<li>Product Option Selection</li>\r\n<li>Grouped Products View</li>\r\n<li>Add to Wishlist</li>\r\n<li>Send to a Friend with Email</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]-->\r\n\r\n\r\n\r\n\r\n','eCommerce WebShop Lite','','inherit','closed','closed','','156-revision-26','','','2011-07-18 12:00:02','2011-07-18 12:00:02','',156,'http://bestecommerce-uk.com/2011/07/156-revision-26/',0,'revision','',0),(275,1,'2011-07-18 11:19:56','2011-07-18 11:19:56','[pricing_table columns=\"3\"]\r\n	[pricing_column title=\"WebShop Lite\"]\r\n	    <ul>\r\n		<li>[price_info cost=\"£999\"] + £60 month[/price_info]</li>\r\n		<li>Entry level product for the SME’s and growing companies</li>\r\n		<li>Some more info...</li>\r\n		<li>[button_link url=\"http://bestecommerce-uk.com/best-e-commerce-packages/ecommerce-webshop-lite/\"]View Package[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n	[pricing_column title=\"WebShop Standard\" highlight=\"true\"]\r\n	    <ul>\r\n	 	<li>[price_info cost=\"£1999\"]+ £60 month[/price_info]</li>\r\n		<li>Provides a strong base from which to grow your presence on-line with unlimited products and categories and unrivalled ease of use.</li>\r\n		<li>Some more info...</li>\r\n		<li>[button_link url=\"http://bestecommerce-uk.com/best-e-commerce-packages/ecommerce-webshop-standard/\" style=\"impactBtn\"]View Package[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n	[pricing_column title=\"WebShop Pro\"] \r\n	    <ul>\r\n		<li>[price_info cost=\"£2999\"]+ £60 month[/price_info]</li>\r\n		<li>Item description and details...</li>\r\n		<li>Some more info...</li>\r\n		<li>[button_link url=\"\"]View Package[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n[/pricing_table]\r\n','Best eCommerce Packages','','inherit','closed','closed','','71-revision-17','','','2011-07-18 11:19:56','2011-07-18 11:19:56','',71,'http://bestecommerce-uk.com/2011/07/71-revision-17/',0,'revision','',0),(311,1,'2011-07-18 13:30:12','2011-07-18 13:30:12','[pricing_table columns=\"3\"]\r\n	[pricing_column title=\"WebShop Lite\"]\r\n	    <ul>\r\n		<li>[price_info cost=\"£999\"] + £60 month[/price_info]</li>\r\n		<li>Entry level product for the SME’s and growing companies</li>\r\n		<li>Allows support for upto 30 products</li>\r\n		<li>[button_link url=\"ecommerce-webshop-lite\"]View Package[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n	[pricing_column title=\"WebShop Standard\" highlight=\"true\"]\r\n	    <ul>\r\n	 	<li>[price_info cost=\"£1999\"]+ £60 month[/price_info]</li>\r\n		<li>Provides a strong base from which to grow your presence on-line.</li>\r\n		<li>Allows support for upto 60 products</li>\r\n		<li>[button_link url=\"ecommerce-webshop-standard\"]View Package[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n	[pricing_column title=\"WebShop Pro\"] \r\n	    <ul>\r\n		<li>[price_info cost=\"£2999\"]+ £60 month[/price_info]</li>\r\n		<li>Our flagship product for the SME’s and growing companies. </li>\r\n		<li>WebShop 3.0 Pro provides a high level of function across the board.</li>\r\n		<li>[button_link url=\"http://bestecommerce-uk.com/best-e-commerce-packages/e-commerce-webshop-pro/\"]View Package[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n[/pricing_table]\r\n','Best eCommerce Packages','','inherit','closed','closed','','71-revision-30','','','2011-07-18 13:30:12','2011-07-18 13:30:12','',71,'http://bestecommerce-uk.com/2011/07/71-revision-30/',0,'revision','',0),(276,1,'2011-07-18 11:21:29','2011-07-18 11:21:29','[pricing_table columns=\"3\"]\r\n	[pricing_column title=\"WebShop Lite\"]\r\n	    <ul>\r\n		<li>[price_info cost=\"£999\"] + £60 month[/price_info]</li>\r\n		<li>Entry level product for the SME’s and growing companies</li>\r\n		<li>Some more info...</li>\r\n		<li>[button_link url=\"http://bestecommerce-uk.com/best-e-commerce-packages/ecommerce-webshop-lite/\"]View Package[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n	[pricing_column title=\"WebShop Standard\" highlight=\"true\"]\r\n	    <ul>\r\n	 	<li>[price_info cost=\"£1999\"]+ £60 month[/price_info]</li>\r\n		<li>Provides a strong base from which to grow your presence on-line with unlimited products and categories and unrivalled ease of use.</li>\r\n		<li>Some more info...</li>\r\n		<li>[button_link url=\"http://bestecommerce-uk.com/best-e-commerce-packages/ecommerce-webshop-standard/\" style=\"impactBtn\"]View Package[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n	[pricing_column title=\"WebShop Pro\"] \r\n	    <ul>\r\n		<li>[price_info cost=\"£2999\"]+ £60 month[/price_info]</li>\r\n		<li>Our flagship product for the SME’s and growing companies. </li>\r\n		<li>WebShop 3.0 Pro provides a high level of function across the board.</li>\r\n		<li>[button_link url=\"\"]View Package[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n[/pricing_table]\r\n','Best eCommerce Packages','','inherit','closed','closed','','71-revision-18','','','2011-07-18 11:21:29','2011-07-18 11:21:29','',71,'http://bestecommerce-uk.com/2011/07/71-revision-18/',0,'revision','',0),(310,1,'2011-07-18 13:29:19','2011-07-18 13:29:19','[pricing_table columns=\"3\"]\r\n	[pricing_column title=\"WebShop Lite\"]\r\n	    <ul>\r\n		<li>[price_info cost=\"£999\"] + £60 month[/price_info]</li>\r\n		<li>Entry level product for the SME’s and growing companies</li>\r\n		<li>Allows support for upto 30 products</li>\r\n		<li>[button_link url=\"ecommerce-webshop-lite\"]View Package[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n	[pricing_column title=\"WebShop Standard\" highlight=\"true\"]\r\n	    <ul>\r\n	 	<li>[price_info cost=\"£1999\"]+ £60 month[/price_info]</li>\r\n		<li>Provides a strong base from which to grow your presence on-line.</li>\r\n		<li>Allows support for upto 60 products</li>\r\n		<li>[button_link url=\"http://bestecommerce-uk.com/best-e-commerce-packages/ecommerce-webshop-standard/\"]View Package[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n	[pricing_column title=\"WebShop Pro\"] \r\n	    <ul>\r\n		<li>[price_info cost=\"£2999\"]+ £60 month[/price_info]</li>\r\n		<li>Our flagship product for the SME’s and growing companies. </li>\r\n		<li>WebShop 3.0 Pro provides a high level of function across the board.</li>\r\n		<li>[button_link url=\"http://bestecommerce-uk.com/best-e-commerce-packages/e-commerce-webshop-pro/\"]View Package[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n[/pricing_table]\r\n','Best eCommerce Packages','','inherit','closed','closed','','71-revision-29','','','2011-07-18 13:29:19','2011-07-18 13:29:19','',71,'http://bestecommerce-uk.com/2011/07/71-revision-29/',0,'revision','',0),(277,1,'2011-07-18 11:24:00','2011-07-18 11:24:00','[pricing_table columns=\"3\"]\r\n	[pricing_column title=\"WebShop Lite\"]\r\n	    <ul>\r\n		<li>[price_info cost=\"£999\"] + £60 month[/price_info]</li>\r\n		<li>Entry level product for the SME’s and growing companies</li>\r\n		<li>Some more info...</li>\r\n		<li>[button_link url=\"http://bestecommerce-uk.com/best-e-commerce-packages/ecommerce-webshop-lite/\"]View Package[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n	[pricing_column title=\"WebShop Standard\" highlight=\"true\"]\r\n	    <ul>\r\n	 	<li>[price_info cost=\"£1999\"]+ £60 month[/price_info]</li>\r\n		<li>Provides a strong base from which to grow your presence on-line with unlimited products and categories and unrivalled ease of use.</li>\r\n		<li>Some more info...</li>\r\n		<li>[button_link url=\"http://bestecommerce-uk.com/best-e-commerce-packages/ecommerce-webshop-standard/\" style=\"impactBtn\"]View Package[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n	[pricing_column title=\"WebShop Pro\"] \r\n	    <ul>\r\n		<li>[price_info cost=\"£2999\"]+ £60 month[/price_info]</li>\r\n		<li>Our flagship product for the SME’s and growing companies. </li>\r\n		<li>WebShop 3.0 Pro provides a high level of function across the board.</li>\r\n		<li>[button_link url=\"http://bestecommerce-uk.com/best-e-commerce-packages/e-commerce-webshop-pro/\"]View Package[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n[/pricing_table]\r\n','Best eCommerce Packages','','inherit','closed','closed','','71-revision-19','','','2011-07-18 11:24:00','2011-07-18 11:24:00','',71,'http://bestecommerce-uk.com/2011/07/71-revision-19/',0,'revision','',0),(278,1,'2011-07-18 11:27:58','2011-07-18 11:27:58','[pricing_table columns=\"3\"]\r\n	[pricing_column title=\"WebShop Lite\"]\r\n	    <ul>\r\n		<li>[price_info cost=\"£999\"] + £60 month[/price_info]</li>\r\n		<li>Entry level product for the SME’s and growing companies</li>\r\n		<li>Some more info...</li>\r\n		<li>[button_link url=\"http://bestecommerce-uk.com/best-e-commerce-packages/ecommerce-webshop-lite/\"]View Package[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n	[pricing_column title=\"WebShop Standard\" highlight=\"true\"]\r\n	    <ul>\r\n	 	<li>[price_info cost=\"£1999\"]+ £60 month[/price_info]</li>\r\n		<li>Provides a strong base from which to grow your presence on-line with unlimited products and categories and unrivalled ease of use.</li>\r\n		<li>Some more info...</li>\r\n		<li>[button_link url=\"http://bestecommerce-uk.com/best-e-commerce-packages/ecommerce-webshop-standard/\"style=\"impactBtn\"]View Package[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n	[pricing_column title=\"WebShop Pro\"] \r\n	    <ul>\r\n		<li>[price_info cost=\"£2999\"]+ £60 month[/price_info]</li>\r\n		<li>Our flagship product for the SME’s and growing companies. </li>\r\n		<li>WebShop 3.0 Pro provides a high level of function across the board.</li>\r\n		<li>[button_link url=\"http://bestecommerce-uk.com/best-e-commerce-packages/e-commerce-webshop-pro/\"]View Package[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n[/pricing_table]\r\n','Best eCommerce Packages','','inherit','closed','closed','','71-revision-20','','','2011-07-18 11:27:58','2011-07-18 11:27:58','',71,'http://bestecommerce-uk.com/2011/07/71-revision-20/',0,'revision','',0),(281,1,'2011-07-18 11:34:35','2011-07-18 11:34:35','[pricing_table columns=\"3\"]\r\n	[pricing_column title=\"WebShop Lite\"]\r\n	    <ul>\r\n		<li>[price_info cost=\"£999\"] + £60 month[/price_info]</li>\r\n		<li>Entry level product for the SME’s and growing companies</li>\r\n		<li>Some more info...</li>\r\n		<li>[button_link url=\"http://bestecommerce-uk.com/best-e-commerce-packages/ecommerce-webshop-lite/\"]View Package[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n	[pricing_column title=\"WebShop Standard\" highlight=\"true\"]\r\n	    <ul>\r\n	 	<li>[price_info cost=\"£1999\"]+ £60 month[/price_info]</li>\r\n		<li>Provides a strong base from which to grow your presence on-line with unlimited products and categories and unrivalled ease of use.</li>\r\n		<li>Some more info...</li>\r\n		<li>[button_link url=\"http://bestecommerce-uk.com/best-e-commerce-packages/ecommerce-webshop-standard/\"style=\"impactBtn\"]View Package[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n	[pricing_column title=\"WebShop Pro\"] \r\n	    <ul>\r\n		<li>[price_info cost=\"£2999\"]+ £60 month[/price_info]</li>\r\n		<li>Our flagship product for the SME’s and growing companies. </li>\r\n		<li>WebShop 3.0 Pro provides a high level of function across the board.</li>\r\n		<li>[button_link url=\"http://bestecommerce-uk.com/best-e-commerce-packages/e-commerce-webshop-pro/\"]View Package[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n[/pricing_table]\r\n','Best eCommerce Packages','','inherit','closed','closed','','71-revision-23','','','2011-07-18 11:34:35','2011-07-18 11:34:35','',71,'http://bestecommerce-uk.com/2011/07/71-revision-23/',0,'revision','',0),(279,1,'2011-07-18 11:29:45','2011-07-18 11:29:45','[pricing_table columns=\"3\"]\r\n	[pricing_column title=\"WebShop Lite\"]\r\n	    <ul>\r\n		<li>[price_info cost=\"£999\"] + £60 month[/price_info]</li>\r\n		<li>Entry level product for the SME’s and growing companies</li>\r\n		<li>Some more info...</li>\r\n		<li>[button_link url=\"http://bestecommerce-uk.com/best-e-commerce-packages/ecommerce-webshop-lite/\"style=\"impactBtn\"]View Package[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n	[pricing_column title=\"WebShop Standard\" highlight=\"true\"]\r\n	    <ul>\r\n	 	<li>[price_info cost=\"£1999\"]+ £60 month[/price_info]</li>\r\n		<li>Provides a strong base from which to grow your presence on-line with unlimited products and categories and unrivalled ease of use.</li>\r\n		<li>Some more info...</li>\r\n		<li>[button_link url=\"http://bestecommerce-uk.com/best-e-commerce-packages/ecommerce-webshop-standard/\"style=\"impactBtn\"]View Package[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n	[pricing_column title=\"WebShop Pro\"] \r\n	    <ul>\r\n		<li>[price_info cost=\"£2999\"]+ £60 month[/price_info]</li>\r\n		<li>Our flagship product for the SME’s and growing companies. </li>\r\n		<li>WebShop 3.0 Pro provides a high level of function across the board.</li>\r\n		<li>[button_link url=\"http://bestecommerce-uk.com/best-e-commerce-packages/e-commerce-webshop-pro/\"]View Package[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n[/pricing_table]\r\n','Best eCommerce Packages','','inherit','closed','closed','','71-revision-21','','','2011-07-18 11:29:45','2011-07-18 11:29:45','',71,'http://bestecommerce-uk.com/2011/07/71-revision-21/',0,'revision','',0),(280,1,'2011-07-18 11:31:21','2011-07-18 11:31:21','[pricing_table columns=\"3\"]\r\n	[pricing_column title=\"WebShop Lite\"]\r\n	    <ul>\r\n		<li>[price_info cost=\"£999\"] + £60 month[/price_info]</li>\r\n		<li>Entry level product for the SME’s and growing companies</li>\r\n		<li>Some more info...</li>\r\n		<li>[button_link url=\"http://bestecommerce-uk.com/best-e-commerce-packages/ecommerce-webshop-lite/\"style=\"Blue Large\"]View Package[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n	[pricing_column title=\"WebShop Standard\" highlight=\"true\"]\r\n	    <ul>\r\n	 	<li>[price_info cost=\"£1999\"]+ £60 month[/price_info]</li>\r\n		<li>Provides a strong base from which to grow your presence on-line with unlimited products and categories and unrivalled ease of use.</li>\r\n		<li>Some more info...</li>\r\n		<li>[button_link url=\"http://bestecommerce-uk.com/best-e-commerce-packages/ecommerce-webshop-standard/\"style=\"impactBtn\"]View Package[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n	[pricing_column title=\"WebShop Pro\"] \r\n	    <ul>\r\n		<li>[price_info cost=\"£2999\"]+ £60 month[/price_info]</li>\r\n		<li>Our flagship product for the SME’s and growing companies. </li>\r\n		<li>WebShop 3.0 Pro provides a high level of function across the board.</li>\r\n		<li>[button_link url=\"http://bestecommerce-uk.com/best-e-commerce-packages/e-commerce-webshop-pro/\"]View Package[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n[/pricing_table]\r\n','Best eCommerce Packages','','inherit','closed','closed','','71-revision-22','','','2011-07-18 11:31:21','2011-07-18 11:31:21','',71,'http://bestecommerce-uk.com/2011/07/71-revision-22/',0,'revision','',0),(284,1,'2011-07-18 11:42:41','2011-07-18 11:42:41','<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>Our entry level product for the SME\'s and growing companies, WebShop 3.0 Lite provides a high level of function across the board.</p><p>Supporting advanced functions from multi-tiered pricing structures to integration with Amazon and eBay, the pro system is the benchmark for growing and established High Street brand retailers</p> \r\n<h2>£999 + £60/month   </h2>\r\n<a href=\"/about-us\" class=\"btn impactBtn\"><span>Add to Cart/Sign-Up</span></a><br /><br /><br />\r\n[button_link url=\"http://www.mysite.com\"]Button Text[/button_link]\r\n\r\n</div></div>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n\r\n</div></div>\r\n\r\n\r\n[tabs]\r\n	[tab title=\"Site Management\"]\r\n<h3>Site Management</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\r\n<li>Administration of permissions, system roles and users</li>\r\n<li>Web Services API for easy integration between Magento and any third-party application</li>\r\n<li>Fully 100% customizable design using templates</li>\r\n<li>Customer Groups</li>\r\n<li>One-Click Upgrades</li>\r\n<li>Content Management System for Informational Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n<h3>Analytics and reporting</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n <li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"SEO, Marketing Promotions and Tools\"]\r\n<h3>Search Engine Optimisation</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>100% Search Engine Friendly</li>\r\n<li>Google Site Map</li>\r\n<li>Search Engine Friendly URL’s</li>\r\n<li>URL Rewrites give full control of URL’s</li>\r\n<li>Meta-information for products and categories</li>\r\n<li>Auto-generated Site Map for display on site</li>\r\n<li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Marketing Promotions and Tools</h3>\r\n	<ul>\r\n<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n<h3>Orders</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n<h3>Checkout, Payment and Shipping</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Cheques/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\n<li>Shopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Customer\"]\r\n<h3>Customer Service</h3> \r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Contact Us form</li>\r\n<li>Feature-rich Customer Accounts</li>\r\n<li>Order History with Status Updates</li>\r\n<li>Order Tracking from Account</li>\r\n<li>Password Reset email from front-end and admin panel</li>\r\n<li>Order and Account Update Emails</li>\r\n<li>Customizable Order Emails</li>\r\n<li>Create and Edit Orders from the Admin Panel</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Customer Accounts</h3> \r\n	<ul>\r\n		<li>Order status and history</li>\r\n<li>Re-orders from account</li>\r\n<li>Recently ordered items</li>\r\n<li>Address Book with unlimited addresses</li>\r\n<li>Default Billing and Shipping addresses</li>\r\n<li>Wishlist with ability to add comments</li>\r\n<li>Email or Send RSS feed of Wishlist</li>\r\n<li>Newsletter Subscription management</li>\r\n<li>Product Reviews submitted</li>\r\n<li>Product Tags submitted</li>\r\n<li>Downloadable/Digital Products<li>\r\n<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Management & Browsing\"]\r\n<h3>Catalog Management</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Inventory Management with Backordered items, Minimum and Maximum quantities</li>\r\n<li>Batch Import and Export of catalog</li>\r\n<li>Batch Updates to products in admin panel</li>\r\n<li>Google Base Integration</li>\r\n<li>Simple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products</li>\r\n<li>Virtual Products</li>\r\n<li>Downloadable/Digital Products</li>\r\n<li>Customer Personalized Products - upload text for embroidery, monogramming, etc.</li>\r\n<li>Tax Rates per location, customer group and product type</li>\r\n<li>Attribute Sets for quick product creation of different item types</li>\r\n<li>Create Store-specific attributes on the fly</li>\r\n<li>Media Manager with automatic image resizing and watermarking</li>\r\n<li>Advanced Pricing Rules and support for Special Prices (see marketing tools)</li>\r\n<li>Search Results rewrites and redirects</li>\r\n<li>Approve, Edit and Delete Product Tags</li>\r\n<li>Approve, Edit and Delete Product Reviews</li>\r\n<li>RSS feed for Low Inventory Alerts</li>\r\n<li>Customer Personalized Products - Upload text for embroidery, monogramming, etc. (this one is already there, but want to have the following shown after it)</li>\r\n<li>Customer Personalized Products – Upload Image</li>\r\n<li>Customer Personalized Products – Select Date/Time options for products</li>\r\n<li>Customer Sorting – Define Attributes for Customer Sorting on category (price, brand, etc.)</li>\r\n			</ul>\r\n[/bullet_list]\r\n<h3>Catalog Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Layered / Faceted Navigation for filtering of products in categories</li>\r\n<li>Layered / Faceted Navigation for filtering of products in search results</li>\r\n<li>Flat Catalog Module for Improved Performance with large catalogs</li>\r\n<li>Static Block tool to create category landing pages</li>\r\n<li>Ability to assign designs on category and product level (unique design per product/category)</li>\r\n<li>Configurable search with auto-suggested terms</li>\r\n<li>Recently viewed products</li>\r\n<li>Product comparisons</li>\r\n<li>Recently compared products</li>\r\n<li>Cross-sells, Up-sells and Related Items</li>\r\n<li>Popular Search Terms Cloud</li>\r\n<li>Filter by Product Tags</li>\r\n<li>Product Reviews</li>\r\n<li>Product listing in grid or list format</li>\r\n<li>Breadcrumbs</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Product Browsing\"]\r\n<h3>Product Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Multiple Images Per Product</li>\r\n<li>Product Image Zoom-in Capability</li>\r\n<li>Product Reviews</li>\r\n<li>Related Products</li>\r\n<li>Stock Availability</li>\r\n<li>Multi-Tier Pricing Upsell</li>\r\n<li>Product Option Selection</li>\r\n<li>Grouped Products View</li>\r\n<li>Add to Wishlist</li>\r\n<li>Send to a Friend with Email</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]\r\n\r\n\r\n\r\n\r\n','eCommerce WebShop Lite','','inherit','closed','closed','','156-revision-11','','','2011-07-18 11:42:41','2011-07-18 11:42:41','',156,'http://bestecommerce-uk.com/2011/07/156-revision-11/',0,'revision','',0),(282,1,'2011-07-15 14:44:03','2011-07-15 14:44:03','<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>Our entry level product for the SME\'s and growing companies, WebShop 3.0 Lite provides a high level of function across the board.</p><p>Supporting advanced functions from multi-tiered pricing structures to integration with Amazon and eBay, the pro system is the benchmark for growing and established High Street brand retailers</p> \r\n<h2>£999 + £60/month   </h2>\r\n<a href=\"/about-us\" class=\"btn impactBtn\"><span>Add to Cart/Sign-Up</span></a><br /><br /><br />\r\n\r\n</div></div>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n\r\n</div></div>\r\n\r\n\r\n[tabs]\r\n	[tab title=\"Site Management\"]\r\n<h3>Site Management</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\r\n<li>Administration of permissions, system roles and users</li>\r\n<li>Web Services API for easy integration between Magento and any third-party application</li>\r\n<li>Fully 100% customizable design using templates</li>\r\n<li>Customer Groups</li>\r\n<li>One-Click Upgrades</li>\r\n<li>Content Management System for Informational Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n<h3>Analytics and reporting</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n <li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"SEO, Marketing Promotions and Tools\"]\r\n<h3>Search Engine Optimisation</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>100% Search Engine Friendly</li>\r\n<li>Google Site Map</li>\r\n<li>Search Engine Friendly URL’s</li>\r\n<li>URL Rewrites give full control of URL’s</li>\r\n<li>Meta-information for products and categories</li>\r\n<li>Auto-generated Site Map for display on site</li>\r\n<li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Marketing Promotions and Tools</h3>\r\n	<ul>\r\n<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n<h3>Orders</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n<h3>Checkout, Payment and Shipping</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Cheques/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\n<li>Shopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Customer\"]\r\n<h3>Customer Service</h3> \r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Contact Us form</li>\r\n<li>Feature-rich Customer Accounts</li>\r\n<li>Order History with Status Updates</li>\r\n<li>Order Tracking from Account</li>\r\n<li>Password Reset email from front-end and admin panel</li>\r\n<li>Order and Account Update Emails</li>\r\n<li>Customizable Order Emails</li>\r\n<li>Create and Edit Orders from the Admin Panel</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Customer Accounts</h3> \r\n	<ul>\r\n		<li>Order status and history</li>\r\n<li>Re-orders from account</li>\r\n<li>Recently ordered items</li>\r\n<li>Address Book with unlimited addresses</li>\r\n<li>Default Billing and Shipping addresses</li>\r\n<li>Wishlist with ability to add comments</li>\r\n<li>Email or Send RSS feed of Wishlist</li>\r\n<li>Newsletter Subscription management</li>\r\n<li>Product Reviews submitted</li>\r\n<li>Product Tags submitted</li>\r\n<li>Downloadable/Digital Products<li>\r\n<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Management & Browsing\"]\r\n<h3>Catalog Management</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Inventory Management with Backordered items, Minimum and Maximum quantities</li>\r\n<li>Batch Import and Export of catalog</li>\r\n<li>Batch Updates to products in admin panel</li>\r\n<li>Google Base Integration</li>\r\n<li>Simple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products</li>\r\n<li>Virtual Products</li>\r\n<li>Downloadable/Digital Products</li>\r\n<li>Customer Personalized Products - upload text for embroidery, monogramming, etc.</li>\r\n<li>Tax Rates per location, customer group and product type</li>\r\n<li>Attribute Sets for quick product creation of different item types</li>\r\n<li>Create Store-specific attributes on the fly</li>\r\n<li>Media Manager with automatic image resizing and watermarking</li>\r\n<li>Advanced Pricing Rules and support for Special Prices (see marketing tools)</li>\r\n<li>Search Results rewrites and redirects</li>\r\n<li>Approve, Edit and Delete Product Tags</li>\r\n<li>Approve, Edit and Delete Product Reviews</li>\r\n<li>RSS feed for Low Inventory Alerts</li>\r\n<li>Customer Personalized Products - Upload text for embroidery, monogramming, etc. (this one is already there, but want to have the following shown after it)</li>\r\n<li>Customer Personalized Products – Upload Image</li>\r\n<li>Customer Personalized Products – Select Date/Time options for products</li>\r\n<li>Customer Sorting – Define Attributes for Customer Sorting on category (price, brand, etc.)</li>\r\n			</ul>\r\n[/bullet_list]\r\n<h3>Catalog Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Layered / Faceted Navigation for filtering of products in categories</li>\r\n<li>Layered / Faceted Navigation for filtering of products in search results</li>\r\n<li>Flat Catalog Module for Improved Performance with large catalogs</li>\r\n<li>Static Block tool to create category landing pages</li>\r\n<li>Ability to assign designs on category and product level (unique design per product/category)</li>\r\n<li>Configurable search with auto-suggested terms</li>\r\n<li>Recently viewed products</li>\r\n<li>Product comparisons</li>\r\n<li>Recently compared products</li>\r\n<li>Cross-sells, Up-sells and Related Items</li>\r\n<li>Popular Search Terms Cloud</li>\r\n<li>Filter by Product Tags</li>\r\n<li>Product Reviews</li>\r\n<li>Product listing in grid or list format</li>\r\n<li>Breadcrumbs</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Product Browsing\"]\r\n<h3>Product Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Multiple Images Per Product</li>\r\n<li>Product Image Zoom-in Capability</li>\r\n<li>Product Reviews</li>\r\n<li>Related Products</li>\r\n<li>Stock Availability</li>\r\n<li>Multi-Tier Pricing Upsell</li>\r\n<li>Product Option Selection</li>\r\n<li>Grouped Products View</li>\r\n<li>Add to Wishlist</li>\r\n<li>Send to a Friend with Email</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]\r\n\r\n\r\n\r\n\r\n','eCommerce WebShop Lite','','inherit','closed','closed','','156-revision-9','','','2011-07-15 14:44:03','2011-07-15 14:44:03','',156,'http://bestecommerce-uk.com/2011/07/156-revision-9/',0,'revision','',0),(283,1,'2011-07-18 11:39:39','2011-07-18 11:39:39','<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>Our entry level product for the SME\'s and growing companies, WebShop 3.0 Lite provides a high level of function across the board.</p><p>Supporting advanced functions from multi-tiered pricing structures to integration with Amazon and eBay, the pro system is the benchmark for growing and established High Street brand retailers</p> \r\n<h2>£999 + £60/month   </h2>\r\n<a href=\"/about-us\" class=\"btn impactBtn\"><span>Add to Cart/Sign-Up</span></a><br /><br /><br />\r\n<a href=\"/about-us\" class=\"btn impactBtn\"><span>View full package functionality</span></a><br /><br /><br />\r\n\r\n</div></div>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n\r\n</div></div>\r\n\r\n\r\n[tabs]\r\n	[tab title=\"Site Management\"]\r\n<h3>Site Management</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\r\n<li>Administration of permissions, system roles and users</li>\r\n<li>Web Services API for easy integration between Magento and any third-party application</li>\r\n<li>Fully 100% customizable design using templates</li>\r\n<li>Customer Groups</li>\r\n<li>One-Click Upgrades</li>\r\n<li>Content Management System for Informational Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n<h3>Analytics and reporting</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n <li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"SEO, Marketing Promotions and Tools\"]\r\n<h3>Search Engine Optimisation</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>100% Search Engine Friendly</li>\r\n<li>Google Site Map</li>\r\n<li>Search Engine Friendly URL’s</li>\r\n<li>URL Rewrites give full control of URL’s</li>\r\n<li>Meta-information for products and categories</li>\r\n<li>Auto-generated Site Map for display on site</li>\r\n<li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Marketing Promotions and Tools</h3>\r\n	<ul>\r\n<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n<h3>Orders</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n<h3>Checkout, Payment and Shipping</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Cheques/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\n<li>Shopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Customer\"]\r\n<h3>Customer Service</h3> \r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Contact Us form</li>\r\n<li>Feature-rich Customer Accounts</li>\r\n<li>Order History with Status Updates</li>\r\n<li>Order Tracking from Account</li>\r\n<li>Password Reset email from front-end and admin panel</li>\r\n<li>Order and Account Update Emails</li>\r\n<li>Customizable Order Emails</li>\r\n<li>Create and Edit Orders from the Admin Panel</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Customer Accounts</h3> \r\n	<ul>\r\n		<li>Order status and history</li>\r\n<li>Re-orders from account</li>\r\n<li>Recently ordered items</li>\r\n<li>Address Book with unlimited addresses</li>\r\n<li>Default Billing and Shipping addresses</li>\r\n<li>Wishlist with ability to add comments</li>\r\n<li>Email or Send RSS feed of Wishlist</li>\r\n<li>Newsletter Subscription management</li>\r\n<li>Product Reviews submitted</li>\r\n<li>Product Tags submitted</li>\r\n<li>Downloadable/Digital Products<li>\r\n<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Management & Browsing\"]\r\n<h3>Catalog Management</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Inventory Management with Backordered items, Minimum and Maximum quantities</li>\r\n<li>Batch Import and Export of catalog</li>\r\n<li>Batch Updates to products in admin panel</li>\r\n<li>Google Base Integration</li>\r\n<li>Simple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products</li>\r\n<li>Virtual Products</li>\r\n<li>Downloadable/Digital Products</li>\r\n<li>Customer Personalized Products - upload text for embroidery, monogramming, etc.</li>\r\n<li>Tax Rates per location, customer group and product type</li>\r\n<li>Attribute Sets for quick product creation of different item types</li>\r\n<li>Create Store-specific attributes on the fly</li>\r\n<li>Media Manager with automatic image resizing and watermarking</li>\r\n<li>Advanced Pricing Rules and support for Special Prices (see marketing tools)</li>\r\n<li>Search Results rewrites and redirects</li>\r\n<li>Approve, Edit and Delete Product Tags</li>\r\n<li>Approve, Edit and Delete Product Reviews</li>\r\n<li>RSS feed for Low Inventory Alerts</li>\r\n<li>Customer Personalized Products - Upload text for embroidery, monogramming, etc. (this one is already there, but want to have the following shown after it)</li>\r\n<li>Customer Personalized Products – Upload Image</li>\r\n<li>Customer Personalized Products – Select Date/Time options for products</li>\r\n<li>Customer Sorting – Define Attributes for Customer Sorting on category (price, brand, etc.)</li>\r\n			</ul>\r\n[/bullet_list]\r\n<h3>Catalog Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Layered / Faceted Navigation for filtering of products in categories</li>\r\n<li>Layered / Faceted Navigation for filtering of products in search results</li>\r\n<li>Flat Catalog Module for Improved Performance with large catalogs</li>\r\n<li>Static Block tool to create category landing pages</li>\r\n<li>Ability to assign designs on category and product level (unique design per product/category)</li>\r\n<li>Configurable search with auto-suggested terms</li>\r\n<li>Recently viewed products</li>\r\n<li>Product comparisons</li>\r\n<li>Recently compared products</li>\r\n<li>Cross-sells, Up-sells and Related Items</li>\r\n<li>Popular Search Terms Cloud</li>\r\n<li>Filter by Product Tags</li>\r\n<li>Product Reviews</li>\r\n<li>Product listing in grid or list format</li>\r\n<li>Breadcrumbs</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Product Browsing\"]\r\n<h3>Product Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Multiple Images Per Product</li>\r\n<li>Product Image Zoom-in Capability</li>\r\n<li>Product Reviews</li>\r\n<li>Related Products</li>\r\n<li>Stock Availability</li>\r\n<li>Multi-Tier Pricing Upsell</li>\r\n<li>Product Option Selection</li>\r\n<li>Grouped Products View</li>\r\n<li>Add to Wishlist</li>\r\n<li>Send to a Friend with Email</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]\r\n\r\n\r\n\r\n\r\n','eCommerce WebShop Lite','','inherit','closed','closed','','156-revision-10','','','2011-07-18 11:39:39','2011-07-18 11:39:39','',156,'http://bestecommerce-uk.com/2011/07/156-revision-10/',0,'revision','',0),(285,1,'2011-07-18 11:43:13','2011-07-18 11:43:13','<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>Our entry level product for the SME\'s and growing companies, WebShop 3.0 Lite provides a high level of function across the board.</p><p>Supporting advanced functions from multi-tiered pricing structures to integration with Amazon and eBay, the pro system is the benchmark for growing and established High Street brand retailers</p> \r\n<h2>£999 + £60/month   </h2>\r\n<a href=\"/about-us\" class=\"btn impactBtn\"><span>Add to Cart/Sign-Up</span></a><br /><br /><br />\r\n[button_link url=\"http://www.mysite.com\"]Button Text[/button_link]<br /><br /><br />\r\n\r\n</div></div>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n\r\n</div></div>\r\n\r\n\r\n[tabs]\r\n	[tab title=\"Site Management\"]\r\n<h3>Site Management</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\r\n<li>Administration of permissions, system roles and users</li>\r\n<li>Web Services API for easy integration between Magento and any third-party application</li>\r\n<li>Fully 100% customizable design using templates</li>\r\n<li>Customer Groups</li>\r\n<li>One-Click Upgrades</li>\r\n<li>Content Management System for Informational Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n<h3>Analytics and reporting</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n <li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"SEO, Marketing Promotions and Tools\"]\r\n<h3>Search Engine Optimisation</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>100% Search Engine Friendly</li>\r\n<li>Google Site Map</li>\r\n<li>Search Engine Friendly URL’s</li>\r\n<li>URL Rewrites give full control of URL’s</li>\r\n<li>Meta-information for products and categories</li>\r\n<li>Auto-generated Site Map for display on site</li>\r\n<li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Marketing Promotions and Tools</h3>\r\n	<ul>\r\n<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n<h3>Orders</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n<h3>Checkout, Payment and Shipping</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Cheques/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\n<li>Shopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Customer\"]\r\n<h3>Customer Service</h3> \r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Contact Us form</li>\r\n<li>Feature-rich Customer Accounts</li>\r\n<li>Order History with Status Updates</li>\r\n<li>Order Tracking from Account</li>\r\n<li>Password Reset email from front-end and admin panel</li>\r\n<li>Order and Account Update Emails</li>\r\n<li>Customizable Order Emails</li>\r\n<li>Create and Edit Orders from the Admin Panel</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Customer Accounts</h3> \r\n	<ul>\r\n		<li>Order status and history</li>\r\n<li>Re-orders from account</li>\r\n<li>Recently ordered items</li>\r\n<li>Address Book with unlimited addresses</li>\r\n<li>Default Billing and Shipping addresses</li>\r\n<li>Wishlist with ability to add comments</li>\r\n<li>Email or Send RSS feed of Wishlist</li>\r\n<li>Newsletter Subscription management</li>\r\n<li>Product Reviews submitted</li>\r\n<li>Product Tags submitted</li>\r\n<li>Downloadable/Digital Products<li>\r\n<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Management & Browsing\"]\r\n<h3>Catalog Management</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Inventory Management with Backordered items, Minimum and Maximum quantities</li>\r\n<li>Batch Import and Export of catalog</li>\r\n<li>Batch Updates to products in admin panel</li>\r\n<li>Google Base Integration</li>\r\n<li>Simple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products</li>\r\n<li>Virtual Products</li>\r\n<li>Downloadable/Digital Products</li>\r\n<li>Customer Personalized Products - upload text for embroidery, monogramming, etc.</li>\r\n<li>Tax Rates per location, customer group and product type</li>\r\n<li>Attribute Sets for quick product creation of different item types</li>\r\n<li>Create Store-specific attributes on the fly</li>\r\n<li>Media Manager with automatic image resizing and watermarking</li>\r\n<li>Advanced Pricing Rules and support for Special Prices (see marketing tools)</li>\r\n<li>Search Results rewrites and redirects</li>\r\n<li>Approve, Edit and Delete Product Tags</li>\r\n<li>Approve, Edit and Delete Product Reviews</li>\r\n<li>RSS feed for Low Inventory Alerts</li>\r\n<li>Customer Personalized Products - Upload text for embroidery, monogramming, etc. (this one is already there, but want to have the following shown after it)</li>\r\n<li>Customer Personalized Products – Upload Image</li>\r\n<li>Customer Personalized Products – Select Date/Time options for products</li>\r\n<li>Customer Sorting – Define Attributes for Customer Sorting on category (price, brand, etc.)</li>\r\n			</ul>\r\n[/bullet_list]\r\n<h3>Catalog Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Layered / Faceted Navigation for filtering of products in categories</li>\r\n<li>Layered / Faceted Navigation for filtering of products in search results</li>\r\n<li>Flat Catalog Module for Improved Performance with large catalogs</li>\r\n<li>Static Block tool to create category landing pages</li>\r\n<li>Ability to assign designs on category and product level (unique design per product/category)</li>\r\n<li>Configurable search with auto-suggested terms</li>\r\n<li>Recently viewed products</li>\r\n<li>Product comparisons</li>\r\n<li>Recently compared products</li>\r\n<li>Cross-sells, Up-sells and Related Items</li>\r\n<li>Popular Search Terms Cloud</li>\r\n<li>Filter by Product Tags</li>\r\n<li>Product Reviews</li>\r\n<li>Product listing in grid or list format</li>\r\n<li>Breadcrumbs</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Product Browsing\"]\r\n<h3>Product Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Multiple Images Per Product</li>\r\n<li>Product Image Zoom-in Capability</li>\r\n<li>Product Reviews</li>\r\n<li>Related Products</li>\r\n<li>Stock Availability</li>\r\n<li>Multi-Tier Pricing Upsell</li>\r\n<li>Product Option Selection</li>\r\n<li>Grouped Products View</li>\r\n<li>Add to Wishlist</li>\r\n<li>Send to a Friend with Email</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]\r\n\r\n\r\n\r\n\r\n','eCommerce WebShop Lite','','inherit','closed','closed','','156-revision-12','','','2011-07-18 11:43:13','2011-07-18 11:43:13','',156,'http://bestecommerce-uk.com/2011/07/156-revision-12/',0,'revision','',0),(286,1,'2011-07-18 11:45:34','2011-07-18 11:45:34','<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>Our entry level product for the SME\'s and growing companies, WebShop 3.0 Lite provides a high level of function across the board.</p><p>Supporting advanced functions from multi-tiered pricing structures to integration with Amazon and eBay, the pro system is the benchmark for growing and established High Street brand retailers</p> \r\n<h2>£999 + £60/month   </h2>\r\n<a href=\"/about-us\" class=\"btn impactBtn\"><span>Add to Cart/Sign-Up</span></a><br /><br /><br />\r\n[button_link url=\"http://www.webdesign-uk.org/webshop-3-0-feature-list/\"style-\"medium blue\"]View Webshop 3.0 functionality[/button_link]<br /><br /><br />\r\n\r\n</div></div>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n\r\n</div></div>\r\n\r\n\r\n[tabs]\r\n	[tab title=\"Site Management\"]\r\n<h3>Site Management</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\r\n<li>Administration of permissions, system roles and users</li>\r\n<li>Web Services API for easy integration between Magento and any third-party application</li>\r\n<li>Fully 100% customizable design using templates</li>\r\n<li>Customer Groups</li>\r\n<li>One-Click Upgrades</li>\r\n<li>Content Management System for Informational Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n<h3>Analytics and reporting</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n <li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"SEO, Marketing Promotions and Tools\"]\r\n<h3>Search Engine Optimisation</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>100% Search Engine Friendly</li>\r\n<li>Google Site Map</li>\r\n<li>Search Engine Friendly URL’s</li>\r\n<li>URL Rewrites give full control of URL’s</li>\r\n<li>Meta-information for products and categories</li>\r\n<li>Auto-generated Site Map for display on site</li>\r\n<li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Marketing Promotions and Tools</h3>\r\n	<ul>\r\n<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n<h3>Orders</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n<h3>Checkout, Payment and Shipping</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Cheques/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\n<li>Shopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Customer\"]\r\n<h3>Customer Service</h3> \r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Contact Us form</li>\r\n<li>Feature-rich Customer Accounts</li>\r\n<li>Order History with Status Updates</li>\r\n<li>Order Tracking from Account</li>\r\n<li>Password Reset email from front-end and admin panel</li>\r\n<li>Order and Account Update Emails</li>\r\n<li>Customizable Order Emails</li>\r\n<li>Create and Edit Orders from the Admin Panel</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Customer Accounts</h3> \r\n	<ul>\r\n		<li>Order status and history</li>\r\n<li>Re-orders from account</li>\r\n<li>Recently ordered items</li>\r\n<li>Address Book with unlimited addresses</li>\r\n<li>Default Billing and Shipping addresses</li>\r\n<li>Wishlist with ability to add comments</li>\r\n<li>Email or Send RSS feed of Wishlist</li>\r\n<li>Newsletter Subscription management</li>\r\n<li>Product Reviews submitted</li>\r\n<li>Product Tags submitted</li>\r\n<li>Downloadable/Digital Products<li>\r\n<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Management & Browsing\"]\r\n<h3>Catalog Management</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Inventory Management with Backordered items, Minimum and Maximum quantities</li>\r\n<li>Batch Import and Export of catalog</li>\r\n<li>Batch Updates to products in admin panel</li>\r\n<li>Google Base Integration</li>\r\n<li>Simple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products</li>\r\n<li>Virtual Products</li>\r\n<li>Downloadable/Digital Products</li>\r\n<li>Customer Personalized Products - upload text for embroidery, monogramming, etc.</li>\r\n<li>Tax Rates per location, customer group and product type</li>\r\n<li>Attribute Sets for quick product creation of different item types</li>\r\n<li>Create Store-specific attributes on the fly</li>\r\n<li>Media Manager with automatic image resizing and watermarking</li>\r\n<li>Advanced Pricing Rules and support for Special Prices (see marketing tools)</li>\r\n<li>Search Results rewrites and redirects</li>\r\n<li>Approve, Edit and Delete Product Tags</li>\r\n<li>Approve, Edit and Delete Product Reviews</li>\r\n<li>RSS feed for Low Inventory Alerts</li>\r\n<li>Customer Personalized Products - Upload text for embroidery, monogramming, etc. (this one is already there, but want to have the following shown after it)</li>\r\n<li>Customer Personalized Products – Upload Image</li>\r\n<li>Customer Personalized Products – Select Date/Time options for products</li>\r\n<li>Customer Sorting – Define Attributes for Customer Sorting on category (price, brand, etc.)</li>\r\n			</ul>\r\n[/bullet_list]\r\n<h3>Catalog Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Layered / Faceted Navigation for filtering of products in categories</li>\r\n<li>Layered / Faceted Navigation for filtering of products in search results</li>\r\n<li>Flat Catalog Module for Improved Performance with large catalogs</li>\r\n<li>Static Block tool to create category landing pages</li>\r\n<li>Ability to assign designs on category and product level (unique design per product/category)</li>\r\n<li>Configurable search with auto-suggested terms</li>\r\n<li>Recently viewed products</li>\r\n<li>Product comparisons</li>\r\n<li>Recently compared products</li>\r\n<li>Cross-sells, Up-sells and Related Items</li>\r\n<li>Popular Search Terms Cloud</li>\r\n<li>Filter by Product Tags</li>\r\n<li>Product Reviews</li>\r\n<li>Product listing in grid or list format</li>\r\n<li>Breadcrumbs</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Product Browsing\"]\r\n<h3>Product Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Multiple Images Per Product</li>\r\n<li>Product Image Zoom-in Capability</li>\r\n<li>Product Reviews</li>\r\n<li>Related Products</li>\r\n<li>Stock Availability</li>\r\n<li>Multi-Tier Pricing Upsell</li>\r\n<li>Product Option Selection</li>\r\n<li>Grouped Products View</li>\r\n<li>Add to Wishlist</li>\r\n<li>Send to a Friend with Email</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]\r\n\r\n\r\n\r\n\r\n','eCommerce WebShop Lite','','inherit','closed','closed','','156-revision-13','','','2011-07-18 11:45:34','2011-07-18 11:45:34','',156,'http://bestecommerce-uk.com/2011/07/156-revision-13/',0,'revision','',0),(287,1,'2011-07-18 11:47:47','2011-07-18 11:47:47','<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>Our entry level product for the SME\'s and growing companies, WebShop 3.0 Lite provides a high level of function across the board.</p><p>Supporting advanced functions from multi-tiered pricing structures to integration with Amazon and eBay, the pro system is the benchmark for growing and established High Street brand retailers</p> \r\n<h2>£999 + £60/month   </h2>\r\n<a href=\"/about-us\" class=\"btn impactBtn\"><span>Add to Cart/Sign-Up</span></a><br /><br /><br />\r\n[button_link url=\"http://www.webdesign-uk.org/webshop-3-0-feature-list/\"][style-\"medium blue\"]View Webshop 3.0 functionality[/button_link]<br /><br /><br />\r\n\r\n</div></div>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n\r\n</div></div>\r\n\r\n\r\n[tabs]\r\n	[tab title=\"Site Management\"]\r\n<h3>Site Management</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\r\n<li>Administration of permissions, system roles and users</li>\r\n<li>Web Services API for easy integration between Magento and any third-party application</li>\r\n<li>Fully 100% customizable design using templates</li>\r\n<li>Customer Groups</li>\r\n<li>One-Click Upgrades</li>\r\n<li>Content Management System for Informational Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n<h3>Analytics and reporting</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n <li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"SEO, Marketing Promotions and Tools\"]\r\n<h3>Search Engine Optimisation</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>100% Search Engine Friendly</li>\r\n<li>Google Site Map</li>\r\n<li>Search Engine Friendly URL’s</li>\r\n<li>URL Rewrites give full control of URL’s</li>\r\n<li>Meta-information for products and categories</li>\r\n<li>Auto-generated Site Map for display on site</li>\r\n<li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Marketing Promotions and Tools</h3>\r\n	<ul>\r\n<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n<h3>Orders</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n<h3>Checkout, Payment and Shipping</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Cheques/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\n<li>Shopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Customer\"]\r\n<h3>Customer Service</h3> \r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Contact Us form</li>\r\n<li>Feature-rich Customer Accounts</li>\r\n<li>Order History with Status Updates</li>\r\n<li>Order Tracking from Account</li>\r\n<li>Password Reset email from front-end and admin panel</li>\r\n<li>Order and Account Update Emails</li>\r\n<li>Customizable Order Emails</li>\r\n<li>Create and Edit Orders from the Admin Panel</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Customer Accounts</h3> \r\n	<ul>\r\n		<li>Order status and history</li>\r\n<li>Re-orders from account</li>\r\n<li>Recently ordered items</li>\r\n<li>Address Book with unlimited addresses</li>\r\n<li>Default Billing and Shipping addresses</li>\r\n<li>Wishlist with ability to add comments</li>\r\n<li>Email or Send RSS feed of Wishlist</li>\r\n<li>Newsletter Subscription management</li>\r\n<li>Product Reviews submitted</li>\r\n<li>Product Tags submitted</li>\r\n<li>Downloadable/Digital Products<li>\r\n<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Management & Browsing\"]\r\n<h3>Catalog Management</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Inventory Management with Backordered items, Minimum and Maximum quantities</li>\r\n<li>Batch Import and Export of catalog</li>\r\n<li>Batch Updates to products in admin panel</li>\r\n<li>Google Base Integration</li>\r\n<li>Simple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products</li>\r\n<li>Virtual Products</li>\r\n<li>Downloadable/Digital Products</li>\r\n<li>Customer Personalized Products - upload text for embroidery, monogramming, etc.</li>\r\n<li>Tax Rates per location, customer group and product type</li>\r\n<li>Attribute Sets for quick product creation of different item types</li>\r\n<li>Create Store-specific attributes on the fly</li>\r\n<li>Media Manager with automatic image resizing and watermarking</li>\r\n<li>Advanced Pricing Rules and support for Special Prices (see marketing tools)</li>\r\n<li>Search Results rewrites and redirects</li>\r\n<li>Approve, Edit and Delete Product Tags</li>\r\n<li>Approve, Edit and Delete Product Reviews</li>\r\n<li>RSS feed for Low Inventory Alerts</li>\r\n<li>Customer Personalized Products - Upload text for embroidery, monogramming, etc. (this one is already there, but want to have the following shown after it)</li>\r\n<li>Customer Personalized Products – Upload Image</li>\r\n<li>Customer Personalized Products – Select Date/Time options for products</li>\r\n<li>Customer Sorting – Define Attributes for Customer Sorting on category (price, brand, etc.)</li>\r\n			</ul>\r\n[/bullet_list]\r\n<h3>Catalog Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Layered / Faceted Navigation for filtering of products in categories</li>\r\n<li>Layered / Faceted Navigation for filtering of products in search results</li>\r\n<li>Flat Catalog Module for Improved Performance with large catalogs</li>\r\n<li>Static Block tool to create category landing pages</li>\r\n<li>Ability to assign designs on category and product level (unique design per product/category)</li>\r\n<li>Configurable search with auto-suggested terms</li>\r\n<li>Recently viewed products</li>\r\n<li>Product comparisons</li>\r\n<li>Recently compared products</li>\r\n<li>Cross-sells, Up-sells and Related Items</li>\r\n<li>Popular Search Terms Cloud</li>\r\n<li>Filter by Product Tags</li>\r\n<li>Product Reviews</li>\r\n<li>Product listing in grid or list format</li>\r\n<li>Breadcrumbs</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Product Browsing\"]\r\n<h3>Product Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Multiple Images Per Product</li>\r\n<li>Product Image Zoom-in Capability</li>\r\n<li>Product Reviews</li>\r\n<li>Related Products</li>\r\n<li>Stock Availability</li>\r\n<li>Multi-Tier Pricing Upsell</li>\r\n<li>Product Option Selection</li>\r\n<li>Grouped Products View</li>\r\n<li>Add to Wishlist</li>\r\n<li>Send to a Friend with Email</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]\r\n\r\n\r\n\r\n\r\n','eCommerce WebShop Lite','','inherit','closed','closed','','156-revision-14','','','2011-07-18 11:47:47','2011-07-18 11:47:47','',156,'http://bestecommerce-uk.com/2011/07/156-revision-14/',0,'revision','',0),(288,1,'2011-07-18 11:48:22','2011-07-18 11:48:22','<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>Our entry level product for the SME\'s and growing companies, WebShop 3.0 Lite provides a high level of function across the board.</p><p>Supporting advanced functions from multi-tiered pricing structures to integration with Amazon and eBay, the pro system is the benchmark for growing and established High Street brand retailers</p> \r\n<h2>£999 + £60/month   </h2>\r\n<a href=\"/about-us\" class=\"btn impactBtn\"><span>Add to Cart/Sign-Up</span></a><br /><br /><br />\r\n[button_link url=\"http://www.webdesign-uk.org/webshop-3-0-feature-list/\"style-\"medium blue\"]View Webshop 3.0 functionality[/button_link]<br /><br /><br />\r\n\r\n</div></div>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n\r\n</div></div>\r\n\r\n\r\n[tabs]\r\n	[tab title=\"Site Management\"]\r\n<h3>Site Management</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\r\n<li>Administration of permissions, system roles and users</li>\r\n<li>Web Services API for easy integration between Magento and any third-party application</li>\r\n<li>Fully 100% customizable design using templates</li>\r\n<li>Customer Groups</li>\r\n<li>One-Click Upgrades</li>\r\n<li>Content Management System for Informational Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n<h3>Analytics and reporting</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n <li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"SEO, Marketing Promotions and Tools\"]\r\n<h3>Search Engine Optimisation</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>100% Search Engine Friendly</li>\r\n<li>Google Site Map</li>\r\n<li>Search Engine Friendly URL’s</li>\r\n<li>URL Rewrites give full control of URL’s</li>\r\n<li>Meta-information for products and categories</li>\r\n<li>Auto-generated Site Map for display on site</li>\r\n<li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Marketing Promotions and Tools</h3>\r\n	<ul>\r\n<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n<h3>Orders</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n<h3>Checkout, Payment and Shipping</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Cheques/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\n<li>Shopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Customer\"]\r\n<h3>Customer Service</h3> \r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Contact Us form</li>\r\n<li>Feature-rich Customer Accounts</li>\r\n<li>Order History with Status Updates</li>\r\n<li>Order Tracking from Account</li>\r\n<li>Password Reset email from front-end and admin panel</li>\r\n<li>Order and Account Update Emails</li>\r\n<li>Customizable Order Emails</li>\r\n<li>Create and Edit Orders from the Admin Panel</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Customer Accounts</h3> \r\n	<ul>\r\n		<li>Order status and history</li>\r\n<li>Re-orders from account</li>\r\n<li>Recently ordered items</li>\r\n<li>Address Book with unlimited addresses</li>\r\n<li>Default Billing and Shipping addresses</li>\r\n<li>Wishlist with ability to add comments</li>\r\n<li>Email or Send RSS feed of Wishlist</li>\r\n<li>Newsletter Subscription management</li>\r\n<li>Product Reviews submitted</li>\r\n<li>Product Tags submitted</li>\r\n<li>Downloadable/Digital Products<li>\r\n<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Management & Browsing\"]\r\n<h3>Catalog Management</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Inventory Management with Backordered items, Minimum and Maximum quantities</li>\r\n<li>Batch Import and Export of catalog</li>\r\n<li>Batch Updates to products in admin panel</li>\r\n<li>Google Base Integration</li>\r\n<li>Simple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products</li>\r\n<li>Virtual Products</li>\r\n<li>Downloadable/Digital Products</li>\r\n<li>Customer Personalized Products - upload text for embroidery, monogramming, etc.</li>\r\n<li>Tax Rates per location, customer group and product type</li>\r\n<li>Attribute Sets for quick product creation of different item types</li>\r\n<li>Create Store-specific attributes on the fly</li>\r\n<li>Media Manager with automatic image resizing and watermarking</li>\r\n<li>Advanced Pricing Rules and support for Special Prices (see marketing tools)</li>\r\n<li>Search Results rewrites and redirects</li>\r\n<li>Approve, Edit and Delete Product Tags</li>\r\n<li>Approve, Edit and Delete Product Reviews</li>\r\n<li>RSS feed for Low Inventory Alerts</li>\r\n<li>Customer Personalized Products - Upload text for embroidery, monogramming, etc. (this one is already there, but want to have the following shown after it)</li>\r\n<li>Customer Personalized Products – Upload Image</li>\r\n<li>Customer Personalized Products – Select Date/Time options for products</li>\r\n<li>Customer Sorting – Define Attributes for Customer Sorting on category (price, brand, etc.)</li>\r\n			</ul>\r\n[/bullet_list]\r\n<h3>Catalog Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Layered / Faceted Navigation for filtering of products in categories</li>\r\n<li>Layered / Faceted Navigation for filtering of products in search results</li>\r\n<li>Flat Catalog Module for Improved Performance with large catalogs</li>\r\n<li>Static Block tool to create category landing pages</li>\r\n<li>Ability to assign designs on category and product level (unique design per product/category)</li>\r\n<li>Configurable search with auto-suggested terms</li>\r\n<li>Recently viewed products</li>\r\n<li>Product comparisons</li>\r\n<li>Recently compared products</li>\r\n<li>Cross-sells, Up-sells and Related Items</li>\r\n<li>Popular Search Terms Cloud</li>\r\n<li>Filter by Product Tags</li>\r\n<li>Product Reviews</li>\r\n<li>Product listing in grid or list format</li>\r\n<li>Breadcrumbs</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Product Browsing\"]\r\n<h3>Product Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Multiple Images Per Product</li>\r\n<li>Product Image Zoom-in Capability</li>\r\n<li>Product Reviews</li>\r\n<li>Related Products</li>\r\n<li>Stock Availability</li>\r\n<li>Multi-Tier Pricing Upsell</li>\r\n<li>Product Option Selection</li>\r\n<li>Grouped Products View</li>\r\n<li>Add to Wishlist</li>\r\n<li>Send to a Friend with Email</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]\r\n\r\n\r\n\r\n\r\n','eCommerce WebShop Lite','','inherit','closed','closed','','156-revision-15','','','2011-07-18 11:48:22','2011-07-18 11:48:22','',156,'http://bestecommerce-uk.com/2011/07/156-revision-15/',0,'revision','',0),(289,1,'2011-07-18 11:49:47','2011-07-18 11:49:47','<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>Our entry level product for the SME\'s and growing companies, WebShop 3.0 Lite provides a high level of function across the board.</p><p>Supporting advanced functions from multi-tiered pricing structures to integration with Amazon and eBay, the pro system is the benchmark for growing and established High Street brand retailers</p> \r\n<h2>£999 + £60/month   </h2>\r\n<a href=\"/about-us\" class=\"btn impactBtn\"><span>Add to Cart/Sign-Up</span></a><br /><br /><br />\r\n[button_link url=\"http://www.webdesign-uk.org/webshop-3-0-feature-list/\" style=\"medium blue\"]View Webshop 3.0 functionality[/button_link]<br /><br /><br />\r\n\r\n</div></div>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n\r\n</div></div>\r\n\r\n\r\n[tabs]\r\n	[tab title=\"Site Management\"]\r\n<h3>Site Management</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\r\n<li>Administration of permissions, system roles and users</li>\r\n<li>Web Services API for easy integration between Magento and any third-party application</li>\r\n<li>Fully 100% customizable design using templates</li>\r\n<li>Customer Groups</li>\r\n<li>One-Click Upgrades</li>\r\n<li>Content Management System for Informational Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n<h3>Analytics and reporting</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n <li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"SEO, Marketing Promotions and Tools\"]\r\n<h3>Search Engine Optimisation</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>100% Search Engine Friendly</li>\r\n<li>Google Site Map</li>\r\n<li>Search Engine Friendly URL’s</li>\r\n<li>URL Rewrites give full control of URL’s</li>\r\n<li>Meta-information for products and categories</li>\r\n<li>Auto-generated Site Map for display on site</li>\r\n<li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Marketing Promotions and Tools</h3>\r\n	<ul>\r\n<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n<h3>Orders</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n<h3>Checkout, Payment and Shipping</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Cheques/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\n<li>Shopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Customer\"]\r\n<h3>Customer Service</h3> \r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Contact Us form</li>\r\n<li>Feature-rich Customer Accounts</li>\r\n<li>Order History with Status Updates</li>\r\n<li>Order Tracking from Account</li>\r\n<li>Password Reset email from front-end and admin panel</li>\r\n<li>Order and Account Update Emails</li>\r\n<li>Customizable Order Emails</li>\r\n<li>Create and Edit Orders from the Admin Panel</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Customer Accounts</h3> \r\n	<ul>\r\n		<li>Order status and history</li>\r\n<li>Re-orders from account</li>\r\n<li>Recently ordered items</li>\r\n<li>Address Book with unlimited addresses</li>\r\n<li>Default Billing and Shipping addresses</li>\r\n<li>Wishlist with ability to add comments</li>\r\n<li>Email or Send RSS feed of Wishlist</li>\r\n<li>Newsletter Subscription management</li>\r\n<li>Product Reviews submitted</li>\r\n<li>Product Tags submitted</li>\r\n<li>Downloadable/Digital Products<li>\r\n<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Management & Browsing\"]\r\n<h3>Catalog Management</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Inventory Management with Backordered items, Minimum and Maximum quantities</li>\r\n<li>Batch Import and Export of catalog</li>\r\n<li>Batch Updates to products in admin panel</li>\r\n<li>Google Base Integration</li>\r\n<li>Simple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products</li>\r\n<li>Virtual Products</li>\r\n<li>Downloadable/Digital Products</li>\r\n<li>Customer Personalized Products - upload text for embroidery, monogramming, etc.</li>\r\n<li>Tax Rates per location, customer group and product type</li>\r\n<li>Attribute Sets for quick product creation of different item types</li>\r\n<li>Create Store-specific attributes on the fly</li>\r\n<li>Media Manager with automatic image resizing and watermarking</li>\r\n<li>Advanced Pricing Rules and support for Special Prices (see marketing tools)</li>\r\n<li>Search Results rewrites and redirects</li>\r\n<li>Approve, Edit and Delete Product Tags</li>\r\n<li>Approve, Edit and Delete Product Reviews</li>\r\n<li>RSS feed for Low Inventory Alerts</li>\r\n<li>Customer Personalized Products - Upload text for embroidery, monogramming, etc. (this one is already there, but want to have the following shown after it)</li>\r\n<li>Customer Personalized Products – Upload Image</li>\r\n<li>Customer Personalized Products – Select Date/Time options for products</li>\r\n<li>Customer Sorting – Define Attributes for Customer Sorting on category (price, brand, etc.)</li>\r\n			</ul>\r\n[/bullet_list]\r\n<h3>Catalog Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Layered / Faceted Navigation for filtering of products in categories</li>\r\n<li>Layered / Faceted Navigation for filtering of products in search results</li>\r\n<li>Flat Catalog Module for Improved Performance with large catalogs</li>\r\n<li>Static Block tool to create category landing pages</li>\r\n<li>Ability to assign designs on category and product level (unique design per product/category)</li>\r\n<li>Configurable search with auto-suggested terms</li>\r\n<li>Recently viewed products</li>\r\n<li>Product comparisons</li>\r\n<li>Recently compared products</li>\r\n<li>Cross-sells, Up-sells and Related Items</li>\r\n<li>Popular Search Terms Cloud</li>\r\n<li>Filter by Product Tags</li>\r\n<li>Product Reviews</li>\r\n<li>Product listing in grid or list format</li>\r\n<li>Breadcrumbs</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Product Browsing\"]\r\n<h3>Product Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Multiple Images Per Product</li>\r\n<li>Product Image Zoom-in Capability</li>\r\n<li>Product Reviews</li>\r\n<li>Related Products</li>\r\n<li>Stock Availability</li>\r\n<li>Multi-Tier Pricing Upsell</li>\r\n<li>Product Option Selection</li>\r\n<li>Grouped Products View</li>\r\n<li>Add to Wishlist</li>\r\n<li>Send to a Friend with Email</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]\r\n\r\n\r\n\r\n\r\n','eCommerce WebShop Lite','','inherit','closed','closed','','156-revision-16','','','2011-07-18 11:49:47','2011-07-18 11:49:47','',156,'http://bestecommerce-uk.com/2011/07/156-revision-16/',0,'revision','',0),(290,1,'2011-07-18 11:51:19','2011-07-18 11:51:19','<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>Our entry level product for the SME\'s and growing companies, WebShop 3.0 Lite provides a high level of function across the board.</p><p>Supporting advanced functions from multi-tiered pricing structures to integration with Amazon and eBay, the pro system is the benchmark for growing and established High Street brand retailers</p> \r\n<h2>£999 + £60/month   </h2>\r\n<a href=\"/about-us\" class=\"btn impactBtn\"><span>Add to Cart/Sign-Up</span></a><br /><br /><br />\r\n[button_link url=\"http://www.webdesign-uk.org/webshop-3-0-feature-list/\" style=\"medium blue\"]View Webshop 3.0 functionality[/button_link][button_link url=\"http://www.webdesign-uk.org/webshop-3-0-feature-list/\" style=\"medium blue\"]View Webshop 3.0 functionality[/button_link]<br /><br /><br />\r\n\r\n</div></div>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n\r\n</div></div>\r\n\r\n\r\n[tabs]\r\n	[tab title=\"Site Management\"]\r\n<h3>Site Management</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\r\n<li>Administration of permissions, system roles and users</li>\r\n<li>Web Services API for easy integration between Magento and any third-party application</li>\r\n<li>Fully 100% customizable design using templates</li>\r\n<li>Customer Groups</li>\r\n<li>One-Click Upgrades</li>\r\n<li>Content Management System for Informational Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n<h3>Analytics and reporting</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n <li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"SEO, Marketing Promotions and Tools\"]\r\n<h3>Search Engine Optimisation</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>100% Search Engine Friendly</li>\r\n<li>Google Site Map</li>\r\n<li>Search Engine Friendly URL’s</li>\r\n<li>URL Rewrites give full control of URL’s</li>\r\n<li>Meta-information for products and categories</li>\r\n<li>Auto-generated Site Map for display on site</li>\r\n<li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Marketing Promotions and Tools</h3>\r\n	<ul>\r\n<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n<h3>Orders</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n<h3>Checkout, Payment and Shipping</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Cheques/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\n<li>Shopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Customer\"]\r\n<h3>Customer Service</h3> \r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Contact Us form</li>\r\n<li>Feature-rich Customer Accounts</li>\r\n<li>Order History with Status Updates</li>\r\n<li>Order Tracking from Account</li>\r\n<li>Password Reset email from front-end and admin panel</li>\r\n<li>Order and Account Update Emails</li>\r\n<li>Customizable Order Emails</li>\r\n<li>Create and Edit Orders from the Admin Panel</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Customer Accounts</h3> \r\n	<ul>\r\n		<li>Order status and history</li>\r\n<li>Re-orders from account</li>\r\n<li>Recently ordered items</li>\r\n<li>Address Book with unlimited addresses</li>\r\n<li>Default Billing and Shipping addresses</li>\r\n<li>Wishlist with ability to add comments</li>\r\n<li>Email or Send RSS feed of Wishlist</li>\r\n<li>Newsletter Subscription management</li>\r\n<li>Product Reviews submitted</li>\r\n<li>Product Tags submitted</li>\r\n<li>Downloadable/Digital Products<li>\r\n<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Management & Browsing\"]\r\n<h3>Catalog Management</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Inventory Management with Backordered items, Minimum and Maximum quantities</li>\r\n<li>Batch Import and Export of catalog</li>\r\n<li>Batch Updates to products in admin panel</li>\r\n<li>Google Base Integration</li>\r\n<li>Simple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products</li>\r\n<li>Virtual Products</li>\r\n<li>Downloadable/Digital Products</li>\r\n<li>Customer Personalized Products - upload text for embroidery, monogramming, etc.</li>\r\n<li>Tax Rates per location, customer group and product type</li>\r\n<li>Attribute Sets for quick product creation of different item types</li>\r\n<li>Create Store-specific attributes on the fly</li>\r\n<li>Media Manager with automatic image resizing and watermarking</li>\r\n<li>Advanced Pricing Rules and support for Special Prices (see marketing tools)</li>\r\n<li>Search Results rewrites and redirects</li>\r\n<li>Approve, Edit and Delete Product Tags</li>\r\n<li>Approve, Edit and Delete Product Reviews</li>\r\n<li>RSS feed for Low Inventory Alerts</li>\r\n<li>Customer Personalized Products - Upload text for embroidery, monogramming, etc. (this one is already there, but want to have the following shown after it)</li>\r\n<li>Customer Personalized Products – Upload Image</li>\r\n<li>Customer Personalized Products – Select Date/Time options for products</li>\r\n<li>Customer Sorting – Define Attributes for Customer Sorting on category (price, brand, etc.)</li>\r\n			</ul>\r\n[/bullet_list]\r\n<h3>Catalog Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Layered / Faceted Navigation for filtering of products in categories</li>\r\n<li>Layered / Faceted Navigation for filtering of products in search results</li>\r\n<li>Flat Catalog Module for Improved Performance with large catalogs</li>\r\n<li>Static Block tool to create category landing pages</li>\r\n<li>Ability to assign designs on category and product level (unique design per product/category)</li>\r\n<li>Configurable search with auto-suggested terms</li>\r\n<li>Recently viewed products</li>\r\n<li>Product comparisons</li>\r\n<li>Recently compared products</li>\r\n<li>Cross-sells, Up-sells and Related Items</li>\r\n<li>Popular Search Terms Cloud</li>\r\n<li>Filter by Product Tags</li>\r\n<li>Product Reviews</li>\r\n<li>Product listing in grid or list format</li>\r\n<li>Breadcrumbs</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Product Browsing\"]\r\n<h3>Product Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Multiple Images Per Product</li>\r\n<li>Product Image Zoom-in Capability</li>\r\n<li>Product Reviews</li>\r\n<li>Related Products</li>\r\n<li>Stock Availability</li>\r\n<li>Multi-Tier Pricing Upsell</li>\r\n<li>Product Option Selection</li>\r\n<li>Grouped Products View</li>\r\n<li>Add to Wishlist</li>\r\n<li>Send to a Friend with Email</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]\r\n\r\n\r\n\r\n\r\n','eCommerce WebShop Lite','','inherit','closed','closed','','156-revision-17','','','2011-07-18 11:51:19','2011-07-18 11:51:19','',156,'http://bestecommerce-uk.com/2011/07/156-revision-17/',0,'revision','',0),(291,1,'2011-07-18 11:52:02','2011-07-18 11:52:02','<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>Our entry level product for the SME\'s and growing companies, WebShop 3.0 Lite provides a high level of function across the board.</p><p>Supporting advanced functions from multi-tiered pricing structures to integration with Amazon and eBay, the pro system is the benchmark for growing and established High Street brand retailers</p> \r\n<h2>£999 + £60/month   </h2>\r\n<a href=\"/about-us\" class=\"btn impactBtn\"><span>Add to Cart/Sign-Up</span></a><br /><br /><br />\r\n[button_link url=\"http://www.webdesign-uk.org/webshop-3-0-feature-list/\" style=\"medium blue\"]View Webshop 3.0 functionality[/button_link]\r\n[button_link url=\"http://www.webdesign-uk.org/webshop-3-0-feature-list/\" style=\"medium blue\"]View Webshop 3.0 functionality[/button_link]<br /><br /><br />\r\n\r\n</div></div>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n\r\n</div></div>\r\n\r\n\r\n[tabs]\r\n	[tab title=\"Site Management\"]\r\n<h3>Site Management</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\r\n<li>Administration of permissions, system roles and users</li>\r\n<li>Web Services API for easy integration between Magento and any third-party application</li>\r\n<li>Fully 100% customizable design using templates</li>\r\n<li>Customer Groups</li>\r\n<li>One-Click Upgrades</li>\r\n<li>Content Management System for Informational Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n<h3>Analytics and reporting</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n <li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"SEO, Marketing Promotions and Tools\"]\r\n<h3>Search Engine Optimisation</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>100% Search Engine Friendly</li>\r\n<li>Google Site Map</li>\r\n<li>Search Engine Friendly URL’s</li>\r\n<li>URL Rewrites give full control of URL’s</li>\r\n<li>Meta-information for products and categories</li>\r\n<li>Auto-generated Site Map for display on site</li>\r\n<li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Marketing Promotions and Tools</h3>\r\n	<ul>\r\n<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n<h3>Orders</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n<h3>Checkout, Payment and Shipping</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Cheques/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\n<li>Shopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Customer\"]\r\n<h3>Customer Service</h3> \r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Contact Us form</li>\r\n<li>Feature-rich Customer Accounts</li>\r\n<li>Order History with Status Updates</li>\r\n<li>Order Tracking from Account</li>\r\n<li>Password Reset email from front-end and admin panel</li>\r\n<li>Order and Account Update Emails</li>\r\n<li>Customizable Order Emails</li>\r\n<li>Create and Edit Orders from the Admin Panel</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Customer Accounts</h3> \r\n	<ul>\r\n		<li>Order status and history</li>\r\n<li>Re-orders from account</li>\r\n<li>Recently ordered items</li>\r\n<li>Address Book with unlimited addresses</li>\r\n<li>Default Billing and Shipping addresses</li>\r\n<li>Wishlist with ability to add comments</li>\r\n<li>Email or Send RSS feed of Wishlist</li>\r\n<li>Newsletter Subscription management</li>\r\n<li>Product Reviews submitted</li>\r\n<li>Product Tags submitted</li>\r\n<li>Downloadable/Digital Products<li>\r\n<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Management & Browsing\"]\r\n<h3>Catalog Management</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Inventory Management with Backordered items, Minimum and Maximum quantities</li>\r\n<li>Batch Import and Export of catalog</li>\r\n<li>Batch Updates to products in admin panel</li>\r\n<li>Google Base Integration</li>\r\n<li>Simple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products</li>\r\n<li>Virtual Products</li>\r\n<li>Downloadable/Digital Products</li>\r\n<li>Customer Personalized Products - upload text for embroidery, monogramming, etc.</li>\r\n<li>Tax Rates per location, customer group and product type</li>\r\n<li>Attribute Sets for quick product creation of different item types</li>\r\n<li>Create Store-specific attributes on the fly</li>\r\n<li>Media Manager with automatic image resizing and watermarking</li>\r\n<li>Advanced Pricing Rules and support for Special Prices (see marketing tools)</li>\r\n<li>Search Results rewrites and redirects</li>\r\n<li>Approve, Edit and Delete Product Tags</li>\r\n<li>Approve, Edit and Delete Product Reviews</li>\r\n<li>RSS feed for Low Inventory Alerts</li>\r\n<li>Customer Personalized Products - Upload text for embroidery, monogramming, etc. (this one is already there, but want to have the following shown after it)</li>\r\n<li>Customer Personalized Products – Upload Image</li>\r\n<li>Customer Personalized Products – Select Date/Time options for products</li>\r\n<li>Customer Sorting – Define Attributes for Customer Sorting on category (price, brand, etc.)</li>\r\n			</ul>\r\n[/bullet_list]\r\n<h3>Catalog Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Layered / Faceted Navigation for filtering of products in categories</li>\r\n<li>Layered / Faceted Navigation for filtering of products in search results</li>\r\n<li>Flat Catalog Module for Improved Performance with large catalogs</li>\r\n<li>Static Block tool to create category landing pages</li>\r\n<li>Ability to assign designs on category and product level (unique design per product/category)</li>\r\n<li>Configurable search with auto-suggested terms</li>\r\n<li>Recently viewed products</li>\r\n<li>Product comparisons</li>\r\n<li>Recently compared products</li>\r\n<li>Cross-sells, Up-sells and Related Items</li>\r\n<li>Popular Search Terms Cloud</li>\r\n<li>Filter by Product Tags</li>\r\n<li>Product Reviews</li>\r\n<li>Product listing in grid or list format</li>\r\n<li>Breadcrumbs</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Product Browsing\"]\r\n<h3>Product Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Multiple Images Per Product</li>\r\n<li>Product Image Zoom-in Capability</li>\r\n<li>Product Reviews</li>\r\n<li>Related Products</li>\r\n<li>Stock Availability</li>\r\n<li>Multi-Tier Pricing Upsell</li>\r\n<li>Product Option Selection</li>\r\n<li>Grouped Products View</li>\r\n<li>Add to Wishlist</li>\r\n<li>Send to a Friend with Email</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]\r\n\r\n\r\n\r\n\r\n','eCommerce WebShop Lite','','inherit','closed','closed','','156-revision-18','','','2011-07-18 11:52:02','2011-07-18 11:52:02','',156,'http://bestecommerce-uk.com/2011/07/156-revision-18/',0,'revision','',0),(297,1,'2011-07-18 11:57:25','2011-07-18 11:57:25','<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>Our entry level product for the SME\'s and growing companies, WebShop 3.0 Lite provides a high level of function across the board.</p><p>Supporting advanced functions from multi-tiered pricing structures to integration with Amazon and eBay, the pro system is the benchmark for growing and established High Street brand retailers</p> \r\n<h2>£999 + £60/month   </h2>\r\n<a href=\"/about-us\" class=\"btn impactBtn\"><span>Add to Cart/Sign-Up</span></a><br /><br /><br />\r\n[button_link url=\"http://www.webdesign-uk.org/webshop-3-0-feature-list/\" style=\"medium blue\"]View Webshop 3.0 functionality[/button_link]\r\n[button_link url=\"http://www.webdesign-uk.org/webshop-3-0-feature-list/\" style=\"medium blue\"]View Webshop 3.0 functionality[/button_link]<br /><br /><br />\r\n\r\n</div></div>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n\r\n</div></div>\r\n\r\n\r\n[tabs]\r\n	[tab title=\"Site Management\"]\r\n<h3>Site Management</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\r\n<li>Administration of permissions, system roles and users</li>\r\n<li>Web Services API for easy integration between Magento and any third-party application</li>\r\n<li>Fully 100% customizable design using templates</li>\r\n<li>Customer Groups</li>\r\n<li>One-Click Upgrades</li>\r\n<li>Content Management System for Informational Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n<h3>Analytics and reporting</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n <li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"SEO, Marketing Promotions and Tools\"]\r\n<h3>Search Engine Optimisation</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>100% Search Engine Friendly</li>\r\n<li>Google Site Map</li>\r\n<li>Search Engine Friendly URL’s</li>\r\n<li>URL Rewrites give full control of URL’s</li>\r\n<li>Meta-information for products and categories</li>\r\n<li>Auto-generated Site Map for display on site</li>\r\n<li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Marketing Promotions and Tools</h3>\r\n	<ul>\r\n<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n<h3>Orders</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n<h3>Checkout, Payment and Shipping</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Cheques/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\n<li>Shopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Customer\"]\r\n<h3>Customer Service</h3> \r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Contact Us form</li>\r\n<li>Feature-rich Customer Accounts</li>\r\n<li>Order History with Status Updates</li>\r\n<li>Order Tracking from Account</li>\r\n<li>Password Reset email from front-end and admin panel</li>\r\n<li>Order and Account Update Emails</li>\r\n<li>Customizable Order Emails</li>\r\n<li>Create and Edit Orders from the Admin Panel</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Customer Accounts</h3> \r\n	<ul>\r\n		<li>Order status and history</li>\r\n<li>Re-orders from account</li>\r\n<li>Recently ordered items</li>\r\n<li>Address Book with unlimited addresses</li>\r\n<li>Default Billing and Shipping addresses</li>\r\n<li>Wishlist with ability to add comments</li>\r\n<li>Email or Send RSS feed of Wishlist</li>\r\n<li>Newsletter Subscription management</li>\r\n<li>Product Reviews submitted</li>\r\n<li>Product Tags submitted</li>\r\n<li>Downloadable/Digital Products<li>\r\n<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Management & Browsing\"]\r\n<h3>Catalog Management</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Inventory Management with Backordered items, Minimum and Maximum quantities</li>\r\n<li>Batch Import and Export of catalog</li>\r\n<li>Batch Updates to products in admin panel</li>\r\n<li>Google Base Integration</li>\r\n<li>Simple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products</li>\r\n<li>Virtual Products</li>\r\n<li>Downloadable/Digital Products</li>\r\n<li>Customer Personalized Products - upload text for embroidery, monogramming, etc.</li>\r\n<li>Tax Rates per location, customer group and product type</li>\r\n<li>Attribute Sets for quick product creation of different item types</li>\r\n<li>Create Store-specific attributes on the fly</li>\r\n<li>Media Manager with automatic image resizing and watermarking</li>\r\n<li>Advanced Pricing Rules and support for Special Prices (see marketing tools)</li>\r\n<li>Search Results rewrites and redirects</li>\r\n<li>Approve, Edit and Delete Product Tags</li>\r\n<li>Approve, Edit and Delete Product Reviews</li>\r\n<li>RSS feed for Low Inventory Alerts</li>\r\n<li>Customer Personalized Products - Upload text for embroidery, monogramming, etc. (this one is already there, but want to have the following shown after it)</li>\r\n<li>Customer Personalized Products – Upload Image</li>\r\n<li>Customer Personalized Products – Select Date/Time options for products</li>\r\n<li>Customer Sorting – Define Attributes for Customer Sorting on category (price, brand, etc.)</li>\r\n			</ul>\r\n[/bullet_list]\r\n<h3>Catalog Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Layered / Faceted Navigation for filtering of products in categories</li>\r\n<li>Layered / Faceted Navigation for filtering of products in search results</li>\r\n<li>Flat Catalog Module for Improved Performance with large catalogs</li>\r\n<li>Static Block tool to create category landing pages</li>\r\n<li>Ability to assign designs on category and product level (unique design per product/category)</li>\r\n<li>Configurable search with auto-suggested terms</li>\r\n<li>Recently viewed products</li>\r\n<li>Product comparisons</li>\r\n<li>Recently compared products</li>\r\n<li>Cross-sells, Up-sells and Related Items</li>\r\n<li>Popular Search Terms Cloud</li>\r\n<li>Filter by Product Tags</li>\r\n<li>Product Reviews</li>\r\n<li>Product listing in grid or list format</li>\r\n<li>Breadcrumbs</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Product Browsing\"]\r\n<h3>Product Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Multiple Images Per Product</li>\r\n<li>Product Image Zoom-in Capability</li>\r\n<li>Product Reviews</li>\r\n<li>Related Products</li>\r\n<li>Stock Availability</li>\r\n<li>Multi-Tier Pricing Upsell</li>\r\n<li>Product Option Selection</li>\r\n<li>Grouped Products View</li>\r\n<li>Add to Wishlist</li>\r\n<li>Send to a Friend with Email</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]\r\n\r\n\r\n\r\n\r\n','eCommerce WebShop Lite','','inherit','closed','closed','','156-revision-24','','','2011-07-18 11:57:25','2011-07-18 11:57:25','',156,'http://bestecommerce-uk.com/2011/07/156-revision-24/',0,'revision','',0),(292,1,'2011-07-18 11:53:37','2011-07-18 11:53:37','<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>Our entry level product for the SME\'s and growing companies, WebShop 3.0 Lite provides a high level of function across the board.</p><p>Supporting advanced functions from multi-tiered pricing structures to integration with Amazon and eBay, the pro system is the benchmark for growing and established High Street brand retailers</p> \r\n<h2>£999 + £60/month   </h2>\r\n<a href=\"/about-us\" class=\"btn impactBtn\"><span>Add to Cart/Sign-Up</span></a><br /><br /><br />\r\n[button_link url=\"http://www.webdesign-uk.org/webshop-3-0-feature-list/\" style=\"medium blue\"]View Webshop 3.0 functionality[/button_link]\r\n[button_link url=\"http://www.webdesign-uk.org/webshop-3-0-feature-list/\" style=\"medium blue\"]Download pdf Webshop 3.0 functionality-UPDATE LINK TO PDF[/button_link]<br /><br /><br />\r\n\r\n</div></div>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n\r\n</div></div>\r\n\r\n\r\n[tabs]\r\n	[tab title=\"Site Management\"]\r\n<h3>Site Management</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\r\n<li>Administration of permissions, system roles and users</li>\r\n<li>Web Services API for easy integration between Magento and any third-party application</li>\r\n<li>Fully 100% customizable design using templates</li>\r\n<li>Customer Groups</li>\r\n<li>One-Click Upgrades</li>\r\n<li>Content Management System for Informational Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n<h3>Analytics and reporting</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n <li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"SEO, Marketing Promotions and Tools\"]\r\n<h3>Search Engine Optimisation</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>100% Search Engine Friendly</li>\r\n<li>Google Site Map</li>\r\n<li>Search Engine Friendly URL’s</li>\r\n<li>URL Rewrites give full control of URL’s</li>\r\n<li>Meta-information for products and categories</li>\r\n<li>Auto-generated Site Map for display on site</li>\r\n<li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Marketing Promotions and Tools</h3>\r\n	<ul>\r\n<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n<h3>Orders</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n<h3>Checkout, Payment and Shipping</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Cheques/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\n<li>Shopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Customer\"]\r\n<h3>Customer Service</h3> \r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Contact Us form</li>\r\n<li>Feature-rich Customer Accounts</li>\r\n<li>Order History with Status Updates</li>\r\n<li>Order Tracking from Account</li>\r\n<li>Password Reset email from front-end and admin panel</li>\r\n<li>Order and Account Update Emails</li>\r\n<li>Customizable Order Emails</li>\r\n<li>Create and Edit Orders from the Admin Panel</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Customer Accounts</h3> \r\n	<ul>\r\n		<li>Order status and history</li>\r\n<li>Re-orders from account</li>\r\n<li>Recently ordered items</li>\r\n<li>Address Book with unlimited addresses</li>\r\n<li>Default Billing and Shipping addresses</li>\r\n<li>Wishlist with ability to add comments</li>\r\n<li>Email or Send RSS feed of Wishlist</li>\r\n<li>Newsletter Subscription management</li>\r\n<li>Product Reviews submitted</li>\r\n<li>Product Tags submitted</li>\r\n<li>Downloadable/Digital Products<li>\r\n<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Management & Browsing\"]\r\n<h3>Catalog Management</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Inventory Management with Backordered items, Minimum and Maximum quantities</li>\r\n<li>Batch Import and Export of catalog</li>\r\n<li>Batch Updates to products in admin panel</li>\r\n<li>Google Base Integration</li>\r\n<li>Simple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products</li>\r\n<li>Virtual Products</li>\r\n<li>Downloadable/Digital Products</li>\r\n<li>Customer Personalized Products - upload text for embroidery, monogramming, etc.</li>\r\n<li>Tax Rates per location, customer group and product type</li>\r\n<li>Attribute Sets for quick product creation of different item types</li>\r\n<li>Create Store-specific attributes on the fly</li>\r\n<li>Media Manager with automatic image resizing and watermarking</li>\r\n<li>Advanced Pricing Rules and support for Special Prices (see marketing tools)</li>\r\n<li>Search Results rewrites and redirects</li>\r\n<li>Approve, Edit and Delete Product Tags</li>\r\n<li>Approve, Edit and Delete Product Reviews</li>\r\n<li>RSS feed for Low Inventory Alerts</li>\r\n<li>Customer Personalized Products - Upload text for embroidery, monogramming, etc. (this one is already there, but want to have the following shown after it)</li>\r\n<li>Customer Personalized Products – Upload Image</li>\r\n<li>Customer Personalized Products – Select Date/Time options for products</li>\r\n<li>Customer Sorting – Define Attributes for Customer Sorting on category (price, brand, etc.)</li>\r\n			</ul>\r\n[/bullet_list]\r\n<h3>Catalog Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Layered / Faceted Navigation for filtering of products in categories</li>\r\n<li>Layered / Faceted Navigation for filtering of products in search results</li>\r\n<li>Flat Catalog Module for Improved Performance with large catalogs</li>\r\n<li>Static Block tool to create category landing pages</li>\r\n<li>Ability to assign designs on category and product level (unique design per product/category)</li>\r\n<li>Configurable search with auto-suggested terms</li>\r\n<li>Recently viewed products</li>\r\n<li>Product comparisons</li>\r\n<li>Recently compared products</li>\r\n<li>Cross-sells, Up-sells and Related Items</li>\r\n<li>Popular Search Terms Cloud</li>\r\n<li>Filter by Product Tags</li>\r\n<li>Product Reviews</li>\r\n<li>Product listing in grid or list format</li>\r\n<li>Breadcrumbs</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Product Browsing\"]\r\n<h3>Product Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Multiple Images Per Product</li>\r\n<li>Product Image Zoom-in Capability</li>\r\n<li>Product Reviews</li>\r\n<li>Related Products</li>\r\n<li>Stock Availability</li>\r\n<li>Multi-Tier Pricing Upsell</li>\r\n<li>Product Option Selection</li>\r\n<li>Grouped Products View</li>\r\n<li>Add to Wishlist</li>\r\n<li>Send to a Friend with Email</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]\r\n\r\n\r\n\r\n\r\n','eCommerce WebShop Lite','','inherit','closed','closed','','156-revision-19','','','2011-07-18 11:53:37','2011-07-18 11:53:37','',156,'http://bestecommerce-uk.com/2011/07/156-revision-19/',0,'revision','',0),(293,1,'2011-07-18 11:54:10','2011-07-18 11:54:10','<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>Our entry level product for the SME\'s and growing companies, WebShop 3.0 Lite provides a high level of function across the board.</p><p>Supporting advanced functions from multi-tiered pricing structures to integration with Amazon and eBay, the pro system is the benchmark for growing and established High Street brand retailers</p> \r\n<h2>£999 + £60/month   </h2>\r\n<a href=\"/about-us\" class=\"btn impactBtn\"><span>Add to Cart/Sign-Up</span></a><br /><br /><br />\r\n[button_link url=\"http://www.webdesign-uk.org/webshop-3-0-feature-list/\" style=\"medium blue\"]View Webshop 3.0 functionality[/button_link]\r\n[button_link url=\"http://www.webdesign-uk.org/webshop-3-0-feature-list/\" style=\"medium blue\"]Download pdf Webshop 3.0 functionality-UPDATE LINK[/button_link]<br /><br /><br />\r\n\r\n</div></div>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n\r\n</div></div>\r\n\r\n\r\n[tabs]\r\n	[tab title=\"Site Management\"]\r\n<h3>Site Management</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\r\n<li>Administration of permissions, system roles and users</li>\r\n<li>Web Services API for easy integration between Magento and any third-party application</li>\r\n<li>Fully 100% customizable design using templates</li>\r\n<li>Customer Groups</li>\r\n<li>One-Click Upgrades</li>\r\n<li>Content Management System for Informational Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n<h3>Analytics and reporting</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n <li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"SEO, Marketing Promotions and Tools\"]\r\n<h3>Search Engine Optimisation</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>100% Search Engine Friendly</li>\r\n<li>Google Site Map</li>\r\n<li>Search Engine Friendly URL’s</li>\r\n<li>URL Rewrites give full control of URL’s</li>\r\n<li>Meta-information for products and categories</li>\r\n<li>Auto-generated Site Map for display on site</li>\r\n<li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Marketing Promotions and Tools</h3>\r\n	<ul>\r\n<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n<h3>Orders</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n<h3>Checkout, Payment and Shipping</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Cheques/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\n<li>Shopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Customer\"]\r\n<h3>Customer Service</h3> \r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Contact Us form</li>\r\n<li>Feature-rich Customer Accounts</li>\r\n<li>Order History with Status Updates</li>\r\n<li>Order Tracking from Account</li>\r\n<li>Password Reset email from front-end and admin panel</li>\r\n<li>Order and Account Update Emails</li>\r\n<li>Customizable Order Emails</li>\r\n<li>Create and Edit Orders from the Admin Panel</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Customer Accounts</h3> \r\n	<ul>\r\n		<li>Order status and history</li>\r\n<li>Re-orders from account</li>\r\n<li>Recently ordered items</li>\r\n<li>Address Book with unlimited addresses</li>\r\n<li>Default Billing and Shipping addresses</li>\r\n<li>Wishlist with ability to add comments</li>\r\n<li>Email or Send RSS feed of Wishlist</li>\r\n<li>Newsletter Subscription management</li>\r\n<li>Product Reviews submitted</li>\r\n<li>Product Tags submitted</li>\r\n<li>Downloadable/Digital Products<li>\r\n<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Management & Browsing\"]\r\n<h3>Catalog Management</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Inventory Management with Backordered items, Minimum and Maximum quantities</li>\r\n<li>Batch Import and Export of catalog</li>\r\n<li>Batch Updates to products in admin panel</li>\r\n<li>Google Base Integration</li>\r\n<li>Simple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products</li>\r\n<li>Virtual Products</li>\r\n<li>Downloadable/Digital Products</li>\r\n<li>Customer Personalized Products - upload text for embroidery, monogramming, etc.</li>\r\n<li>Tax Rates per location, customer group and product type</li>\r\n<li>Attribute Sets for quick product creation of different item types</li>\r\n<li>Create Store-specific attributes on the fly</li>\r\n<li>Media Manager with automatic image resizing and watermarking</li>\r\n<li>Advanced Pricing Rules and support for Special Prices (see marketing tools)</li>\r\n<li>Search Results rewrites and redirects</li>\r\n<li>Approve, Edit and Delete Product Tags</li>\r\n<li>Approve, Edit and Delete Product Reviews</li>\r\n<li>RSS feed for Low Inventory Alerts</li>\r\n<li>Customer Personalized Products - Upload text for embroidery, monogramming, etc. (this one is already there, but want to have the following shown after it)</li>\r\n<li>Customer Personalized Products – Upload Image</li>\r\n<li>Customer Personalized Products – Select Date/Time options for products</li>\r\n<li>Customer Sorting – Define Attributes for Customer Sorting on category (price, brand, etc.)</li>\r\n			</ul>\r\n[/bullet_list]\r\n<h3>Catalog Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Layered / Faceted Navigation for filtering of products in categories</li>\r\n<li>Layered / Faceted Navigation for filtering of products in search results</li>\r\n<li>Flat Catalog Module for Improved Performance with large catalogs</li>\r\n<li>Static Block tool to create category landing pages</li>\r\n<li>Ability to assign designs on category and product level (unique design per product/category)</li>\r\n<li>Configurable search with auto-suggested terms</li>\r\n<li>Recently viewed products</li>\r\n<li>Product comparisons</li>\r\n<li>Recently compared products</li>\r\n<li>Cross-sells, Up-sells and Related Items</li>\r\n<li>Popular Search Terms Cloud</li>\r\n<li>Filter by Product Tags</li>\r\n<li>Product Reviews</li>\r\n<li>Product listing in grid or list format</li>\r\n<li>Breadcrumbs</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Product Browsing\"]\r\n<h3>Product Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Multiple Images Per Product</li>\r\n<li>Product Image Zoom-in Capability</li>\r\n<li>Product Reviews</li>\r\n<li>Related Products</li>\r\n<li>Stock Availability</li>\r\n<li>Multi-Tier Pricing Upsell</li>\r\n<li>Product Option Selection</li>\r\n<li>Grouped Products View</li>\r\n<li>Add to Wishlist</li>\r\n<li>Send to a Friend with Email</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]\r\n\r\n\r\n\r\n\r\n','eCommerce WebShop Lite','','inherit','closed','closed','','156-revision-20','','','2011-07-18 11:54:10','2011-07-18 11:54:10','',156,'http://bestecommerce-uk.com/2011/07/156-revision-20/',0,'revision','',0),(294,1,'2011-07-18 11:54:39','2011-07-18 11:54:39','<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>Our entry level product for the SME\'s and growing companies, WebShop 3.0 Lite provides a high level of function across the board.</p><p>Supporting advanced functions from multi-tiered pricing structures to integration with Amazon and eBay, the pro system is the benchmark for growing and established High Street brand retailers</p> \r\n<h2>£999 + £60/month   </h2>\r\n<a href=\"/about-us\" class=\"btn impactBtn\"><span>Add to Cart/Sign-Up</span></a><br /><br /><br />\r\n[button_link url=\"http://www.webdesign-uk.org/webshop-3-0-feature-list/\" style=\"medium blue\"]View Webshop 3.0 functionality[/button_link]\r\n[button_link url=\"http://www.webdesign-uk.org/webshop-3-0-feature-list/\" style=\"medium blue\"]Download pdf Webshop 3.0 functionality[/button_link]<br /><br /><br />\r\n\r\n</div></div>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n\r\n</div></div>\r\n\r\n\r\n[tabs]\r\n	[tab title=\"Site Management\"]\r\n<h3>Site Management</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\r\n<li>Administration of permissions, system roles and users</li>\r\n<li>Web Services API for easy integration between Magento and any third-party application</li>\r\n<li>Fully 100% customizable design using templates</li>\r\n<li>Customer Groups</li>\r\n<li>One-Click Upgrades</li>\r\n<li>Content Management System for Informational Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n<h3>Analytics and reporting</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n <li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"SEO, Marketing Promotions and Tools\"]\r\n<h3>Search Engine Optimisation</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>100% Search Engine Friendly</li>\r\n<li>Google Site Map</li>\r\n<li>Search Engine Friendly URL’s</li>\r\n<li>URL Rewrites give full control of URL’s</li>\r\n<li>Meta-information for products and categories</li>\r\n<li>Auto-generated Site Map for display on site</li>\r\n<li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Marketing Promotions and Tools</h3>\r\n	<ul>\r\n<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n<h3>Orders</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n<h3>Checkout, Payment and Shipping</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Cheques/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\n<li>Shopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Customer\"]\r\n<h3>Customer Service</h3> \r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Contact Us form</li>\r\n<li>Feature-rich Customer Accounts</li>\r\n<li>Order History with Status Updates</li>\r\n<li>Order Tracking from Account</li>\r\n<li>Password Reset email from front-end and admin panel</li>\r\n<li>Order and Account Update Emails</li>\r\n<li>Customizable Order Emails</li>\r\n<li>Create and Edit Orders from the Admin Panel</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Customer Accounts</h3> \r\n	<ul>\r\n		<li>Order status and history</li>\r\n<li>Re-orders from account</li>\r\n<li>Recently ordered items</li>\r\n<li>Address Book with unlimited addresses</li>\r\n<li>Default Billing and Shipping addresses</li>\r\n<li>Wishlist with ability to add comments</li>\r\n<li>Email or Send RSS feed of Wishlist</li>\r\n<li>Newsletter Subscription management</li>\r\n<li>Product Reviews submitted</li>\r\n<li>Product Tags submitted</li>\r\n<li>Downloadable/Digital Products<li>\r\n<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Management & Browsing\"]\r\n<h3>Catalog Management</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Inventory Management with Backordered items, Minimum and Maximum quantities</li>\r\n<li>Batch Import and Export of catalog</li>\r\n<li>Batch Updates to products in admin panel</li>\r\n<li>Google Base Integration</li>\r\n<li>Simple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products</li>\r\n<li>Virtual Products</li>\r\n<li>Downloadable/Digital Products</li>\r\n<li>Customer Personalized Products - upload text for embroidery, monogramming, etc.</li>\r\n<li>Tax Rates per location, customer group and product type</li>\r\n<li>Attribute Sets for quick product creation of different item types</li>\r\n<li>Create Store-specific attributes on the fly</li>\r\n<li>Media Manager with automatic image resizing and watermarking</li>\r\n<li>Advanced Pricing Rules and support for Special Prices (see marketing tools)</li>\r\n<li>Search Results rewrites and redirects</li>\r\n<li>Approve, Edit and Delete Product Tags</li>\r\n<li>Approve, Edit and Delete Product Reviews</li>\r\n<li>RSS feed for Low Inventory Alerts</li>\r\n<li>Customer Personalized Products - Upload text for embroidery, monogramming, etc. (this one is already there, but want to have the following shown after it)</li>\r\n<li>Customer Personalized Products – Upload Image</li>\r\n<li>Customer Personalized Products – Select Date/Time options for products</li>\r\n<li>Customer Sorting – Define Attributes for Customer Sorting on category (price, brand, etc.)</li>\r\n			</ul>\r\n[/bullet_list]\r\n<h3>Catalog Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Layered / Faceted Navigation for filtering of products in categories</li>\r\n<li>Layered / Faceted Navigation for filtering of products in search results</li>\r\n<li>Flat Catalog Module for Improved Performance with large catalogs</li>\r\n<li>Static Block tool to create category landing pages</li>\r\n<li>Ability to assign designs on category and product level (unique design per product/category)</li>\r\n<li>Configurable search with auto-suggested terms</li>\r\n<li>Recently viewed products</li>\r\n<li>Product comparisons</li>\r\n<li>Recently compared products</li>\r\n<li>Cross-sells, Up-sells and Related Items</li>\r\n<li>Popular Search Terms Cloud</li>\r\n<li>Filter by Product Tags</li>\r\n<li>Product Reviews</li>\r\n<li>Product listing in grid or list format</li>\r\n<li>Breadcrumbs</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Product Browsing\"]\r\n<h3>Product Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Multiple Images Per Product</li>\r\n<li>Product Image Zoom-in Capability</li>\r\n<li>Product Reviews</li>\r\n<li>Related Products</li>\r\n<li>Stock Availability</li>\r\n<li>Multi-Tier Pricing Upsell</li>\r\n<li>Product Option Selection</li>\r\n<li>Grouped Products View</li>\r\n<li>Add to Wishlist</li>\r\n<li>Send to a Friend with Email</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]\r\n\r\n\r\n\r\n\r\n','eCommerce WebShop Lite','','inherit','closed','closed','','156-revision-21','','','2011-07-18 11:54:39','2011-07-18 11:54:39','',156,'http://bestecommerce-uk.com/2011/07/156-revision-21/',0,'revision','',0),(295,1,'2011-07-18 11:55:11','2011-07-18 11:55:11','<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>Our entry level product for the SME\'s and growing companies, WebShop 3.0 Lite provides a high level of function across the board.</p><p>Supporting advanced functions from multi-tiered pricing structures to integration with Amazon and eBay, the pro system is the benchmark for growing and established High Street brand retailers</p> \r\n<h2>£999 + £60/month   </h2>\r\n<a href=\"/about-us\" class=\"btn impactBtn\"><span>Add to Cart/Sign-Up</span></a><br /><br /><br />\r\n[button_link url=\"http://www.webdesign-uk.org/webshop-3-0-feature-list/\" style=\"medium blue\"]View Webshop 3.0 functionality[/button_link]\r\n[button_link url=\"http://www.webdesign-uk.org/webshop-3-0-feature-list/\" style=\"medium blue\"]Download Webshop 3.0 functionality[/button_link]<br /><br /><br />\r\n\r\n</div></div>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n\r\n</div></div>\r\n\r\n\r\n[tabs]\r\n	[tab title=\"Site Management\"]\r\n<h3>Site Management</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\r\n<li>Administration of permissions, system roles and users</li>\r\n<li>Web Services API for easy integration between Magento and any third-party application</li>\r\n<li>Fully 100% customizable design using templates</li>\r\n<li>Customer Groups</li>\r\n<li>One-Click Upgrades</li>\r\n<li>Content Management System for Informational Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n<h3>Analytics and reporting</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n <li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"SEO, Marketing Promotions and Tools\"]\r\n<h3>Search Engine Optimisation</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>100% Search Engine Friendly</li>\r\n<li>Google Site Map</li>\r\n<li>Search Engine Friendly URL’s</li>\r\n<li>URL Rewrites give full control of URL’s</li>\r\n<li>Meta-information for products and categories</li>\r\n<li>Auto-generated Site Map for display on site</li>\r\n<li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Marketing Promotions and Tools</h3>\r\n	<ul>\r\n<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n<h3>Orders</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n<h3>Checkout, Payment and Shipping</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Cheques/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\n<li>Shopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Customer\"]\r\n<h3>Customer Service</h3> \r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Contact Us form</li>\r\n<li>Feature-rich Customer Accounts</li>\r\n<li>Order History with Status Updates</li>\r\n<li>Order Tracking from Account</li>\r\n<li>Password Reset email from front-end and admin panel</li>\r\n<li>Order and Account Update Emails</li>\r\n<li>Customizable Order Emails</li>\r\n<li>Create and Edit Orders from the Admin Panel</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Customer Accounts</h3> \r\n	<ul>\r\n		<li>Order status and history</li>\r\n<li>Re-orders from account</li>\r\n<li>Recently ordered items</li>\r\n<li>Address Book with unlimited addresses</li>\r\n<li>Default Billing and Shipping addresses</li>\r\n<li>Wishlist with ability to add comments</li>\r\n<li>Email or Send RSS feed of Wishlist</li>\r\n<li>Newsletter Subscription management</li>\r\n<li>Product Reviews submitted</li>\r\n<li>Product Tags submitted</li>\r\n<li>Downloadable/Digital Products<li>\r\n<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Management & Browsing\"]\r\n<h3>Catalog Management</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Inventory Management with Backordered items, Minimum and Maximum quantities</li>\r\n<li>Batch Import and Export of catalog</li>\r\n<li>Batch Updates to products in admin panel</li>\r\n<li>Google Base Integration</li>\r\n<li>Simple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products</li>\r\n<li>Virtual Products</li>\r\n<li>Downloadable/Digital Products</li>\r\n<li>Customer Personalized Products - upload text for embroidery, monogramming, etc.</li>\r\n<li>Tax Rates per location, customer group and product type</li>\r\n<li>Attribute Sets for quick product creation of different item types</li>\r\n<li>Create Store-specific attributes on the fly</li>\r\n<li>Media Manager with automatic image resizing and watermarking</li>\r\n<li>Advanced Pricing Rules and support for Special Prices (see marketing tools)</li>\r\n<li>Search Results rewrites and redirects</li>\r\n<li>Approve, Edit and Delete Product Tags</li>\r\n<li>Approve, Edit and Delete Product Reviews</li>\r\n<li>RSS feed for Low Inventory Alerts</li>\r\n<li>Customer Personalized Products - Upload text for embroidery, monogramming, etc. (this one is already there, but want to have the following shown after it)</li>\r\n<li>Customer Personalized Products – Upload Image</li>\r\n<li>Customer Personalized Products – Select Date/Time options for products</li>\r\n<li>Customer Sorting – Define Attributes for Customer Sorting on category (price, brand, etc.)</li>\r\n			</ul>\r\n[/bullet_list]\r\n<h3>Catalog Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Layered / Faceted Navigation for filtering of products in categories</li>\r\n<li>Layered / Faceted Navigation for filtering of products in search results</li>\r\n<li>Flat Catalog Module for Improved Performance with large catalogs</li>\r\n<li>Static Block tool to create category landing pages</li>\r\n<li>Ability to assign designs on category and product level (unique design per product/category)</li>\r\n<li>Configurable search with auto-suggested terms</li>\r\n<li>Recently viewed products</li>\r\n<li>Product comparisons</li>\r\n<li>Recently compared products</li>\r\n<li>Cross-sells, Up-sells and Related Items</li>\r\n<li>Popular Search Terms Cloud</li>\r\n<li>Filter by Product Tags</li>\r\n<li>Product Reviews</li>\r\n<li>Product listing in grid or list format</li>\r\n<li>Breadcrumbs</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Product Browsing\"]\r\n<h3>Product Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Multiple Images Per Product</li>\r\n<li>Product Image Zoom-in Capability</li>\r\n<li>Product Reviews</li>\r\n<li>Related Products</li>\r\n<li>Stock Availability</li>\r\n<li>Multi-Tier Pricing Upsell</li>\r\n<li>Product Option Selection</li>\r\n<li>Grouped Products View</li>\r\n<li>Add to Wishlist</li>\r\n<li>Send to a Friend with Email</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]\r\n\r\n\r\n\r\n\r\n','eCommerce WebShop Lite','','inherit','closed','closed','','156-revision-22','','','2011-07-18 11:55:11','2011-07-18 11:55:11','',156,'http://bestecommerce-uk.com/2011/07/156-revision-22/',0,'revision','',0),(296,1,'2011-07-18 11:56:53','2011-07-18 11:56:53','<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>Our entry level product for the SME\'s and growing companies, WebShop 3.0 Lite provides a high level of function across the board.</p><p>Supporting advanced functions from multi-tiered pricing structures to integration with Amazon and eBay, the pro system is the benchmark for growing and established High Street brand retailers</p> \r\n<h2>£999 + £60/month   </h2>\r\n<a href=\"/about-us\" class=\"btn impactBtn\"><span>Add to Cart/Sign-Up</span></a><br /><br /><br />\r\n[button_link url=\"http://www.webdesign-uk.org/webshop-3-0-feature-list/\" style=\"medium blue\"]View Webshop 3.0 functionality[/button_link][clear]\r\n[button_link url=\"http://www.webdesign-uk.org/webshop-3-0-feature-list/\" style=\"medium blue\"]Download Webshop 3.0 functionality[/button_link]<br /><br /><br />\r\n\r\n</div></div>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n\r\n</div></div>\r\n\r\n\r\n[tabs]\r\n	[tab title=\"Site Management\"]\r\n<h3>Site Management</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\r\n<li>Administration of permissions, system roles and users</li>\r\n<li>Web Services API for easy integration between Magento and any third-party application</li>\r\n<li>Fully 100% customizable design using templates</li>\r\n<li>Customer Groups</li>\r\n<li>One-Click Upgrades</li>\r\n<li>Content Management System for Informational Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n<h3>Analytics and reporting</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n <li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"SEO, Marketing Promotions and Tools\"]\r\n<h3>Search Engine Optimisation</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>100% Search Engine Friendly</li>\r\n<li>Google Site Map</li>\r\n<li>Search Engine Friendly URL’s</li>\r\n<li>URL Rewrites give full control of URL’s</li>\r\n<li>Meta-information for products and categories</li>\r\n<li>Auto-generated Site Map for display on site</li>\r\n<li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Marketing Promotions and Tools</h3>\r\n	<ul>\r\n<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n<h3>Orders</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n<h3>Checkout, Payment and Shipping</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Cheques/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\n<li>Shopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Customer\"]\r\n<h3>Customer Service</h3> \r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Contact Us form</li>\r\n<li>Feature-rich Customer Accounts</li>\r\n<li>Order History with Status Updates</li>\r\n<li>Order Tracking from Account</li>\r\n<li>Password Reset email from front-end and admin panel</li>\r\n<li>Order and Account Update Emails</li>\r\n<li>Customizable Order Emails</li>\r\n<li>Create and Edit Orders from the Admin Panel</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Customer Accounts</h3> \r\n	<ul>\r\n		<li>Order status and history</li>\r\n<li>Re-orders from account</li>\r\n<li>Recently ordered items</li>\r\n<li>Address Book with unlimited addresses</li>\r\n<li>Default Billing and Shipping addresses</li>\r\n<li>Wishlist with ability to add comments</li>\r\n<li>Email or Send RSS feed of Wishlist</li>\r\n<li>Newsletter Subscription management</li>\r\n<li>Product Reviews submitted</li>\r\n<li>Product Tags submitted</li>\r\n<li>Downloadable/Digital Products<li>\r\n<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Management & Browsing\"]\r\n<h3>Catalog Management</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Inventory Management with Backordered items, Minimum and Maximum quantities</li>\r\n<li>Batch Import and Export of catalog</li>\r\n<li>Batch Updates to products in admin panel</li>\r\n<li>Google Base Integration</li>\r\n<li>Simple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products</li>\r\n<li>Virtual Products</li>\r\n<li>Downloadable/Digital Products</li>\r\n<li>Customer Personalized Products - upload text for embroidery, monogramming, etc.</li>\r\n<li>Tax Rates per location, customer group and product type</li>\r\n<li>Attribute Sets for quick product creation of different item types</li>\r\n<li>Create Store-specific attributes on the fly</li>\r\n<li>Media Manager with automatic image resizing and watermarking</li>\r\n<li>Advanced Pricing Rules and support for Special Prices (see marketing tools)</li>\r\n<li>Search Results rewrites and redirects</li>\r\n<li>Approve, Edit and Delete Product Tags</li>\r\n<li>Approve, Edit and Delete Product Reviews</li>\r\n<li>RSS feed for Low Inventory Alerts</li>\r\n<li>Customer Personalized Products - Upload text for embroidery, monogramming, etc. (this one is already there, but want to have the following shown after it)</li>\r\n<li>Customer Personalized Products – Upload Image</li>\r\n<li>Customer Personalized Products – Select Date/Time options for products</li>\r\n<li>Customer Sorting – Define Attributes for Customer Sorting on category (price, brand, etc.)</li>\r\n			</ul>\r\n[/bullet_list]\r\n<h3>Catalog Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Layered / Faceted Navigation for filtering of products in categories</li>\r\n<li>Layered / Faceted Navigation for filtering of products in search results</li>\r\n<li>Flat Catalog Module for Improved Performance with large catalogs</li>\r\n<li>Static Block tool to create category landing pages</li>\r\n<li>Ability to assign designs on category and product level (unique design per product/category)</li>\r\n<li>Configurable search with auto-suggested terms</li>\r\n<li>Recently viewed products</li>\r\n<li>Product comparisons</li>\r\n<li>Recently compared products</li>\r\n<li>Cross-sells, Up-sells and Related Items</li>\r\n<li>Popular Search Terms Cloud</li>\r\n<li>Filter by Product Tags</li>\r\n<li>Product Reviews</li>\r\n<li>Product listing in grid or list format</li>\r\n<li>Breadcrumbs</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Product Browsing\"]\r\n<h3>Product Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Multiple Images Per Product</li>\r\n<li>Product Image Zoom-in Capability</li>\r\n<li>Product Reviews</li>\r\n<li>Related Products</li>\r\n<li>Stock Availability</li>\r\n<li>Multi-Tier Pricing Upsell</li>\r\n<li>Product Option Selection</li>\r\n<li>Grouped Products View</li>\r\n<li>Add to Wishlist</li>\r\n<li>Send to a Friend with Email</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]\r\n\r\n\r\n\r\n\r\n','eCommerce WebShop Lite','','inherit','closed','closed','','156-revision-23','','','2011-07-18 11:56:53','2011-07-18 11:56:53','',156,'http://bestecommerce-uk.com/2011/07/156-revision-23/',0,'revision','',0),(298,1,'2011-07-18 11:58:08','2011-07-18 11:58:08','<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>Our entry level product for the SME\'s and growing companies, WebShop 3.0 Lite provides a high level of function across the board.</p><p>Supporting advanced functions from multi-tiered pricing structures to integration with Amazon and eBay, the pro system is the benchmark for growing and established High Street brand retailers</p> \r\n<h2>£999 + £60/month   </h2>\r\n<a href=\"/about-us\" class=\"btn impactBtn\"><span>Add to Cart/Sign-Up</span></a><br /><br /><br />\r\n[button_link url=\"http://www.webdesign-uk.org/webshop-3-0-feature-list/\" style=\"medium blue\"]View Webshop 3.0 functionality[/button_link]\r\n[button_link url=\"http://www.webdesign-uk.org/webshop-3-0-feature-list/\" style=\"medium blue\"]Webshop 3.0 functionality.pdf[/button_link]<br /><br /><br />\r\n\r\n</div></div>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n\r\n</div></div>\r\n\r\n\r\n[tabs]\r\n	[tab title=\"Site Management\"]\r\n<h3>Site Management</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\r\n<li>Administration of permissions, system roles and users</li>\r\n<li>Web Services API for easy integration between Magento and any third-party application</li>\r\n<li>Fully 100% customizable design using templates</li>\r\n<li>Customer Groups</li>\r\n<li>One-Click Upgrades</li>\r\n<li>Content Management System for Informational Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n<h3>Analytics and reporting</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n <li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"SEO, Marketing Promotions and Tools\"]\r\n<h3>Search Engine Optimisation</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>100% Search Engine Friendly</li>\r\n<li>Google Site Map</li>\r\n<li>Search Engine Friendly URL’s</li>\r\n<li>URL Rewrites give full control of URL’s</li>\r\n<li>Meta-information for products and categories</li>\r\n<li>Auto-generated Site Map for display on site</li>\r\n<li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Marketing Promotions and Tools</h3>\r\n	<ul>\r\n<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n<h3>Orders</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n<h3>Checkout, Payment and Shipping</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Cheques/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\n<li>Shopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Customer\"]\r\n<h3>Customer Service</h3> \r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Contact Us form</li>\r\n<li>Feature-rich Customer Accounts</li>\r\n<li>Order History with Status Updates</li>\r\n<li>Order Tracking from Account</li>\r\n<li>Password Reset email from front-end and admin panel</li>\r\n<li>Order and Account Update Emails</li>\r\n<li>Customizable Order Emails</li>\r\n<li>Create and Edit Orders from the Admin Panel</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Customer Accounts</h3> \r\n	<ul>\r\n		<li>Order status and history</li>\r\n<li>Re-orders from account</li>\r\n<li>Recently ordered items</li>\r\n<li>Address Book with unlimited addresses</li>\r\n<li>Default Billing and Shipping addresses</li>\r\n<li>Wishlist with ability to add comments</li>\r\n<li>Email or Send RSS feed of Wishlist</li>\r\n<li>Newsletter Subscription management</li>\r\n<li>Product Reviews submitted</li>\r\n<li>Product Tags submitted</li>\r\n<li>Downloadable/Digital Products<li>\r\n<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Management & Browsing\"]\r\n<h3>Catalog Management</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Inventory Management with Backordered items, Minimum and Maximum quantities</li>\r\n<li>Batch Import and Export of catalog</li>\r\n<li>Batch Updates to products in admin panel</li>\r\n<li>Google Base Integration</li>\r\n<li>Simple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products</li>\r\n<li>Virtual Products</li>\r\n<li>Downloadable/Digital Products</li>\r\n<li>Customer Personalized Products - upload text for embroidery, monogramming, etc.</li>\r\n<li>Tax Rates per location, customer group and product type</li>\r\n<li>Attribute Sets for quick product creation of different item types</li>\r\n<li>Create Store-specific attributes on the fly</li>\r\n<li>Media Manager with automatic image resizing and watermarking</li>\r\n<li>Advanced Pricing Rules and support for Special Prices (see marketing tools)</li>\r\n<li>Search Results rewrites and redirects</li>\r\n<li>Approve, Edit and Delete Product Tags</li>\r\n<li>Approve, Edit and Delete Product Reviews</li>\r\n<li>RSS feed for Low Inventory Alerts</li>\r\n<li>Customer Personalized Products - Upload text for embroidery, monogramming, etc. (this one is already there, but want to have the following shown after it)</li>\r\n<li>Customer Personalized Products – Upload Image</li>\r\n<li>Customer Personalized Products – Select Date/Time options for products</li>\r\n<li>Customer Sorting – Define Attributes for Customer Sorting on category (price, brand, etc.)</li>\r\n			</ul>\r\n[/bullet_list]\r\n<h3>Catalog Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Layered / Faceted Navigation for filtering of products in categories</li>\r\n<li>Layered / Faceted Navigation for filtering of products in search results</li>\r\n<li>Flat Catalog Module for Improved Performance with large catalogs</li>\r\n<li>Static Block tool to create category landing pages</li>\r\n<li>Ability to assign designs on category and product level (unique design per product/category)</li>\r\n<li>Configurable search with auto-suggested terms</li>\r\n<li>Recently viewed products</li>\r\n<li>Product comparisons</li>\r\n<li>Recently compared products</li>\r\n<li>Cross-sells, Up-sells and Related Items</li>\r\n<li>Popular Search Terms Cloud</li>\r\n<li>Filter by Product Tags</li>\r\n<li>Product Reviews</li>\r\n<li>Product listing in grid or list format</li>\r\n<li>Breadcrumbs</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Product Browsing\"]\r\n<h3>Product Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Multiple Images Per Product</li>\r\n<li>Product Image Zoom-in Capability</li>\r\n<li>Product Reviews</li>\r\n<li>Related Products</li>\r\n<li>Stock Availability</li>\r\n<li>Multi-Tier Pricing Upsell</li>\r\n<li>Product Option Selection</li>\r\n<li>Grouped Products View</li>\r\n<li>Add to Wishlist</li>\r\n<li>Send to a Friend with Email</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]\r\n\r\n\r\n\r\n\r\n','eCommerce WebShop Lite','','inherit','closed','closed','','156-revision-25','','','2011-07-18 11:58:08','2011-07-18 11:58:08','',156,'http://bestecommerce-uk.com/2011/07/156-revision-25/',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (299,1,'2011-07-15 12:54:09','2011-07-15 12:54:09','<!-- [one_third]First column of content.[/one_third]\r\n[one_third]Second column of content.[/one_third]\r\n[one_third_last]Last column of content.[/one_third_last]\r\n-->\r\n\r\n[tabs]\r\n	[tab title=\"Site Management\"]\r\n<h3>Site Management</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\r\n<li>Administration of permissions, system roles and users</li>\r\n<li>Web Services API for easy integration between Magento and any third-party application</li>\r\n<li>Fully 100% customizable design using templates</li>\r\n<li>Customer Groups</li>\r\n<li>One-Click Upgrades</li>\r\n<li>Content Management System for Informational Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n<h3>Analytics and reporting</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n <li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"SEO, Marketing Promotions and Tools\"]\r\n<h3>Search Engine Optimisation</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>100% Search Engine Friendly</li>\r\n<li>Google Site Map</li>\r\n<li>Search Engine Friendly URL’s</li>\r\n<li>URL Rewrites give full control of URL’s</li>\r\n<li>Meta-information for products and categories</li>\r\n<li>Auto-generated Site Map for display on site</li>\r\n<li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Marketing Promotions and Tools</h3>\r\n	<ul>\r\n<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n<h3>Orders</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n<h3>Checkout, Payment and Shipping</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Cheques/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\n<li>Shopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Customer\"]\r\n<h3>Customer Service</h3> \r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Contact Us form</li>\r\n<li>Feature-rich Customer Accounts</li>\r\n<li>Order History with Status Updates</li>\r\n<li>Order Tracking from Account</li>\r\n<li>Password Reset email from front-end and admin panel</li>\r\n<li>Order and Account Update Emails</li>\r\n<li>Customizable Order Emails</li>\r\n<li>Create and Edit Orders from the Admin Panel</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Customer Accounts</h3> \r\n	<ul>\r\n		<li>Order status and history</li>\r\n<li>Re-orders from account</li>\r\n<li>Recently ordered items</li>\r\n<li>Address Book with unlimited addresses</li>\r\n<li>Default Billing and Shipping addresses</li>\r\n<li>Wishlist with ability to add comments</li>\r\n<li>Email or Send RSS feed of Wishlist</li>\r\n<li>Newsletter Subscription management</li>\r\n<li>Product Reviews submitted</li>\r\n<li>Product Tags submitted</li>\r\n<li>Downloadable/Digital Products<li>\r\n<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Management & Browsing\"]\r\n<h3>Catalog Management</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Inventory Management with Backordered items, Minimum and Maximum quantities</li>\r\n<li>Batch Import and Export of catalog</li>\r\n<li>Batch Updates to products in admin panel</li>\r\n<li>Google Base Integration</li>\r\n<li>Simple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products</li>\r\n<li>Virtual Products</li>\r\n<li>Downloadable/Digital Products</li>\r\n<li>Customer Personalized Products - upload text for embroidery, monogramming, etc.</li>\r\n<li>Tax Rates per location, customer group and product type</li>\r\n<li>Attribute Sets for quick product creation of different item types</li>\r\n<li>Create Store-specific attributes on the fly</li>\r\n<li>Media Manager with automatic image resizing and watermarking</li>\r\n<li>Advanced Pricing Rules and support for Special Prices (see marketing tools)</li>\r\n<li>Search Results rewrites and redirects</li>\r\n<li>Approve, Edit and Delete Product Tags</li>\r\n<li>Approve, Edit and Delete Product Reviews</li>\r\n<li>RSS feed for Low Inventory Alerts</li>\r\n<li>Customer Personalized Products - Upload text for embroidery, monogramming, etc. (this one is already there, but want to have the following shown after it)</li>\r\n<li>Customer Personalized Products – Upload Image</li>\r\n<li>Customer Personalized Products – Select Date/Time options for products</li>\r\n<li>Customer Sorting – Define Attributes for Customer Sorting on category (price, brand, etc.)</li>\r\n			</ul>\r\n[/bullet_list]\r\n<h3>Catalog Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Layered / Faceted Navigation for filtering of products in categories</li>\r\n<li>Layered / Faceted Navigation for filtering of products in search results</li>\r\n<li>Flat Catalog Module for Improved Performance with large catalogs</li>\r\n<li>Static Block tool to create category landing pages</li>\r\n<li>Ability to assign designs on category and product level (unique design per product/category)</li>\r\n<li>Configurable search with auto-suggested terms</li>\r\n<li>Recently viewed products</li>\r\n<li>Product comparisons</li>\r\n<li>Recently compared products</li>\r\n<li>Cross-sells, Up-sells and Related Items</li>\r\n<li>Popular Search Terms Cloud</li>\r\n<li>Filter by Product Tags</li>\r\n<li>Product Reviews</li>\r\n<li>Product listing in grid or list format</li>\r\n<li>Breadcrumbs</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Product Browsing\"]\r\n<h3>Product Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Multiple Images Per Product</li>\r\n<li>Product Image Zoom-in Capability</li>\r\n<li>Product Reviews</li>\r\n<li>Related Products</li>\r\n<li>Stock Availability</li>\r\n<li>Multi-Tier Pricing Upsell</li>\r\n<li>Product Option Selection</li>\r\n<li>Grouped Products View</li>\r\n<li>Add to Wishlist</li>\r\n<li>Send to a Friend with Email</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]\r\n','WebShop 3.0 Feature List','','inherit','closed','closed','','193-revision-55','','','2011-07-15 12:54:09','2011-07-15 12:54:09','',193,'http://bestecommerce-uk.com/2011/07/193-revision-55/',0,'revision','',0),(300,1,'2011-07-18 12:08:02','2011-07-18 12:08:02','<!-- [one_third]First column of content.[/one_third]\r\n[one_third]Second column of content.[/one_third]\r\n[one_third_last]Last column of content.[/one_third_last]\r\n-->\r\n[button_link url=\"back\"]Button Text[/button_link]\r\n[tabs]\r\n	[tab title=\"Site Management\"]\r\n<h3>Site Management</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\r\n<li>Administration of permissions, system roles and users</li>\r\n<li>Web Services API for easy integration between Magento and any third-party application</li>\r\n<li>Fully 100% customizable design using templates</li>\r\n<li>Customer Groups</li>\r\n<li>One-Click Upgrades</li>\r\n<li>Content Management System for Informational Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n<h3>Analytics and reporting</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n <li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"SEO, Marketing Promotions and Tools\"]\r\n<h3>Search Engine Optimisation</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>100% Search Engine Friendly</li>\r\n<li>Google Site Map</li>\r\n<li>Search Engine Friendly URL’s</li>\r\n<li>URL Rewrites give full control of URL’s</li>\r\n<li>Meta-information for products and categories</li>\r\n<li>Auto-generated Site Map for display on site</li>\r\n<li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Marketing Promotions and Tools</h3>\r\n	<ul>\r\n<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n<h3>Orders</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n<h3>Checkout, Payment and Shipping</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Cheques/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\n<li>Shopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Customer\"]\r\n<h3>Customer Service</h3> \r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Contact Us form</li>\r\n<li>Feature-rich Customer Accounts</li>\r\n<li>Order History with Status Updates</li>\r\n<li>Order Tracking from Account</li>\r\n<li>Password Reset email from front-end and admin panel</li>\r\n<li>Order and Account Update Emails</li>\r\n<li>Customizable Order Emails</li>\r\n<li>Create and Edit Orders from the Admin Panel</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Customer Accounts</h3> \r\n	<ul>\r\n		<li>Order status and history</li>\r\n<li>Re-orders from account</li>\r\n<li>Recently ordered items</li>\r\n<li>Address Book with unlimited addresses</li>\r\n<li>Default Billing and Shipping addresses</li>\r\n<li>Wishlist with ability to add comments</li>\r\n<li>Email or Send RSS feed of Wishlist</li>\r\n<li>Newsletter Subscription management</li>\r\n<li>Product Reviews submitted</li>\r\n<li>Product Tags submitted</li>\r\n<li>Downloadable/Digital Products<li>\r\n<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Management & Browsing\"]\r\n<h3>Catalog Management</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Inventory Management with Backordered items, Minimum and Maximum quantities</li>\r\n<li>Batch Import and Export of catalog</li>\r\n<li>Batch Updates to products in admin panel</li>\r\n<li>Google Base Integration</li>\r\n<li>Simple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products</li>\r\n<li>Virtual Products</li>\r\n<li>Downloadable/Digital Products</li>\r\n<li>Customer Personalized Products - upload text for embroidery, monogramming, etc.</li>\r\n<li>Tax Rates per location, customer group and product type</li>\r\n<li>Attribute Sets for quick product creation of different item types</li>\r\n<li>Create Store-specific attributes on the fly</li>\r\n<li>Media Manager with automatic image resizing and watermarking</li>\r\n<li>Advanced Pricing Rules and support for Special Prices (see marketing tools)</li>\r\n<li>Search Results rewrites and redirects</li>\r\n<li>Approve, Edit and Delete Product Tags</li>\r\n<li>Approve, Edit and Delete Product Reviews</li>\r\n<li>RSS feed for Low Inventory Alerts</li>\r\n<li>Customer Personalized Products - Upload text for embroidery, monogramming, etc. (this one is already there, but want to have the following shown after it)</li>\r\n<li>Customer Personalized Products – Upload Image</li>\r\n<li>Customer Personalized Products – Select Date/Time options for products</li>\r\n<li>Customer Sorting – Define Attributes for Customer Sorting on category (price, brand, etc.)</li>\r\n			</ul>\r\n[/bullet_list]\r\n<h3>Catalog Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Layered / Faceted Navigation for filtering of products in categories</li>\r\n<li>Layered / Faceted Navigation for filtering of products in search results</li>\r\n<li>Flat Catalog Module for Improved Performance with large catalogs</li>\r\n<li>Static Block tool to create category landing pages</li>\r\n<li>Ability to assign designs on category and product level (unique design per product/category)</li>\r\n<li>Configurable search with auto-suggested terms</li>\r\n<li>Recently viewed products</li>\r\n<li>Product comparisons</li>\r\n<li>Recently compared products</li>\r\n<li>Cross-sells, Up-sells and Related Items</li>\r\n<li>Popular Search Terms Cloud</li>\r\n<li>Filter by Product Tags</li>\r\n<li>Product Reviews</li>\r\n<li>Product listing in grid or list format</li>\r\n<li>Breadcrumbs</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Product Browsing\"]\r\n<h3>Product Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Multiple Images Per Product</li>\r\n<li>Product Image Zoom-in Capability</li>\r\n<li>Product Reviews</li>\r\n<li>Related Products</li>\r\n<li>Stock Availability</li>\r\n<li>Multi-Tier Pricing Upsell</li>\r\n<li>Product Option Selection</li>\r\n<li>Grouped Products View</li>\r\n<li>Add to Wishlist</li>\r\n<li>Send to a Friend with Email</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]\r\n','WebShop 3.0 Feature List','','inherit','closed','closed','','193-revision-56','','','2011-07-18 12:08:02','2011-07-18 12:08:02','',193,'http://bestecommerce-uk.com/2011/07/193-revision-56/',0,'revision','',0),(301,1,'2011-07-18 12:09:26','2011-07-18 12:09:26','<!-- [one_third]First column of content.[/one_third]\r\n[one_third]Second column of content.[/one_third]\r\n[one_third_last]Last column of content.[/one_third_last]\r\n-->\r\n[button_link url=\"parent\"]Button Text[/button_link]\r\n[tabs]\r\n	[tab title=\"Site Management\"]\r\n<h3>Site Management</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\r\n<li>Administration of permissions, system roles and users</li>\r\n<li>Web Services API for easy integration between Magento and any third-party application</li>\r\n<li>Fully 100% customizable design using templates</li>\r\n<li>Customer Groups</li>\r\n<li>One-Click Upgrades</li>\r\n<li>Content Management System for Informational Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n<h3>Analytics and reporting</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n <li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"SEO, Marketing Promotions and Tools\"]\r\n<h3>Search Engine Optimisation</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>100% Search Engine Friendly</li>\r\n<li>Google Site Map</li>\r\n<li>Search Engine Friendly URL’s</li>\r\n<li>URL Rewrites give full control of URL’s</li>\r\n<li>Meta-information for products and categories</li>\r\n<li>Auto-generated Site Map for display on site</li>\r\n<li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Marketing Promotions and Tools</h3>\r\n	<ul>\r\n<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n<h3>Orders</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n<h3>Checkout, Payment and Shipping</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Cheques/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\n<li>Shopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Customer\"]\r\n<h3>Customer Service</h3> \r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Contact Us form</li>\r\n<li>Feature-rich Customer Accounts</li>\r\n<li>Order History with Status Updates</li>\r\n<li>Order Tracking from Account</li>\r\n<li>Password Reset email from front-end and admin panel</li>\r\n<li>Order and Account Update Emails</li>\r\n<li>Customizable Order Emails</li>\r\n<li>Create and Edit Orders from the Admin Panel</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Customer Accounts</h3> \r\n	<ul>\r\n		<li>Order status and history</li>\r\n<li>Re-orders from account</li>\r\n<li>Recently ordered items</li>\r\n<li>Address Book with unlimited addresses</li>\r\n<li>Default Billing and Shipping addresses</li>\r\n<li>Wishlist with ability to add comments</li>\r\n<li>Email or Send RSS feed of Wishlist</li>\r\n<li>Newsletter Subscription management</li>\r\n<li>Product Reviews submitted</li>\r\n<li>Product Tags submitted</li>\r\n<li>Downloadable/Digital Products<li>\r\n<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Management & Browsing\"]\r\n<h3>Catalog Management</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Inventory Management with Backordered items, Minimum and Maximum quantities</li>\r\n<li>Batch Import and Export of catalog</li>\r\n<li>Batch Updates to products in admin panel</li>\r\n<li>Google Base Integration</li>\r\n<li>Simple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products</li>\r\n<li>Virtual Products</li>\r\n<li>Downloadable/Digital Products</li>\r\n<li>Customer Personalized Products - upload text for embroidery, monogramming, etc.</li>\r\n<li>Tax Rates per location, customer group and product type</li>\r\n<li>Attribute Sets for quick product creation of different item types</li>\r\n<li>Create Store-specific attributes on the fly</li>\r\n<li>Media Manager with automatic image resizing and watermarking</li>\r\n<li>Advanced Pricing Rules and support for Special Prices (see marketing tools)</li>\r\n<li>Search Results rewrites and redirects</li>\r\n<li>Approve, Edit and Delete Product Tags</li>\r\n<li>Approve, Edit and Delete Product Reviews</li>\r\n<li>RSS feed for Low Inventory Alerts</li>\r\n<li>Customer Personalized Products - Upload text for embroidery, monogramming, etc. (this one is already there, but want to have the following shown after it)</li>\r\n<li>Customer Personalized Products – Upload Image</li>\r\n<li>Customer Personalized Products – Select Date/Time options for products</li>\r\n<li>Customer Sorting – Define Attributes for Customer Sorting on category (price, brand, etc.)</li>\r\n			</ul>\r\n[/bullet_list]\r\n<h3>Catalog Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Layered / Faceted Navigation for filtering of products in categories</li>\r\n<li>Layered / Faceted Navigation for filtering of products in search results</li>\r\n<li>Flat Catalog Module for Improved Performance with large catalogs</li>\r\n<li>Static Block tool to create category landing pages</li>\r\n<li>Ability to assign designs on category and product level (unique design per product/category)</li>\r\n<li>Configurable search with auto-suggested terms</li>\r\n<li>Recently viewed products</li>\r\n<li>Product comparisons</li>\r\n<li>Recently compared products</li>\r\n<li>Cross-sells, Up-sells and Related Items</li>\r\n<li>Popular Search Terms Cloud</li>\r\n<li>Filter by Product Tags</li>\r\n<li>Product Reviews</li>\r\n<li>Product listing in grid or list format</li>\r\n<li>Breadcrumbs</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Product Browsing\"]\r\n<h3>Product Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Multiple Images Per Product</li>\r\n<li>Product Image Zoom-in Capability</li>\r\n<li>Product Reviews</li>\r\n<li>Related Products</li>\r\n<li>Stock Availability</li>\r\n<li>Multi-Tier Pricing Upsell</li>\r\n<li>Product Option Selection</li>\r\n<li>Grouped Products View</li>\r\n<li>Add to Wishlist</li>\r\n<li>Send to a Friend with Email</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]\r\n','WebShop 3.0 Feature List','','inherit','closed','closed','','193-revision-57','','','2011-07-18 12:09:26','2011-07-18 12:09:26','',193,'http://bestecommerce-uk.com/2011/07/193-revision-57/',0,'revision','',0),(303,1,'2011-07-18 12:12:04','2011-07-18 12:12:04','<!-- [one_third]First column of content.[/one_third]\r\n[one_third]Second column of content.[/one_third]\r\n[one_third_last]Last column of content.[/one_third_last]\r\n-->\r\n\r\n[tabs]\r\n	[tab title=\"Site Management\"]\r\n<h3>Site Management</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\r\n<li>Administration of permissions, system roles and users</li>\r\n<li>Web Services API for easy integration between Magento and any third-party application</li>\r\n<li>Fully 100% customizable design using templates</li>\r\n<li>Customer Groups</li>\r\n<li>One-Click Upgrades</li>\r\n<li>Content Management System for Informational Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n<h3>Analytics and reporting</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n <li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"SEO, Marketing Promotions and Tools\"]\r\n<h3>Search Engine Optimisation</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>100% Search Engine Friendly</li>\r\n<li>Google Site Map</li>\r\n<li>Search Engine Friendly URL’s</li>\r\n<li>URL Rewrites give full control of URL’s</li>\r\n<li>Meta-information for products and categories</li>\r\n<li>Auto-generated Site Map for display on site</li>\r\n<li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Marketing Promotions and Tools</h3>\r\n	<ul>\r\n<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n<h3>Orders</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n<h3>Checkout, Payment and Shipping</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Cheques/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\n<li>Shopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Customer\"]\r\n<h3>Customer Service</h3> \r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Contact Us form</li>\r\n<li>Feature-rich Customer Accounts</li>\r\n<li>Order History with Status Updates</li>\r\n<li>Order Tracking from Account</li>\r\n<li>Password Reset email from front-end and admin panel</li>\r\n<li>Order and Account Update Emails</li>\r\n<li>Customizable Order Emails</li>\r\n<li>Create and Edit Orders from the Admin Panel</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Customer Accounts</h3> \r\n	<ul>\r\n		<li>Order status and history</li>\r\n<li>Re-orders from account</li>\r\n<li>Recently ordered items</li>\r\n<li>Address Book with unlimited addresses</li>\r\n<li>Default Billing and Shipping addresses</li>\r\n<li>Wishlist with ability to add comments</li>\r\n<li>Email or Send RSS feed of Wishlist</li>\r\n<li>Newsletter Subscription management</li>\r\n<li>Product Reviews submitted</li>\r\n<li>Product Tags submitted</li>\r\n<li>Downloadable/Digital Products<li>\r\n<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Management & Browsing\"]\r\n<h3>Catalog Management</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Inventory Management with Backordered items, Minimum and Maximum quantities</li>\r\n<li>Batch Import and Export of catalog</li>\r\n<li>Batch Updates to products in admin panel</li>\r\n<li>Google Base Integration</li>\r\n<li>Simple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products</li>\r\n<li>Virtual Products</li>\r\n<li>Downloadable/Digital Products</li>\r\n<li>Customer Personalized Products - upload text for embroidery, monogramming, etc.</li>\r\n<li>Tax Rates per location, customer group and product type</li>\r\n<li>Attribute Sets for quick product creation of different item types</li>\r\n<li>Create Store-specific attributes on the fly</li>\r\n<li>Media Manager with automatic image resizing and watermarking</li>\r\n<li>Advanced Pricing Rules and support for Special Prices (see marketing tools)</li>\r\n<li>Search Results rewrites and redirects</li>\r\n<li>Approve, Edit and Delete Product Tags</li>\r\n<li>Approve, Edit and Delete Product Reviews</li>\r\n<li>RSS feed for Low Inventory Alerts</li>\r\n<li>Customer Personalized Products - Upload text for embroidery, monogramming, etc. (this one is already there, but want to have the following shown after it)</li>\r\n<li>Customer Personalized Products – Upload Image</li>\r\n<li>Customer Personalized Products – Select Date/Time options for products</li>\r\n<li>Customer Sorting – Define Attributes for Customer Sorting on category (price, brand, etc.)</li>\r\n			</ul>\r\n[/bullet_list]\r\n<h3>Catalog Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Layered / Faceted Navigation for filtering of products in categories</li>\r\n<li>Layered / Faceted Navigation for filtering of products in search results</li>\r\n<li>Flat Catalog Module for Improved Performance with large catalogs</li>\r\n<li>Static Block tool to create category landing pages</li>\r\n<li>Ability to assign designs on category and product level (unique design per product/category)</li>\r\n<li>Configurable search with auto-suggested terms</li>\r\n<li>Recently viewed products</li>\r\n<li>Product comparisons</li>\r\n<li>Recently compared products</li>\r\n<li>Cross-sells, Up-sells and Related Items</li>\r\n<li>Popular Search Terms Cloud</li>\r\n<li>Filter by Product Tags</li>\r\n<li>Product Reviews</li>\r\n<li>Product listing in grid or list format</li>\r\n<li>Breadcrumbs</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Product Browsing\"]\r\n<h3>Product Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Multiple Images Per Product</li>\r\n<li>Product Image Zoom-in Capability</li>\r\n<li>Product Reviews</li>\r\n<li>Related Products</li>\r\n<li>Stock Availability</li>\r\n<li>Multi-Tier Pricing Upsell</li>\r\n<li>Product Option Selection</li>\r\n<li>Grouped Products View</li>\r\n<li>Add to Wishlist</li>\r\n<li>Send to a Friend with Email</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]\r\n','WebShop 3.0 Feature List','','inherit','closed','closed','','193-revision-59','','','2011-07-18 12:12:04','2011-07-18 12:12:04','',193,'http://bestecommerce-uk.com/2011/07/193-revision-59/',0,'revision','',0),(302,1,'2011-07-18 12:10:13','2011-07-18 12:10:13','<!-- [one_third]First column of content.[/one_third]\r\n[one_third]Second column of content.[/one_third]\r\n[one_third_last]Last column of content.[/one_third_last]\r\n-->\r\n[button_link url=\"parent\"]Button Text[/button_link]\r\n[tabs]\r\n	[tab title=\"Site Management\"]\r\n<h3>Site Management</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\r\n<li>Administration of permissions, system roles and users</li>\r\n<li>Web Services API for easy integration between Magento and any third-party application</li>\r\n<li>Fully 100% customizable design using templates</li>\r\n<li>Customer Groups</li>\r\n<li>One-Click Upgrades</li>\r\n<li>Content Management System for Informational Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n<h3>Analytics and reporting</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n <li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"SEO, Marketing Promotions and Tools\"]\r\n<h3>Search Engine Optimisation</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>100% Search Engine Friendly</li>\r\n<li>Google Site Map</li>\r\n<li>Search Engine Friendly URL’s</li>\r\n<li>URL Rewrites give full control of URL’s</li>\r\n<li>Meta-information for products and categories</li>\r\n<li>Auto-generated Site Map for display on site</li>\r\n<li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Marketing Promotions and Tools</h3>\r\n	<ul>\r\n<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n<h3>Orders</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n<h3>Checkout, Payment and Shipping</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Cheques/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\n<li>Shopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Customer\"]\r\n<h3>Customer Service</h3> \r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Contact Us form</li>\r\n<li>Feature-rich Customer Accounts</li>\r\n<li>Order History with Status Updates</li>\r\n<li>Order Tracking from Account</li>\r\n<li>Password Reset email from front-end and admin panel</li>\r\n<li>Order and Account Update Emails</li>\r\n<li>Customizable Order Emails</li>\r\n<li>Create and Edit Orders from the Admin Panel</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Customer Accounts</h3> \r\n	<ul>\r\n		<li>Order status and history</li>\r\n<li>Re-orders from account</li>\r\n<li>Recently ordered items</li>\r\n<li>Address Book with unlimited addresses</li>\r\n<li>Default Billing and Shipping addresses</li>\r\n<li>Wishlist with ability to add comments</li>\r\n<li>Email or Send RSS feed of Wishlist</li>\r\n<li>Newsletter Subscription management</li>\r\n<li>Product Reviews submitted</li>\r\n<li>Product Tags submitted</li>\r\n<li>Downloadable/Digital Products<li>\r\n<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Management & Browsing\"]\r\n<h3>Catalog Management</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Inventory Management with Backordered items, Minimum and Maximum quantities</li>\r\n<li>Batch Import and Export of catalog</li>\r\n<li>Batch Updates to products in admin panel</li>\r\n<li>Google Base Integration</li>\r\n<li>Simple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products</li>\r\n<li>Virtual Products</li>\r\n<li>Downloadable/Digital Products</li>\r\n<li>Customer Personalized Products - upload text for embroidery, monogramming, etc.</li>\r\n<li>Tax Rates per location, customer group and product type</li>\r\n<li>Attribute Sets for quick product creation of different item types</li>\r\n<li>Create Store-specific attributes on the fly</li>\r\n<li>Media Manager with automatic image resizing and watermarking</li>\r\n<li>Advanced Pricing Rules and support for Special Prices (see marketing tools)</li>\r\n<li>Search Results rewrites and redirects</li>\r\n<li>Approve, Edit and Delete Product Tags</li>\r\n<li>Approve, Edit and Delete Product Reviews</li>\r\n<li>RSS feed for Low Inventory Alerts</li>\r\n<li>Customer Personalized Products - Upload text for embroidery, monogramming, etc. (this one is already there, but want to have the following shown after it)</li>\r\n<li>Customer Personalized Products – Upload Image</li>\r\n<li>Customer Personalized Products – Select Date/Time options for products</li>\r\n<li>Customer Sorting – Define Attributes for Customer Sorting on category (price, brand, etc.)</li>\r\n			</ul>\r\n[/bullet_list]\r\n<h3>Catalog Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Layered / Faceted Navigation for filtering of products in categories</li>\r\n<li>Layered / Faceted Navigation for filtering of products in search results</li>\r\n<li>Flat Catalog Module for Improved Performance with large catalogs</li>\r\n<li>Static Block tool to create category landing pages</li>\r\n<li>Ability to assign designs on category and product level (unique design per product/category)</li>\r\n<li>Configurable search with auto-suggested terms</li>\r\n<li>Recently viewed products</li>\r\n<li>Product comparisons</li>\r\n<li>Recently compared products</li>\r\n<li>Cross-sells, Up-sells and Related Items</li>\r\n<li>Popular Search Terms Cloud</li>\r\n<li>Filter by Product Tags</li>\r\n<li>Product Reviews</li>\r\n<li>Product listing in grid or list format</li>\r\n<li>Breadcrumbs</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Product Browsing\"]\r\n<h3>Product Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Multiple Images Per Product</li>\r\n<li>Product Image Zoom-in Capability</li>\r\n<li>Product Reviews</li>\r\n<li>Related Products</li>\r\n<li>Stock Availability</li>\r\n<li>Multi-Tier Pricing Upsell</li>\r\n<li>Product Option Selection</li>\r\n<li>Grouped Products View</li>\r\n<li>Add to Wishlist</li>\r\n<li>Send to a Friend with Email</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]\r\n','WebShop 3.0 Feature List','','inherit','closed','closed','','193-revision-58','','','2011-07-18 12:10:13','2011-07-18 12:10:13','',193,'http://bestecommerce-uk.com/2011/07/193-revision-58/',0,'revision','',0),(304,1,'2011-07-18 12:12:20','2011-07-18 12:12:20','<!-- [one_third]First column of content.[/one_third]\r\n[one_third]Second column of content.[/one_third]\r\n[one_third_last]Last column of content.[/one_third_last]\r\n-->\r\n\r\n[tabs]\r\n	[tab title=\"Site Management\"]\r\n<h3>Site Management</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\r\n<li>Administration of permissions, system roles and users</li>\r\n<li>Web Services API for easy integration between Magento and any third-party application</li>\r\n<li>Fully 100% customizable design using templates</li>\r\n<li>Customer Groups</li>\r\n<li>One-Click Upgrades</li>\r\n<li>Content Management System for Informational Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n<h3>Analytics and reporting</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n <li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"SEO, Marketing Promotions and Tools\"]\r\n<h3>Search Engine Optimisation</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>100% Search Engine Friendly</li>\r\n<li>Google Site Map</li>\r\n<li>Search Engine Friendly URL’s</li>\r\n<li>URL Rewrites give full control of URL’s</li>\r\n<li>Meta-information for products and categories</li>\r\n<li>Auto-generated Site Map for display on site</li>\r\n<li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Marketing Promotions and Tools</h3>\r\n	<ul>\r\n<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n<h3>Orders</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n<h3>Checkout, Payment and Shipping</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Cheques/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\n<li>Shopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Customer\"]\r\n<h3>Customer Service</h3> \r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Contact Us form</li>\r\n<li>Feature-rich Customer Accounts</li>\r\n<li>Order History with Status Updates</li>\r\n<li>Order Tracking from Account</li>\r\n<li>Password Reset email from front-end and admin panel</li>\r\n<li>Order and Account Update Emails</li>\r\n<li>Customizable Order Emails</li>\r\n<li>Create and Edit Orders from the Admin Panel</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Customer Accounts</h3> \r\n	<ul>\r\n		<li>Order status and history</li>\r\n<li>Re-orders from account</li>\r\n<li>Recently ordered items</li>\r\n<li>Address Book with unlimited addresses</li>\r\n<li>Default Billing and Shipping addresses</li>\r\n<li>Wishlist with ability to add comments</li>\r\n<li>Email or Send RSS feed of Wishlist</li>\r\n<li>Newsletter Subscription management</li>\r\n<li>Product Reviews submitted</li>\r\n<li>Product Tags submitted</li>\r\n<li>Downloadable/Digital Products<li>\r\n<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Management & Browsing\"]\r\n<h3>Catalog Management</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Inventory Management with Backordered items, Minimum and Maximum quantities</li>\r\n<li>Batch Import and Export of catalog</li>\r\n<li>Batch Updates to products in admin panel</li>\r\n<li>Google Base Integration</li>\r\n<li>Simple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products</li>\r\n<li>Virtual Products</li>\r\n<li>Downloadable/Digital Products</li>\r\n<li>Customer Personalized Products - upload text for embroidery, monogramming, etc.</li>\r\n<li>Tax Rates per location, customer group and product type</li>\r\n<li>Attribute Sets for quick product creation of different item types</li>\r\n<li>Create Store-specific attributes on the fly</li>\r\n<li>Media Manager with automatic image resizing and watermarking</li>\r\n<li>Advanced Pricing Rules and support for Special Prices (see marketing tools)</li>\r\n<li>Search Results rewrites and redirects</li>\r\n<li>Approve, Edit and Delete Product Tags</li>\r\n<li>Approve, Edit and Delete Product Reviews</li>\r\n<li>RSS feed for Low Inventory Alerts</li>\r\n<li>Customer Personalized Products - Upload text for embroidery, monogramming, etc. (this one is already there, but want to have the following shown after it)</li>\r\n<li>Customer Personalized Products – Upload Image</li>\r\n<li>Customer Personalized Products – Select Date/Time options for products</li>\r\n<li>Customer Sorting – Define Attributes for Customer Sorting on category (price, brand, etc.)</li>\r\n			</ul>\r\n[/bullet_list]\r\n<h3>Catalog Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Layered / Faceted Navigation for filtering of products in categories</li>\r\n<li>Layered / Faceted Navigation for filtering of products in search results</li>\r\n<li>Flat Catalog Module for Improved Performance with large catalogs</li>\r\n<li>Static Block tool to create category landing pages</li>\r\n<li>Ability to assign designs on category and product level (unique design per product/category)</li>\r\n<li>Configurable search with auto-suggested terms</li>\r\n<li>Recently viewed products</li>\r\n<li>Product comparisons</li>\r\n<li>Recently compared products</li>\r\n<li>Cross-sells, Up-sells and Related Items</li>\r\n<li>Popular Search Terms Cloud</li>\r\n<li>Filter by Product Tags</li>\r\n<li>Product Reviews</li>\r\n<li>Product listing in grid or list format</li>\r\n<li>Breadcrumbs</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Product Browsing\"]\r\n<h3>Product Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Multiple Images Per Product</li>\r\n<li>Product Image Zoom-in Capability</li>\r\n<li>Product Reviews</li>\r\n<li>Related Products</li>\r\n<li>Stock Availability</li>\r\n<li>Multi-Tier Pricing Upsell</li>\r\n<li>Product Option Selection</li>\r\n<li>Grouped Products View</li>\r\n<li>Add to Wishlist</li>\r\n<li>Send to a Friend with Email</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]\r\n','WebShop 3.0 Feature List','','inherit','closed','closed','','193-revision-60','','','2011-07-18 12:12:20','2011-07-18 12:12:20','',193,'http://bestecommerce-uk.com/2011/07/193-revision-60/',0,'revision','',0),(591,1,'2011-11-24 10:12:28','2011-11-24 10:12:28','[pricing_table columns=\"3\"]\r\n	[pricing_column title=\"WebShop Lite\"]\r\n	    <ul>\r\n		<li>[price_info cost=\"£999\"] + £60 month[/price_info]</li>\r\n		<li>Entry level product for the SME’s and growing companies.</li>\r\n		<li>Includes upload of 30 products</li>\r\n		<li>[button_link url=\"ecommerce-webshop-lite\"]class=\"btn orange\"View Package[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n	[pricing_column title=\"WebShop Standard\" highlight=\"true\"]\r\n	    <ul>\r\n	 	<li>[price_info cost=\"£1999\"]+ £60 month[/price_info]</li>\r\n		<li>Provides a strong base from which to grow your presence on-line.</li>\r\n		<li>Inculdes upload of 60 products</li>\r\n		<li>[button_link url=\"ecommerce-webshop-standard\"]View Package[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n	[pricing_column title=\"WebShop Pro\"] \r\n	    <ul>\r\n		<li>[price_info cost=\"£2999\"]+ £60 month[/price_info]</li>\r\n		<li>Our flagship product for the SME’s and growing companies. </li>\r\n		<li>Inculdes upload of 90 products.</li>\r\n		<li>[button_link url=\"e-commerce-webshop-pro\"]View Package[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n[/pricing_table]\r\n','Best eCommerce Packages','','inherit','closed','closed','','71-revision-38','','','2011-11-24 10:12:28','2011-11-24 10:12:28','',71,'http://bestecommerce-uk.com/2011/11/71-revision-38/',0,'revision','',0),(313,1,'2011-07-18 13:31:14','2011-07-18 13:31:14','[pricing_table columns=\"3\"]\r\n	[pricing_column title=\"WebShop Lite\"]\r\n	    <ul>\r\n		<li>[price_info cost=\"£999\"] + £60 month[/price_info]</li>\r\n		<li>Entry level product for the SME’s and growing companies</li>\r\n		<li>Allows support for upto 30 products</li>\r\n		<li>[button_link url=\"ecommerce-webshop-lite\"]View Package[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n	[pricing_column title=\"WebShop Standard\" highlight=\"true\"]\r\n	    <ul>\r\n	 	<li>[price_info cost=\"£1999\"]+ £60 month[/price_info]</li>\r\n		<li>Provides a strong base from which to grow your presence on-line.</li>\r\n		<li>Allows support for upto 60 products</li>\r\n		<li>[button_link url=\"ecommerce-webshop-standard\"]View Package[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n	[pricing_column title=\"WebShop Pro\"] \r\n	    <ul>\r\n		<li>[price_info cost=\"£2999\"]+ £60 month[/price_info]</li>\r\n		<li>Our flagship product for the SME’s and growing companies. </li>\r\n		<li>WebShop 3.0 Pro provides a high level of function across the board.</li>\r\n		<li>[button_link url=\"e-commerce-webshop-pro\"]View Package[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n[/pricing_table]\r\n','Best eCommerce Packages','','inherit','closed','closed','','71-revision-31','','','2011-07-18 13:31:14','2011-07-18 13:31:14','',71,'http://bestecommerce-uk.com/2011/07/71-revision-31/',0,'revision','',0),(305,1,'2011-07-18 11:36:18','2011-07-18 11:36:18','[pricing_table columns=\"3\"]\r\n	[pricing_column title=\"WebShop Lite\"]\r\n	    <ul>\r\n		<li>[price_info cost=\"£999\"] + £60 month[/price_info]</li>\r\n		<li>Entry level product for the SME’s and growing companies</li>\r\n		<li>Some more info...</li>\r\n		<li>[button_link url=\"http://bestecommerce-uk.com/best-e-commerce-packages/ecommerce-webshop-lite/\"]View Package[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n	[pricing_column title=\"WebShop Standard\" highlight=\"true\"]\r\n	    <ul>\r\n	 	<li>[price_info cost=\"£1999\"]+ £60 month[/price_info]</li>\r\n		<li>Provides a strong base from which to grow your presence on-line with unlimited products and categories and unrivalled ease of use.</li>\r\n		<li>Some more info...</li>\r\n		<li>[button_link url=\"http://bestecommerce-uk.com/best-e-commerce-packages/ecommerce-webshop-standard/\"]View Package[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n	[pricing_column title=\"WebShop Pro\"] \r\n	    <ul>\r\n		<li>[price_info cost=\"£2999\"]+ £60 month[/price_info]</li>\r\n		<li>Our flagship product for the SME’s and growing companies. </li>\r\n		<li>WebShop 3.0 Pro provides a high level of function across the board.</li>\r\n		<li>[button_link url=\"http://bestecommerce-uk.com/best-e-commerce-packages/e-commerce-webshop-pro/\"]View Package[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n[/pricing_table]\r\n','Best eCommerce Packages','','inherit','closed','closed','','71-revision-24','','','2011-07-18 11:36:18','2011-07-18 11:36:18','',71,'http://bestecommerce-uk.com/2011/07/71-revision-24/',0,'revision','',0),(306,1,'2011-07-18 13:25:18','2011-07-18 13:25:18','[pricing_table columns=\"3\"]\r\n	[pricing_column title=\"WebShop Lite\"]\r\n	    <ul>\r\n		<li>[price_info cost=\"£999\"] + £60 month[/price_info]</li>\r\n		<li>Entry level product for the SME’s and growing companies</li>\r\n		<li>Allows support for upto 30 products</li>\r\n		<li>[button_link url=\"http://bestecommerce-uk.com/best-e-commerce-packages/ecommerce-webshop-lite/\"]View Package[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n	[pricing_column title=\"WebShop Standard\" highlight=\"true\"]\r\n	    <ul>\r\n	 	<li>[price_info cost=\"£1999\"]+ £60 month[/price_info]</li>\r\n		<li>Provides a strong base from which to grow your presence on-line with unlimited products and categories and unrivalled ease of use.</li>\r\n		<li>Some more info...</li>\r\n		<li>[button_link url=\"http://bestecommerce-uk.com/best-e-commerce-packages/ecommerce-webshop-standard/\"]View Package[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n	[pricing_column title=\"WebShop Pro\"] \r\n	    <ul>\r\n		<li>[price_info cost=\"£2999\"]+ £60 month[/price_info]</li>\r\n		<li>Our flagship product for the SME’s and growing companies. </li>\r\n		<li>WebShop 3.0 Pro provides a high level of function across the board.</li>\r\n		<li>[button_link url=\"http://bestecommerce-uk.com/best-e-commerce-packages/e-commerce-webshop-pro/\"]View Package[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n[/pricing_table]\r\n','Best eCommerce Packages','','inherit','closed','closed','','71-revision-25','','','2011-07-18 13:25:18','2011-07-18 13:25:18','',71,'http://bestecommerce-uk.com/2011/07/71-revision-25/',0,'revision','',0),(308,1,'2011-07-18 13:27:28','2011-07-18 13:27:28','[pricing_table columns=\"3\"]\r\n	[pricing_column title=\"WebShop Lite\"]\r\n	    <ul>\r\n		<li>[price_info cost=\"£999\"] + £60 month[/price_info]</li>\r\n		<li>Entry level product for the SME’s and growing companies</li>\r\n		<li>Allows support for upto 30 products</li>\r\n		<li>[button_link url=\"http://bestecommerce-uk.com/best-e-commerce-packages/ecommerce-webshop-lite/\"]View Package[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n	[pricing_column title=\"WebShop Standard\" highlight=\"true\"]\r\n	    <ul>\r\n	 	<li>[price_info cost=\"£1999\"]+ £60 month[/price_info]</li>\r\n		<li>Provides a strong base from which to grow your presence on-line.</li>\r\n		<li>Allows support for upto 60 products</li>\r\n		<li>[button_link url=\"http://bestecommerce-uk.com/best-e-commerce-packages/ecommerce-webshop-standard/\"]View Package[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n	[pricing_column title=\"WebShop Pro\"] \r\n	    <ul>\r\n		<li>[price_info cost=\"£2999\"]+ £60 month[/price_info]</li>\r\n		<li>Our flagship product for the SME’s and growing companies. </li>\r\n		<li>WebShop 3.0 Pro provides a high level of function across the board.</li>\r\n		<li>[button_link url=\"http://bestecommerce-uk.com/best-e-commerce-packages/e-commerce-webshop-pro/\"]View Package[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n[/pricing_table]\r\n','Best eCommerce Packages','','inherit','closed','closed','','71-revision-27','','','2011-07-18 13:27:28','2011-07-18 13:27:28','',71,'http://bestecommerce-uk.com/2011/07/71-revision-27/',0,'revision','',0),(307,1,'2011-07-18 13:26:39','2011-07-18 13:26:39','[pricing_table columns=\"3\"]\r\n	[pricing_column title=\"WebShop Lite\"]\r\n	    <ul>\r\n		<li>[price_info cost=\"£999\"] + £60 month[/price_info]</li>\r\n		<li>Entry level product for the SME’s and growing companies</li>\r\n		<li>Allows support for upto 30 products</li>\r\n		<li>[button_link url=\"http://bestecommerce-uk.com/best-e-commerce-packages/ecommerce-webshop-lite/\"]View Package[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n	[pricing_column title=\"WebShop Standard\" highlight=\"true\"]\r\n	    <ul>\r\n	 	<li>[price_info cost=\"£1999\"]+ £60 month[/price_info]</li>\r\n		<li>Provides a strong base from which to grow your presence on-line with unlimited products and categories and unrivalled ease of use.</li>\r\n		<li>Allows support for upto 60 products</li>\r\n		<li>[button_link url=\"http://bestecommerce-uk.com/best-e-commerce-packages/ecommerce-webshop-standard/\"]View Package[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n	[pricing_column title=\"WebShop Pro\"] \r\n	    <ul>\r\n		<li>[price_info cost=\"£2999\"]+ £60 month[/price_info]</li>\r\n		<li>Our flagship product for the SME’s and growing companies. </li>\r\n		<li>WebShop 3.0 Pro provides a high level of function across the board.</li>\r\n		<li>[button_link url=\"http://bestecommerce-uk.com/best-e-commerce-packages/e-commerce-webshop-pro/\"]View Package[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n[/pricing_table]\r\n','Best eCommerce Packages','','inherit','closed','closed','','71-revision-26','','','2011-07-18 13:26:39','2011-07-18 13:26:39','',71,'http://bestecommerce-uk.com/2011/07/71-revision-26/',0,'revision','',0),(309,1,'2011-07-18 13:28:05','2011-07-18 13:28:05','[pricing_table columns=\"3\"]\r\n	[pricing_column title=\"WebShop Lite\"]\r\n	    <ul>\r\n		<li>[price_info cost=\"£999\"] + £60 month[/price_info]</li>\r\n		<li>Entry level product for the SME’s and growing companies</li>\r\n		<li>Allows support for upto 30 products</li>\r\n		<li>[button_link url=\"http://bestecommerce-uk.com/best-e-commerce-packages/ecommerce-webshop-lite/\"]View Package[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n	[pricing_column title=\"WebShop Standard\" highlight=\"true\"]\r\n	    <ul>\r\n	 	<li>[price_info cost=\"£1999\"]+ £60 month[/price_info]</li>\r\n		<li>Provides a strong base from which to grow your presence on-line.</li>\r\n		<li>Allows support for upto 60 products</li>\r\n		<li>[button_link url=\"http://bestecommerce-uk.com/best-e-commerce-packages/ecommerce-webshop-standard/\"]View Package[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n	[pricing_column title=\"WebShop Pro\"] \r\n	    <ul>\r\n		<li>[price_info cost=\"£2999\"]+ £60 month[/price_info]</li>\r\n		<li>Our flagship product for the SME’s and growing companies. </li>\r\n		<li>WebShop 3.0 Pro provides a high level of function across the board.</li>\r\n		<li>[button_link url=\"http://bestecommerce-uk.com/best-e-commerce-packages/e-commerce-webshop-pro/\"]View Package[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n[/pricing_table]\r\n','Best eCommerce Packages','','inherit','closed','closed','','71-revision-28','','','2011-07-18 13:28:05','2011-07-18 13:28:05','',71,'http://bestecommerce-uk.com/2011/07/71-revision-28/',0,'revision','',0),(314,1,'2011-07-18 13:35:03','2011-07-18 13:35:03','[pricing_table columns=\"3\"]\r\n	[pricing_column title=\"WebShop Lite\"]\r\n	    <ul>\r\n		<li>[price_info cost=\"£999\"] + £60 month[/price_info]</li>\r\n		<li>Entry level product for the SME’s and growing companies.</li>\r\n		<li>Allows support for upto 30 products</li>\r\n		<li>[button_link url=\"ecommerce-webshop-lite\"]View Package[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n	[pricing_column title=\"WebShop Standard\" highlight=\"true\"]\r\n	    <ul>\r\n	 	<li>[price_info cost=\"£1999\"]+ £60 month[/price_info]</li>\r\n		<li>Provides a strong base from which to grow your presence on-line.</li>\r\n		<li>Allows support for upto 60 products</li>\r\n		<li>[button_link url=\"ecommerce-webshop-standard\"]View Package[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n	[pricing_column title=\"WebShop Pro\"] \r\n	    <ul>\r\n		<li>[price_info cost=\"£2999\"]+ £60 month[/price_info]</li>\r\n		<li>Our flagship product for the SME’s and growing companies. </li>\r\n		<li>WebShop 3.0 Pro provides a high level of function across the board.</li>\r\n		<li>[button_link url=\"e-commerce-webshop-pro\"]View Package[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n[/pricing_table]\r\n','Best eCommerce Packages','','inherit','closed','closed','','71-revision-32','','','2011-07-18 13:35:03','2011-07-18 13:35:03','',71,'http://bestecommerce-uk.com/2011/07/71-revision-32/',0,'revision','',0),(316,1,'2011-07-18 14:45:13','2011-07-18 14:45:13','[pricing_table columns=\"3\"]\r\n	[pricing_column title=\"WebShop Lite\"]\r\n	    <ul>\r\n		<li>[price_info cost=\"£999\"] + £60 month[/price_info]</li>\r\n		<li>Entry level product for the SME’s and growing companies.</li>\r\n		<li>Includes upload of 30 products</li>\r\n		<li>[button_link url=\"ecommerce-webshop-lite\"]View Package[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n	[pricing_column title=\"WebShop Standard\" highlight=\"true\"]\r\n	    <ul>\r\n	 	<li>[price_info cost=\"£1999\"]+ £60 month[/price_info]</li>\r\n		<li>Provides a strong base from which to grow your presence on-line.</li>\r\n		<li>Inculdes upload for 60 products</li>\r\n		<li>[button_link url=\"ecommerce-webshop-standard\"]View Package[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n	[pricing_column title=\"WebShop Pro\"] \r\n	    <ul>\r\n		<li>[price_info cost=\"£2999\"]+ £60 month[/price_info]</li>\r\n		<li>Our flagship product for the SME’s and growing companies. </li>\r\n		<li>WebShop 3.0 Pro provides a high level of function across the board.</li>\r\n		<li>[button_link url=\"e-commerce-webshop-pro\"]View Package[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n[/pricing_table]\r\n','Best eCommerce Packages','','inherit','closed','closed','','71-revision-34','','','2011-07-18 14:45:13','2011-07-18 14:45:13','',71,'http://bestecommerce-uk.com/2011/07/71-revision-34/',0,'revision','',0),(319,1,'2011-07-21 18:36:59','2011-07-21 18:36:59','[one_half]<h3>Site Management</h3>\n[bullet_list icon=\"check\"]\n        <ul>\n<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\n<li>Administration of permissions, system roles and users</li>\n<li>Web Services API for easy integration between Magento and any third-party application</li>\n<li>Fully 100% customizable design using templates</li>\n<li>Customer Groups</li>\n<li>One-Click Upgrades</li>\n<li>Content Management System for Informational Pages</li>\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\n	</ul>\n[/bullet_list][/one_half]\n[one_half_last]\n<h3>Analytics and reporting</h3>\n[bullet_list icon=\"check\"]\n	<ul>\n <li>Integrated with Google Analytics</li>\n<li>Admin Dashboard for Report Overview</li>\n<li>Sales Report</li>\n<li>RSS feed for New Orders</li>\n<li>Tax Report</li>\n<li>Abandoned Shopping Cart Report</li>\n<li>Best Viewed Products Report</li>\n<li>Best Purchased Products Report</li>\n<li>Low Stock Report</li>\n<li>Search Terms Report</li>\n<li>Product Reviews Report</li>\n<li>RSS feed for New Reviews</li>\n<li>Tags Report</li>\n<li>RSS feed for New Tags</li>\n<li>Coupon Usage Report</li>\n<li>Total Sales Invoiced</li>\n<li>Total Sales Refunded</li>\n			</ul>\n[/bullet_list][/one_half_last]','test','','inherit','closed','closed','','318-revision','','','2011-07-21 18:36:59','2011-07-21 18:36:59','',318,'http://bestecommerce-uk.com/2011/07/318-revision/',0,'revision','',0),(328,1,'2011-08-11 21:41:35','2011-08-11 21:41:35','[slideshow alias=\"ecommerce_examples\" ]','WebShop Examples','','publish','closed','closed','','ecommerce-site-examples','','','2011-12-15 14:01:28','2011-12-15 14:01:28','',71,'http://bestecommerce-uk.com/?page_id=328',0,'page','',0),(321,1,'2011-07-21 18:35:19','2011-07-21 18:35:19','<!-- [one_third]First column of content.[/one_third]\r\n[one_third]Second column of content.[/one_third]\r\n[one_third_last]Last column of content.[/one_third_last]\r\n-->\r\n\r\n[tabs]\r\n	[tab title=\"Site Management\"]\r\n[one_half]<h3>Site Management</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\r\n<li>Administration of permissions, system roles and users</li>\r\n<li>Web Services API for easy integration between Magento and any third-party application</li>\r\n<li>Fully 100% customizable design using templates</li>\r\n<li>Customer Groups</li>\r\n<li>One-Click Upgrades</li>\r\n<li>Content Management System for Informational Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list][/one_half]\r\n[one_half_last]\r\n<h3>Analytics and reporting</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n <li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n			</ul>\r\n[/bullet_list][/one_half_last]\r\n\r\n\r\n\r\n\r\n[/tab]\r\n\r\n	[tab title=\"SEO and Marketing\"]\r\n<h3>Search Engine Optimisation</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>100% Search Engine Friendly</li>\r\n<li>Google Site Map</li>\r\n<li>Search Engine Friendly URL’s</li>\r\n<li>URL Rewrites give full control of URL’s</li>\r\n<li>Meta-information for products and categories</li>\r\n<li>Auto-generated Site Map for display on site</li>\r\n<li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Marketing Promotions and Tools</h3>\r\n	<ul>\r\n<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n<h3>Orders</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n<h3>Checkout, Payment and Shipping</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Cheques/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\n<li>Shopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Customer\"]\r\n<h3>Customer Service</h3> \r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Contact Us form</li>\r\n<li>Feature-rich Customer Accounts</li>\r\n<li>Order History with Status Updates</li>\r\n<li>Order Tracking from Account</li>\r\n<li>Password Reset email from front-end and admin panel</li>\r\n<li>Order and Account Update Emails</li>\r\n<li>Customizable Order Emails</li>\r\n<li>Create and Edit Orders from the Admin Panel</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Customer Accounts</h3> \r\n	<ul>\r\n		<li>Order status and history</li>\r\n<li>Re-orders from account</li>\r\n<li>Recently ordered items</li>\r\n<li>Address Book with unlimited addresses</li>\r\n<li>Default Billing and Shipping addresses</li>\r\n<li>Wishlist with ability to add comments</li>\r\n<li>Email or Send RSS feed of Wishlist</li>\r\n<li>Newsletter Subscription management</li>\r\n<li>Product Reviews submitted</li>\r\n<li>Product Tags submitted</li>\r\n<li>Downloadable/Digital Products<li>\r\n<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Management & Browsing\"]\r\n<h3>Catalog Management</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Inventory Management with Backordered items, Minimum and Maximum quantities</li>\r\n<li>Batch Import and Export of catalog</li>\r\n<li>Batch Updates to products in admin panel</li>\r\n<li>Google Base Integration</li>\r\n<li>Simple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products</li>\r\n<li>Virtual Products</li>\r\n<li>Downloadable/Digital Products</li>\r\n<li>Customer Personalized Products - upload text for embroidery, monogramming, etc.</li>\r\n<li>Tax Rates per location, customer group and product type</li>\r\n<li>Attribute Sets for quick product creation of different item types</li>\r\n<li>Create Store-specific attributes on the fly</li>\r\n<li>Media Manager with automatic image resizing and watermarking</li>\r\n<li>Advanced Pricing Rules and support for Special Prices (see marketing tools)</li>\r\n<li>Search Results rewrites and redirects</li>\r\n<li>Approve, Edit and Delete Product Tags</li>\r\n<li>Approve, Edit and Delete Product Reviews</li>\r\n<li>RSS feed for Low Inventory Alerts</li>\r\n<li>Customer Personalized Products - Upload text for embroidery, monogramming, etc. (this one is already there, but want to have the following shown after it)</li>\r\n<li>Customer Personalized Products – Upload Image</li>\r\n<li>Customer Personalized Products – Select Date/Time options for products</li>\r\n<li>Customer Sorting – Define Attributes for Customer Sorting on category (price, brand, etc.)</li>\r\n			</ul>\r\n[/bullet_list]\r\n<h3>Catalog Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Layered / Faceted Navigation for filtering of products in categories</li>\r\n<li>Layered / Faceted Navigation for filtering of products in search results</li>\r\n<li>Flat Catalog Module for Improved Performance with large catalogs</li>\r\n<li>Static Block tool to create category landing pages</li>\r\n<li>Ability to assign designs on category and product level (unique design per product/category)</li>\r\n<li>Configurable search with auto-suggested terms</li>\r\n<li>Recently viewed products</li>\r\n<li>Product comparisons</li>\r\n<li>Recently compared products</li>\r\n<li>Cross-sells, Up-sells and Related Items</li>\r\n<li>Popular Search Terms Cloud</li>\r\n<li>Filter by Product Tags</li>\r\n<li>Product Reviews</li>\r\n<li>Product listing in grid or list format</li>\r\n<li>Breadcrumbs</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Product Browsing\"]\r\n<h3>Product Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Multiple Images Per Product</li>\r\n<li>Product Image Zoom-in Capability</li>\r\n<li>Product Reviews</li>\r\n<li>Related Products</li>\r\n<li>Stock Availability</li>\r\n<li>Multi-Tier Pricing Upsell</li>\r\n<li>Product Option Selection</li>\r\n<li>Grouped Products View</li>\r\n<li>Add to Wishlist</li>\r\n<li>Send to a Friend with Email</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]\r\n','WebShop 3.0 Feature List','','inherit','closed','closed','','193-revision-62','','','2011-07-21 18:35:19','2011-07-21 18:35:19','',193,'http://bestecommerce-uk.com/2011/07/193-revision-62/',0,'revision','',0),(322,1,'2011-07-21 18:39:34','2011-07-21 18:39:34','<!-- [one_third]First column of content.[/one_third]\r\n[one_third]Second column of content.[/one_third]\r\n[one_third_last]Last column of content.[/one_third_last]\r\n-->\r\n\r\n[tabs]\r\n	[tab title=\"Site Management\"]\r\n<h3>Site Management</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\r\n<li>Administration of permissions, system roles and users</li>\r\n<li>Web Services API for easy integration between Magento and any third-party application</li>\r\n<li>Fully 100% customizable design using templates</li>\r\n<li>Customer Groups</li>\r\n<li>One-Click Upgrades</li>\r\n<li>Content Management System for Informational Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n<h3>Analytics and reporting</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n <li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n\r\n\r\n\r\n[/tab]\r\n\r\n	[tab title=\"SEO and Marketing\"]\r\n<h3>Search Engine Optimisation</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>100% Search Engine Friendly</li>\r\n<li>Google Site Map</li>\r\n<li>Search Engine Friendly URL’s</li>\r\n<li>URL Rewrites give full control of URL’s</li>\r\n<li>Meta-information for products and categories</li>\r\n<li>Auto-generated Site Map for display on site</li>\r\n<li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Marketing Promotions and Tools</h3>\r\n	<ul>\r\n<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n<h3>Orders</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n<h3>Checkout, Payment and Shipping</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Cheques/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\n<li>Shopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Customer\"]\r\n<h3>Customer Service</h3> \r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Contact Us form</li>\r\n<li>Feature-rich Customer Accounts</li>\r\n<li>Order History with Status Updates</li>\r\n<li>Order Tracking from Account</li>\r\n<li>Password Reset email from front-end and admin panel</li>\r\n<li>Order and Account Update Emails</li>\r\n<li>Customizable Order Emails</li>\r\n<li>Create and Edit Orders from the Admin Panel</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Customer Accounts</h3> \r\n	<ul>\r\n		<li>Order status and history</li>\r\n<li>Re-orders from account</li>\r\n<li>Recently ordered items</li>\r\n<li>Address Book with unlimited addresses</li>\r\n<li>Default Billing and Shipping addresses</li>\r\n<li>Wishlist with ability to add comments</li>\r\n<li>Email or Send RSS feed of Wishlist</li>\r\n<li>Newsletter Subscription management</li>\r\n<li>Product Reviews submitted</li>\r\n<li>Product Tags submitted</li>\r\n<li>Downloadable/Digital Products<li>\r\n<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Management & Browsing\"]\r\n<h3>Catalog Management</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Inventory Management with Backordered items, Minimum and Maximum quantities</li>\r\n<li>Batch Import and Export of catalog</li>\r\n<li>Batch Updates to products in admin panel</li>\r\n<li>Google Base Integration</li>\r\n<li>Simple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products</li>\r\n<li>Virtual Products</li>\r\n<li>Downloadable/Digital Products</li>\r\n<li>Customer Personalized Products - upload text for embroidery, monogramming, etc.</li>\r\n<li>Tax Rates per location, customer group and product type</li>\r\n<li>Attribute Sets for quick product creation of different item types</li>\r\n<li>Create Store-specific attributes on the fly</li>\r\n<li>Media Manager with automatic image resizing and watermarking</li>\r\n<li>Advanced Pricing Rules and support for Special Prices (see marketing tools)</li>\r\n<li>Search Results rewrites and redirects</li>\r\n<li>Approve, Edit and Delete Product Tags</li>\r\n<li>Approve, Edit and Delete Product Reviews</li>\r\n<li>RSS feed for Low Inventory Alerts</li>\r\n<li>Customer Personalized Products - Upload text for embroidery, monogramming, etc. (this one is already there, but want to have the following shown after it)</li>\r\n<li>Customer Personalized Products – Upload Image</li>\r\n<li>Customer Personalized Products – Select Date/Time options for products</li>\r\n<li>Customer Sorting – Define Attributes for Customer Sorting on category (price, brand, etc.)</li>\r\n			</ul>\r\n[/bullet_list]\r\n<h3>Catalog Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Layered / Faceted Navigation for filtering of products in categories</li>\r\n<li>Layered / Faceted Navigation for filtering of products in search results</li>\r\n<li>Flat Catalog Module for Improved Performance with large catalogs</li>\r\n<li>Static Block tool to create category landing pages</li>\r\n<li>Ability to assign designs on category and product level (unique design per product/category)</li>\r\n<li>Configurable search with auto-suggested terms</li>\r\n<li>Recently viewed products</li>\r\n<li>Product comparisons</li>\r\n<li>Recently compared products</li>\r\n<li>Cross-sells, Up-sells and Related Items</li>\r\n<li>Popular Search Terms Cloud</li>\r\n<li>Filter by Product Tags</li>\r\n<li>Product Reviews</li>\r\n<li>Product listing in grid or list format</li>\r\n<li>Breadcrumbs</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Product Browsing\"]\r\n<h3>Product Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Multiple Images Per Product</li>\r\n<li>Product Image Zoom-in Capability</li>\r\n<li>Product Reviews</li>\r\n<li>Related Products</li>\r\n<li>Stock Availability</li>\r\n<li>Multi-Tier Pricing Upsell</li>\r\n<li>Product Option Selection</li>\r\n<li>Grouped Products View</li>\r\n<li>Add to Wishlist</li>\r\n<li>Send to a Friend with Email</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]\r\n','WebShop 3.0 Feature List','','inherit','closed','closed','','193-revision-63','','','2011-07-21 18:39:34','2011-07-21 18:39:34','',193,'http://bestecommerce-uk.com/2011/07/193-revision-63/',0,'revision','',0),(324,1,'2011-07-21 19:09:47','2011-07-21 19:09:47','<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>Our entry level product for the SME\'s and growing companies, WebShop 3.0 Lite provides a high level of function across the board.</p><p>Supporting advanced functions from multi-tiered pricing structures to integration with Amazon and eBay, the pro system is the benchmark for growing and established High Street brand retailers</p>\r\n<h2>£999 + £60/month   </h2>\r\n<a href=\"/about-us\" class=\"btn impactBtn\"><span>Add to Cart/Sign-Up</span></a><br /><br /><br />\r\n[button_link url=\"webshop-3-0-feature-list\" style=\"medium blue\"]View Webshop 3.0 functionality[/button_link]\r\n[button_link url=\"http://www.webdesign-uk.org/webshop-3-0-feature-list/\" style=\"medium blue\"]Webshop 3.0 functionality.pdf[/button_link]<br /><br /><br />\r\n\r\n</div></div>\r\n\r\n<h3>Key Features</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\r\n<li>Administration of permissions, system roles and users</li>\r\n<li>Web Services API for easy integration with third-party applications</li>\r\n<li>Fully 100% customizable design using templates, or bespoke design</li>\r\n<li>Support for Customer Groups</li>\r\n<li>Content Management System for General or Site Information Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n\r\n</div></div>\r\n\r\n\r\n<!--[tabs]\r\n	[tab title=\"Site Management\"]\r\n<h3>Site Management</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\r\n<li>Administration of permissions, system roles and users</li>\r\n<li>Web Services API for easy integration between Magento and any third-party application</li>\r\n<li>Fully 100% customizable design using templates</li>\r\n<li>Customer Groups</li>\r\n<li>One-Click Upgrades</li>\r\n<li>Content Management System for Informational Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n<h3>Analytics and reporting</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n <li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"SEO, Marketing Promotions and Tools\"]\r\n<h3>Search Engine Optimisation</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>100% Search Engine Friendly</li>\r\n<li>Google Site Map</li>\r\n<li>Search Engine Friendly URL’s</li>\r\n<li>URL Rewrites give full control of URL’s</li>\r\n<li>Meta-information for products and categories</li>\r\n<li>Auto-generated Site Map for display on site</li>\r\n<li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Marketing Promotions and Tools</h3>\r\n	<ul>\r\n<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n<h3>Orders</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n<h3>Checkout, Payment and Shipping</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Cheques/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\n<li>Shopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Customer\"]\r\n<h3>Customer Service</h3> \r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Contact Us form</li>\r\n<li>Feature-rich Customer Accounts</li>\r\n<li>Order History with Status Updates</li>\r\n<li>Order Tracking from Account</li>\r\n<li>Password Reset email from front-end and admin panel</li>\r\n<li>Order and Account Update Emails</li>\r\n<li>Customizable Order Emails</li>\r\n<li>Create and Edit Orders from the Admin Panel</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Customer Accounts</h3> \r\n	<ul>\r\n		<li>Order status and history</li>\r\n<li>Re-orders from account</li>\r\n<li>Recently ordered items</li>\r\n<li>Address Book with unlimited addresses</li>\r\n<li>Default Billing and Shipping addresses</li>\r\n<li>Wishlist with ability to add comments</li>\r\n<li>Email or Send RSS feed of Wishlist</li>\r\n<li>Newsletter Subscription management</li>\r\n<li>Product Reviews submitted</li>\r\n<li>Product Tags submitted</li>\r\n<li>Downloadable/Digital Products<li>\r\n<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Management & Browsing\"]\r\n<h3>Catalog Management</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Inventory Management with Backordered items, Minimum and Maximum quantities</li>\r\n<li>Batch Import and Export of catalog</li>\r\n<li>Batch Updates to products in admin panel</li>\r\n<li>Google Base Integration</li>\r\n<li>Simple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products</li>\r\n<li>Virtual Products</li>\r\n<li>Downloadable/Digital Products</li>\r\n<li>Customer Personalized Products - upload text for embroidery, monogramming, etc.</li>\r\n<li>Tax Rates per location, customer group and product type</li>\r\n<li>Attribute Sets for quick product creation of different item types</li>\r\n<li>Create Store-specific attributes on the fly</li>\r\n<li>Media Manager with automatic image resizing and watermarking</li>\r\n<li>Advanced Pricing Rules and support for Special Prices (see marketing tools)</li>\r\n<li>Search Results rewrites and redirects</li>\r\n<li>Approve, Edit and Delete Product Tags</li>\r\n<li>Approve, Edit and Delete Product Reviews</li>\r\n<li>RSS feed for Low Inventory Alerts</li>\r\n<li>Customer Personalized Products - Upload text for embroidery, monogramming, etc. (this one is already there, but want to have the following shown after it)</li>\r\n<li>Customer Personalized Products – Upload Image</li>\r\n<li>Customer Personalized Products – Select Date/Time options for products</li>\r\n<li>Customer Sorting – Define Attributes for Customer Sorting on category (price, brand, etc.)</li>\r\n			</ul>\r\n[/bullet_list]\r\n<h3>Catalog Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Layered / Faceted Navigation for filtering of products in categories</li>\r\n<li>Layered / Faceted Navigation for filtering of products in search results</li>\r\n<li>Flat Catalog Module for Improved Performance with large catalogs</li>\r\n<li>Static Block tool to create category landing pages</li>\r\n<li>Ability to assign designs on category and product level (unique design per product/category)</li>\r\n<li>Configurable search with auto-suggested terms</li>\r\n<li>Recently viewed products</li>\r\n<li>Product comparisons</li>\r\n<li>Recently compared products</li>\r\n<li>Cross-sells, Up-sells and Related Items</li>\r\n<li>Popular Search Terms Cloud</li>\r\n<li>Filter by Product Tags</li>\r\n<li>Product Reviews</li>\r\n<li>Product listing in grid or list format</li>\r\n<li>Breadcrumbs</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Product Browsing\"]\r\n<h3>Product Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Multiple Images Per Product</li>\r\n<li>Product Image Zoom-in Capability</li>\r\n<li>Product Reviews</li>\r\n<li>Related Products</li>\r\n<li>Stock Availability</li>\r\n<li>Multi-Tier Pricing Upsell</li>\r\n<li>Product Option Selection</li>\r\n<li>Grouped Products View</li>\r\n<li>Add to Wishlist</li>\r\n<li>Send to a Friend with Email</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]-->\r\n\r\n\r\n\r\n\r\n','eCommerce WebShop Lite','','inherit','closed','closed','','156-revision-28','','','2011-07-21 19:09:47','2011-07-21 19:09:47','',156,'http://bestecommerce-uk.com/2011/07/156-revision-28/',0,'revision','',0),(325,1,'2011-07-21 19:10:38','2011-07-21 19:10:38','<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>Our entry level product for the SME\'s and growing companies, WebShop 3.0 Lite provides a high level of function across the board.</p><p>Supporting advanced functions from multi-tiered pricing structures to integration with Amazon and eBay, the pro system is the benchmark for growing and established High Street brand retailers</p>\r\n<h2>£999 + £60/month   </h2>\r\n<a href=\"/about-us\" class=\"btn impactBtn\"><span>Add to Cart/Sign-Up</span></a><br /><br /><br />\r\n[button_link url=\"webshop-3-0-feature-list\" style=\"medium blue\"]View Webshop 3.0 functionality[/button_link]\r\n[button_link url=\"http://www.webdesign-uk.org/webshop-3-0-feature-list/\" style=\"medium blue\"]Webshop 3.0 functionality.pdf[/button_link]<br /><br /><br />\r\n\r\n<h3>Key Features</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\r\n<li>Administration of permissions, system roles and users</li>\r\n<li>Web Services API for easy integration with third-party applications</li>\r\n<li>Fully 100% customizable design using templates, or bespoke design</li>\r\n<li>Support for Customer Groups</li>\r\n<li>Content Management System for General or Site Information Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n</div></div>\r\n\r\n\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n\r\n</div></div>\r\n\r\n\r\n<!--[tabs]\r\n	[tab title=\"Site Management\"]\r\n<h3>Site Management</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\r\n<li>Administration of permissions, system roles and users</li>\r\n<li>Web Services API for easy integration between Magento and any third-party application</li>\r\n<li>Fully 100% customizable design using templates</li>\r\n<li>Customer Groups</li>\r\n<li>One-Click Upgrades</li>\r\n<li>Content Management System for Informational Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n<h3>Analytics and reporting</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n <li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"SEO, Marketing Promotions and Tools\"]\r\n<h3>Search Engine Optimisation</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>100% Search Engine Friendly</li>\r\n<li>Google Site Map</li>\r\n<li>Search Engine Friendly URL’s</li>\r\n<li>URL Rewrites give full control of URL’s</li>\r\n<li>Meta-information for products and categories</li>\r\n<li>Auto-generated Site Map for display on site</li>\r\n<li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Marketing Promotions and Tools</h3>\r\n	<ul>\r\n<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n<h3>Orders</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n<h3>Checkout, Payment and Shipping</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Cheques/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\n<li>Shopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Customer\"]\r\n<h3>Customer Service</h3> \r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Contact Us form</li>\r\n<li>Feature-rich Customer Accounts</li>\r\n<li>Order History with Status Updates</li>\r\n<li>Order Tracking from Account</li>\r\n<li>Password Reset email from front-end and admin panel</li>\r\n<li>Order and Account Update Emails</li>\r\n<li>Customizable Order Emails</li>\r\n<li>Create and Edit Orders from the Admin Panel</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Customer Accounts</h3> \r\n	<ul>\r\n		<li>Order status and history</li>\r\n<li>Re-orders from account</li>\r\n<li>Recently ordered items</li>\r\n<li>Address Book with unlimited addresses</li>\r\n<li>Default Billing and Shipping addresses</li>\r\n<li>Wishlist with ability to add comments</li>\r\n<li>Email or Send RSS feed of Wishlist</li>\r\n<li>Newsletter Subscription management</li>\r\n<li>Product Reviews submitted</li>\r\n<li>Product Tags submitted</li>\r\n<li>Downloadable/Digital Products<li>\r\n<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Management & Browsing\"]\r\n<h3>Catalog Management</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Inventory Management with Backordered items, Minimum and Maximum quantities</li>\r\n<li>Batch Import and Export of catalog</li>\r\n<li>Batch Updates to products in admin panel</li>\r\n<li>Google Base Integration</li>\r\n<li>Simple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products</li>\r\n<li>Virtual Products</li>\r\n<li>Downloadable/Digital Products</li>\r\n<li>Customer Personalized Products - upload text for embroidery, monogramming, etc.</li>\r\n<li>Tax Rates per location, customer group and product type</li>\r\n<li>Attribute Sets for quick product creation of different item types</li>\r\n<li>Create Store-specific attributes on the fly</li>\r\n<li>Media Manager with automatic image resizing and watermarking</li>\r\n<li>Advanced Pricing Rules and support for Special Prices (see marketing tools)</li>\r\n<li>Search Results rewrites and redirects</li>\r\n<li>Approve, Edit and Delete Product Tags</li>\r\n<li>Approve, Edit and Delete Product Reviews</li>\r\n<li>RSS feed for Low Inventory Alerts</li>\r\n<li>Customer Personalized Products - Upload text for embroidery, monogramming, etc. (this one is already there, but want to have the following shown after it)</li>\r\n<li>Customer Personalized Products – Upload Image</li>\r\n<li>Customer Personalized Products – Select Date/Time options for products</li>\r\n<li>Customer Sorting – Define Attributes for Customer Sorting on category (price, brand, etc.)</li>\r\n			</ul>\r\n[/bullet_list]\r\n<h3>Catalog Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Layered / Faceted Navigation for filtering of products in categories</li>\r\n<li>Layered / Faceted Navigation for filtering of products in search results</li>\r\n<li>Flat Catalog Module for Improved Performance with large catalogs</li>\r\n<li>Static Block tool to create category landing pages</li>\r\n<li>Ability to assign designs on category and product level (unique design per product/category)</li>\r\n<li>Configurable search with auto-suggested terms</li>\r\n<li>Recently viewed products</li>\r\n<li>Product comparisons</li>\r\n<li>Recently compared products</li>\r\n<li>Cross-sells, Up-sells and Related Items</li>\r\n<li>Popular Search Terms Cloud</li>\r\n<li>Filter by Product Tags</li>\r\n<li>Product Reviews</li>\r\n<li>Product listing in grid or list format</li>\r\n<li>Breadcrumbs</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Product Browsing\"]\r\n<h3>Product Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Multiple Images Per Product</li>\r\n<li>Product Image Zoom-in Capability</li>\r\n<li>Product Reviews</li>\r\n<li>Related Products</li>\r\n<li>Stock Availability</li>\r\n<li>Multi-Tier Pricing Upsell</li>\r\n<li>Product Option Selection</li>\r\n<li>Grouped Products View</li>\r\n<li>Add to Wishlist</li>\r\n<li>Send to a Friend with Email</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]-->\r\n\r\n\r\n\r\n\r\n','eCommerce WebShop Lite','','inherit','closed','closed','','156-revision-29','','','2011-07-21 19:10:38','2011-07-21 19:10:38','',156,'http://bestecommerce-uk.com/2011/07/156-revision-29/',0,'revision','',0),(327,1,'2011-07-21 19:12:54','2011-07-21 19:12:54','<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>Our entry level product for the SME\'s and growing companies, WebShop 3.0 Lite provides a high level of function across the board.</p><p>Supporting advanced functions such as product attributes like size or colour variations, the system is well suited to small businesses selling on-line. </p>\r\n\r\n<h3>Key Features</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\r\n<li>Administration of permissions, system roles and users</li>\r\n<li>Web Services API for easy integration with third-party applications</li>\r\n<li>Fully 100% customizable design using templates, or bespoke design</li>\r\n<li>Support for Customer Groups</li>\r\n<li>Content Management System for General or Site Information Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n\r\n<h2>£999 + £60/month   </h2>\r\n<a href=\"/about-us\" class=\"btn impactBtn\"><span>Add to Cart/Sign-Up</span></a><br /><br /><br />\r\n[button_link url=\"webshop-3-0-feature-list\" style=\"medium blue\"]View Webshop 3.0 functionality[/button_link]\r\n[button_link url=\"http://www.webdesign-uk.org/webshop-3-0-feature-list/\" style=\"medium blue\"]Webshop 3.0 functionality.pdf[/button_link]<br /><br /><br />\r\n\r\n\r\n\r\n</div></div>\r\n\r\n\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n\r\n</div></div>\r\n\r\n\r\n<!--[tabs]\r\n	[tab title=\"Site Management\"]\r\n<h3>Site Management</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\r\n<li>Administration of permissions, system roles and users</li>\r\n<li>Web Services API for easy integration between Magento and any third-party application</li>\r\n<li>Fully 100% customizable design using templates</li>\r\n<li>Customer Groups</li>\r\n<li>One-Click Upgrades</li>\r\n<li>Content Management System for Informational Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n<h3>Analytics and reporting</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n <li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"SEO, Marketing Promotions and Tools\"]\r\n<h3>Search Engine Optimisation</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>100% Search Engine Friendly</li>\r\n<li>Google Site Map</li>\r\n<li>Search Engine Friendly URL’s</li>\r\n<li>URL Rewrites give full control of URL’s</li>\r\n<li>Meta-information for products and categories</li>\r\n<li>Auto-generated Site Map for display on site</li>\r\n<li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Marketing Promotions and Tools</h3>\r\n	<ul>\r\n<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n<h3>Orders</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n<h3>Checkout, Payment and Shipping</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Cheques/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\n<li>Shopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Customer\"]\r\n<h3>Customer Service</h3> \r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Contact Us form</li>\r\n<li>Feature-rich Customer Accounts</li>\r\n<li>Order History with Status Updates</li>\r\n<li>Order Tracking from Account</li>\r\n<li>Password Reset email from front-end and admin panel</li>\r\n<li>Order and Account Update Emails</li>\r\n<li>Customizable Order Emails</li>\r\n<li>Create and Edit Orders from the Admin Panel</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Customer Accounts</h3> \r\n	<ul>\r\n		<li>Order status and history</li>\r\n<li>Re-orders from account</li>\r\n<li>Recently ordered items</li>\r\n<li>Address Book with unlimited addresses</li>\r\n<li>Default Billing and Shipping addresses</li>\r\n<li>Wishlist with ability to add comments</li>\r\n<li>Email or Send RSS feed of Wishlist</li>\r\n<li>Newsletter Subscription management</li>\r\n<li>Product Reviews submitted</li>\r\n<li>Product Tags submitted</li>\r\n<li>Downloadable/Digital Products<li>\r\n<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Management & Browsing\"]\r\n<h3>Catalog Management</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Inventory Management with Backordered items, Minimum and Maximum quantities</li>\r\n<li>Batch Import and Export of catalog</li>\r\n<li>Batch Updates to products in admin panel</li>\r\n<li>Google Base Integration</li>\r\n<li>Simple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products</li>\r\n<li>Virtual Products</li>\r\n<li>Downloadable/Digital Products</li>\r\n<li>Customer Personalized Products - upload text for embroidery, monogramming, etc.</li>\r\n<li>Tax Rates per location, customer group and product type</li>\r\n<li>Attribute Sets for quick product creation of different item types</li>\r\n<li>Create Store-specific attributes on the fly</li>\r\n<li>Media Manager with automatic image resizing and watermarking</li>\r\n<li>Advanced Pricing Rules and support for Special Prices (see marketing tools)</li>\r\n<li>Search Results rewrites and redirects</li>\r\n<li>Approve, Edit and Delete Product Tags</li>\r\n<li>Approve, Edit and Delete Product Reviews</li>\r\n<li>RSS feed for Low Inventory Alerts</li>\r\n<li>Customer Personalized Products - Upload text for embroidery, monogramming, etc. (this one is already there, but want to have the following shown after it)</li>\r\n<li>Customer Personalized Products – Upload Image</li>\r\n<li>Customer Personalized Products – Select Date/Time options for products</li>\r\n<li>Customer Sorting – Define Attributes for Customer Sorting on category (price, brand, etc.)</li>\r\n			</ul>\r\n[/bullet_list]\r\n<h3>Catalog Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Layered / Faceted Navigation for filtering of products in categories</li>\r\n<li>Layered / Faceted Navigation for filtering of products in search results</li>\r\n<li>Flat Catalog Module for Improved Performance with large catalogs</li>\r\n<li>Static Block tool to create category landing pages</li>\r\n<li>Ability to assign designs on category and product level (unique design per product/category)</li>\r\n<li>Configurable search with auto-suggested terms</li>\r\n<li>Recently viewed products</li>\r\n<li>Product comparisons</li>\r\n<li>Recently compared products</li>\r\n<li>Cross-sells, Up-sells and Related Items</li>\r\n<li>Popular Search Terms Cloud</li>\r\n<li>Filter by Product Tags</li>\r\n<li>Product Reviews</li>\r\n<li>Product listing in grid or list format</li>\r\n<li>Breadcrumbs</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Product Browsing\"]\r\n<h3>Product Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Multiple Images Per Product</li>\r\n<li>Product Image Zoom-in Capability</li>\r\n<li>Product Reviews</li>\r\n<li>Related Products</li>\r\n<li>Stock Availability</li>\r\n<li>Multi-Tier Pricing Upsell</li>\r\n<li>Product Option Selection</li>\r\n<li>Grouped Products View</li>\r\n<li>Add to Wishlist</li>\r\n<li>Send to a Friend with Email</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]-->\r\n\r\n\r\n\r\n\r\n','eCommerce WebShop Lite','','inherit','closed','closed','','156-revision-31','','','2011-07-21 19:12:54','2011-07-21 19:12:54','',156,'http://bestecommerce-uk.com/2011/07/156-revision-31/',0,'revision','',0),(326,1,'2011-07-21 19:11:19','2011-07-21 19:11:19','<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>Our entry level product for the SME\'s and growing companies, WebShop 3.0 Lite provides a high level of function across the board.</p><p>Supporting advanced functions from multi-tiered pricing structures to integration with Amazon and eBay, the pro system is the benchmark for growing and established High Street brand retailers</p>\r\n\r\n<h3>Key Features</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\r\n<li>Administration of permissions, system roles and users</li>\r\n<li>Web Services API for easy integration with third-party applications</li>\r\n<li>Fully 100% customizable design using templates, or bespoke design</li>\r\n<li>Support for Customer Groups</li>\r\n<li>Content Management System for General or Site Information Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n\r\n<h2>£999 + £60/month   </h2>\r\n<a href=\"/about-us\" class=\"btn impactBtn\"><span>Add to Cart/Sign-Up</span></a><br /><br /><br />\r\n[button_link url=\"webshop-3-0-feature-list\" style=\"medium blue\"]View Webshop 3.0 functionality[/button_link]\r\n[button_link url=\"http://www.webdesign-uk.org/webshop-3-0-feature-list/\" style=\"medium blue\"]Webshop 3.0 functionality.pdf[/button_link]<br /><br /><br />\r\n\r\n\r\n\r\n</div></div>\r\n\r\n\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n\r\n</div></div>\r\n\r\n\r\n<!--[tabs]\r\n	[tab title=\"Site Management\"]\r\n<h3>Site Management</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\r\n<li>Administration of permissions, system roles and users</li>\r\n<li>Web Services API for easy integration between Magento and any third-party application</li>\r\n<li>Fully 100% customizable design using templates</li>\r\n<li>Customer Groups</li>\r\n<li>One-Click Upgrades</li>\r\n<li>Content Management System for Informational Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n<h3>Analytics and reporting</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n <li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"SEO, Marketing Promotions and Tools\"]\r\n<h3>Search Engine Optimisation</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>100% Search Engine Friendly</li>\r\n<li>Google Site Map</li>\r\n<li>Search Engine Friendly URL’s</li>\r\n<li>URL Rewrites give full control of URL’s</li>\r\n<li>Meta-information for products and categories</li>\r\n<li>Auto-generated Site Map for display on site</li>\r\n<li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Marketing Promotions and Tools</h3>\r\n	<ul>\r\n<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n<h3>Orders</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n<h3>Checkout, Payment and Shipping</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Cheques/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\n<li>Shopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Customer\"]\r\n<h3>Customer Service</h3> \r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Contact Us form</li>\r\n<li>Feature-rich Customer Accounts</li>\r\n<li>Order History with Status Updates</li>\r\n<li>Order Tracking from Account</li>\r\n<li>Password Reset email from front-end and admin panel</li>\r\n<li>Order and Account Update Emails</li>\r\n<li>Customizable Order Emails</li>\r\n<li>Create and Edit Orders from the Admin Panel</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Customer Accounts</h3> \r\n	<ul>\r\n		<li>Order status and history</li>\r\n<li>Re-orders from account</li>\r\n<li>Recently ordered items</li>\r\n<li>Address Book with unlimited addresses</li>\r\n<li>Default Billing and Shipping addresses</li>\r\n<li>Wishlist with ability to add comments</li>\r\n<li>Email or Send RSS feed of Wishlist</li>\r\n<li>Newsletter Subscription management</li>\r\n<li>Product Reviews submitted</li>\r\n<li>Product Tags submitted</li>\r\n<li>Downloadable/Digital Products<li>\r\n<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Management & Browsing\"]\r\n<h3>Catalog Management</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Inventory Management with Backordered items, Minimum and Maximum quantities</li>\r\n<li>Batch Import and Export of catalog</li>\r\n<li>Batch Updates to products in admin panel</li>\r\n<li>Google Base Integration</li>\r\n<li>Simple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products</li>\r\n<li>Virtual Products</li>\r\n<li>Downloadable/Digital Products</li>\r\n<li>Customer Personalized Products - upload text for embroidery, monogramming, etc.</li>\r\n<li>Tax Rates per location, customer group and product type</li>\r\n<li>Attribute Sets for quick product creation of different item types</li>\r\n<li>Create Store-specific attributes on the fly</li>\r\n<li>Media Manager with automatic image resizing and watermarking</li>\r\n<li>Advanced Pricing Rules and support for Special Prices (see marketing tools)</li>\r\n<li>Search Results rewrites and redirects</li>\r\n<li>Approve, Edit and Delete Product Tags</li>\r\n<li>Approve, Edit and Delete Product Reviews</li>\r\n<li>RSS feed for Low Inventory Alerts</li>\r\n<li>Customer Personalized Products - Upload text for embroidery, monogramming, etc. (this one is already there, but want to have the following shown after it)</li>\r\n<li>Customer Personalized Products – Upload Image</li>\r\n<li>Customer Personalized Products – Select Date/Time options for products</li>\r\n<li>Customer Sorting – Define Attributes for Customer Sorting on category (price, brand, etc.)</li>\r\n			</ul>\r\n[/bullet_list]\r\n<h3>Catalog Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Layered / Faceted Navigation for filtering of products in categories</li>\r\n<li>Layered / Faceted Navigation for filtering of products in search results</li>\r\n<li>Flat Catalog Module for Improved Performance with large catalogs</li>\r\n<li>Static Block tool to create category landing pages</li>\r\n<li>Ability to assign designs on category and product level (unique design per product/category)</li>\r\n<li>Configurable search with auto-suggested terms</li>\r\n<li>Recently viewed products</li>\r\n<li>Product comparisons</li>\r\n<li>Recently compared products</li>\r\n<li>Cross-sells, Up-sells and Related Items</li>\r\n<li>Popular Search Terms Cloud</li>\r\n<li>Filter by Product Tags</li>\r\n<li>Product Reviews</li>\r\n<li>Product listing in grid or list format</li>\r\n<li>Breadcrumbs</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Product Browsing\"]\r\n<h3>Product Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Multiple Images Per Product</li>\r\n<li>Product Image Zoom-in Capability</li>\r\n<li>Product Reviews</li>\r\n<li>Related Products</li>\r\n<li>Stock Availability</li>\r\n<li>Multi-Tier Pricing Upsell</li>\r\n<li>Product Option Selection</li>\r\n<li>Grouped Products View</li>\r\n<li>Add to Wishlist</li>\r\n<li>Send to a Friend with Email</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]-->\r\n\r\n\r\n\r\n\r\n','eCommerce WebShop Lite','','inherit','closed','closed','','156-revision-30','','','2011-07-21 19:11:19','2011-07-21 19:11:19','',156,'http://bestecommerce-uk.com/2011/07/156-revision-30/',0,'revision','',0),(331,1,'2011-08-11 21:49:07','2011-08-11 21:49:07','','ex_annbrownlie','','inherit','closed','closed','','ex_annbrownlie','','','2011-08-11 21:49:07','2011-08-11 21:49:07','',0,'http://bestecommerce-uk.com/wp-content/uploads/2011/08/ex_annbrownlie.jpg',0,'attachment','image/jpeg',0),(332,1,'2011-08-11 21:43:29','2011-08-11 21:43:29','[slideshow alias=\"examples\" ]','eCommerce Site Examples','','inherit','closed','closed','','328-revision-3','','','2011-08-11 21:43:29','2011-08-11 21:43:29','',328,'http://bestecommerce-uk.com/2011/08/328-revision-3/',0,'revision','',0),(333,1,'2011-08-11 22:00:45','2011-08-11 22:00:45','','ex_castle','','inherit','closed','closed','','ex_castle','','','2011-08-11 22:00:45','2011-08-11 22:00:45','',0,'http://bestecommerce-uk.com/wp-content/uploads/2011/08/ex_castle.jpg',0,'attachment','image/jpeg',0),(334,1,'2011-08-11 21:51:41','2011-08-11 21:51:41','[slideshow alias=\"examples\" ]','eCommerce Site Examples','','inherit','closed','closed','','328-revision-4','','','2011-08-11 21:51:41','2011-08-11 21:51:41','',328,'http://bestecommerce-uk.com/2011/08/328-revision-4/',0,'revision','',0),(335,1,'2011-08-11 22:16:25','2011-08-11 22:16:25','[slideshow alias=\"examples\" ]','','','publish','closed','closed','','335','','','2011-12-16 13:41:25','2011-12-16 13:41:25','',71,'http://bestecommerce-uk.com/?p=335',16,'nav_menu_item','',0),(336,1,'2011-08-11 22:20:08','2011-08-11 22:20:08','','ex_woodstock','','inherit','closed','closed','','ex_woodstock','','','2011-08-11 22:20:08','2011-08-11 22:20:08','',0,'http://bestecommerce-uk.com/wp-content/uploads/2011/08/ex_woodstock.jpg',0,'attachment','image/jpeg',0),(337,1,'2011-08-11 22:28:23','2011-08-11 22:28:23','','ex_garland','','inherit','closed','closed','','ex_garland','','','2011-08-11 22:28:23','2011-08-11 22:28:23','',0,'http://bestecommerce-uk.com/wp-content/uploads/2011/08/ex_garland.jpg',0,'attachment','image/jpeg',0),(339,1,'2011-07-13 15:03:57','2011-07-13 15:03:57','There are many people out there with opinions on what are the best tactics to succeed at search engine optimisation (SEO).  Here is my advice for beginners looking to increase their rankings.\r\n\r\nThe following tips are presented in no particular order as regards their importance:\r\n<h2>1. Good content</h2>\r\nEnsure your site has good content that is clear, concise, original and without spelling mistakes.\r\n\r\nCarry out some keyword research to determine the best keywords for you site.  Your keywords should be the word, words or phases that users will enter into the search engines when looking for your site, service or product. However, unless you have substantial budget and resources, it is not advisable to choose words with high competition as you will struggle to make headway.\r\n\r\nThe content should also be kept fresh and up to date as search engines will de-prioritise stagnant sites.  Also be aware that the search engines rate sites for human readability so keep sentences and words short so as to make them easier to understand by the masses.\r\n<h2>2. URLs</h2>\r\nKeep the URLs user and search engine friendly as this will help with SEO.  They should be logical and contain your target keywords.  For example: www.yourwebsite.com/category/subcategory\r\n<h2>3. Quality backlinks</h2>\r\nLink building is still one most important aspect of SEO as the number of links to you site is an indicator of its importance and popularity.  Ensure that the links too your site are relevant to the content and are from reputable sites.  Links from unrelated sites do not provide benefit  in the eyes of the search engines.\r\n<h2>4.  Tags</h2>\r\nTitle tags are one of the first things that the search engine spider will check when looking at your page.  Ensure that it includes the keywords or key-phrase that you want to rank for.  The optimal length of a title tag should range between 50 to 80 characters.\r\n\r\nDescription tags are important as the search engines will display the first 150 characters under a search. So it needs to contains the target keywords or key-phrase, be well written and relevant.  Even if you are in position 1 - if the user reads your description and it does not make sense to the reader or is not relevant they will not click through to your site.\r\n\r\nKeyword tags are a brief list of the targeted keywords or key-phrases on your page.  Some search engines now ignore this tag when indexing sites but it can be useful to support the theme of the page for the search engines that do still index this tag.\r\n\r\nH1, H2, H3... These tags sit in the main body of the contact acting as levelled heading with H1 at the top, going down to H6 at the lowest level or subcategory.  It is recommended that the page title is replicated in the H1 tag with variation or long-tail keywords used in the lower tags.  I would advise that the tags are used in sequential order only.\r\n<h2>5. Create a sitemap</h2>\r\nA sitemap is (as the name suggests) a map of you site containing a list of all the links to the pages within your site.  This aids the search engines in indexing the site as they will follow these links rather that crawling the site following the each link from page to page in turn.  The sitemap can be created as HTML and XML but is also just as effective as an simple text file.\r\n\r\nThere are many more SEO factors that can have an affect on how the search engines rank sites but  those listed above are some of the key factors that should be followed in order for you site to progress organically.','Top 5 organic SEO tips for beginners','','inherit','closed','closed','','187-revision-5','','','2011-07-13 15:03:57','2011-07-13 15:03:57','',187,'http://bestecommerce-uk.com/2011/07/187-revision-5/',0,'revision','',0),(340,1,'2011-08-31 12:30:10','2011-08-31 12:30:10','There are many people out there with opinions on what are the best tactics to succeed at search engine optimisation (SEO).  Here is my advice for beginners looking to increase their rankings.\r\n\r\nThe following tips are presented in no particular order as regards their importance:\r\n\r\n<h2>1. Good content</h2>\r\nEnsure your site has good content that is clear, concise, original and without spelling mistakes.\r\n\r\nCarry out some keyword research to determine the best keywords for you site.  Your keywords should be the word, words or phases that users will enter into the search engines when looking for your site, service or product. However, unless you have substantial budget and resources, it is not advisable to choose words with high competition as you will struggle to make headway.\r\n\r\nThe content should also be kept fresh and up to date as search engines will de-prioritise stagnant sites.  Also be aware that the search engines rate sites for human readability so keep sentences and words short so as to make them easier to understand by the masses.\r\n<h2>2. URLs</h2>\r\nKeep the URLs user and search engine friendly as this will help with SEO.  They should be logical and contain your target keywords.  For example: www.yourwebsite.com/category/subcategory\r\n<h2>3. Quality backlinks</h2>\r\nLink building is still one most important aspect of SEO as the number of links to you site is an indicator of its importance and popularity.  Ensure that the links too your site are relevant to the content and are from reputable sites.  Links from unrelated sites do not provide benefit  in the eyes of the search engines.\r\n<h2>4.  Tags</h2>\r\nTitle tags are one of the first things that the search engine spider will check when looking at your page.  Ensure that it includes the keywords or key-phrase that you want to rank for.  The optimal length of a title tag should range between 50 to 80 characters.\r\n\r\nDescription tags are important as the search engines will display the first 150 characters under a search. So it needs to contains the target keywords or key-phrase, be well written and relevant.  Even if you are in position 1 - if the user reads your description and it does not make sense to the reader or is not relevant they will not click through to your site.\r\n\r\nKeyword tags are a brief list of the targeted keywords or key-phrases on your page.  Some search engines now ignore this tag when indexing sites but it can be useful to support the theme of the page for the search engines that do still index this tag.\r\n\r\nH1, H2, H3... These tags sit in the main body of the contact acting as levelled heading with H1 at the top, going down to H6 at the lowest level or subcategory.  It is recommended that the page title is replicated in the H1 tag with variation or long-tail keywords used in the lower tags.  I would advise that the tags are used in sequential order only.\r\n<h2>5. Create a sitemap</h2>\r\nA sitemap is (as the name suggests) a map of you site containing a list of all the links to the pages within your site.  This aids the search engines in indexing the site as they will follow these links rather that crawling the site following the each link from page to page in turn.  The sitemap can be created as HTML and XML but is also just as effective as an simple text file.\r\n\r\nThere are many more SEO factors that can have an affect on how the search engines rank sites but  those listed above are some of the key factors that should be followed in order for you site to progress organically.','Top 5 organic SEO tips for beginners','','inherit','closed','closed','','187-revision-6','','','2011-08-31 12:30:10','2011-08-31 12:30:10','',187,'http://bestecommerce-uk.com/2011/08/187-revision-6/',0,'revision','',0),(341,1,'2011-08-31 12:30:42','2011-08-31 12:30:42','There are many people out there with opinions on what are the best tactics to succeed at search engine optimisation (SEO).  Here is my advice for beginners looking to increase their rankings.\r\n\r\nThe following tips are presented in no particular order as regards their importance:<br/>\r\n<h2>1. Good content</h2>\r\nEnsure your site has good content that is clear, concise, original and without spelling mistakes.\r\n\r\nCarry out some keyword research to determine the best keywords for you site.  Your keywords should be the word, words or phases that users will enter into the search engines when looking for your site, service or product. However, unless you have substantial budget and resources, it is not advisable to choose words with high competition as you will struggle to make headway.\r\n\r\nThe content should also be kept fresh and up to date as search engines will de-prioritise stagnant sites.  Also be aware that the search engines rate sites for human readability so keep sentences and words short so as to make them easier to understand by the masses.\r\n<h2>2. URLs</h2>\r\nKeep the URLs user and search engine friendly as this will help with SEO.  They should be logical and contain your target keywords.  For example: www.yourwebsite.com/category/subcategory\r\n<h2>3. Quality backlinks</h2>\r\nLink building is still one most important aspect of SEO as the number of links to you site is an indicator of its importance and popularity.  Ensure that the links too your site are relevant to the content and are from reputable sites.  Links from unrelated sites do not provide benefit  in the eyes of the search engines.\r\n<h2>4.  Tags</h2>\r\nTitle tags are one of the first things that the search engine spider will check when looking at your page.  Ensure that it includes the keywords or key-phrase that you want to rank for.  The optimal length of a title tag should range between 50 to 80 characters.\r\n\r\nDescription tags are important as the search engines will display the first 150 characters under a search. So it needs to contains the target keywords or key-phrase, be well written and relevant.  Even if you are in position 1 - if the user reads your description and it does not make sense to the reader or is not relevant they will not click through to your site.\r\n\r\nKeyword tags are a brief list of the targeted keywords or key-phrases on your page.  Some search engines now ignore this tag when indexing sites but it can be useful to support the theme of the page for the search engines that do still index this tag.\r\n\r\nH1, H2, H3... These tags sit in the main body of the contact acting as levelled heading with H1 at the top, going down to H6 at the lowest level or subcategory.  It is recommended that the page title is replicated in the H1 tag with variation or long-tail keywords used in the lower tags.  I would advise that the tags are used in sequential order only.\r\n<h2>5. Create a sitemap</h2>\r\nA sitemap is (as the name suggests) a map of you site containing a list of all the links to the pages within your site.  This aids the search engines in indexing the site as they will follow these links rather that crawling the site following the each link from page to page in turn.  The sitemap can be created as HTML and XML but is also just as effective as an simple text file.\r\n\r\nThere are many more SEO factors that can have an affect on how the search engines rank sites but  those listed above are some of the key factors that should be followed in order for you site to progress organically.','Top 5 organic SEO tips for beginners','','inherit','closed','closed','','187-revision-7','','','2011-08-31 12:30:42','2011-08-31 12:30:42','',187,'http://bestecommerce-uk.com/2011/08/187-revision-7/',0,'revision','',0),(342,1,'2011-08-31 12:31:35','2011-08-31 12:31:35','There are many people out there with opinions on what are the best tactics to succeed at search engine optimisation (SEO).  Here is my advice for beginners looking to increase their rankings.\r\n\r\nThe following tips are presented in no particular order as regards their importance:<br /><br />\r\n<h2>1. Good content</h2>\r\nEnsure your site has good content that is clear, concise, original and without spelling mistakes.\r\n\r\nCarry out some keyword research to determine the best keywords for you site.  Your keywords should be the word, words or phases that users will enter into the search engines when looking for your site, service or product. However, unless you have substantial budget and resources, it is not advisable to choose words with high competition as you will struggle to make headway.\r\n\r\nThe content should also be kept fresh and up to date as search engines will de-prioritise stagnant sites.  Also be aware that the search engines rate sites for human readability so keep sentences and words short so as to make them easier to understand by the masses.\r\n<h2>2. URLs</h2>\r\nKeep the URLs user and search engine friendly as this will help with SEO.  They should be logical and contain your target keywords.  For example: www.yourwebsite.com/category/subcategory\r\n<h2>3. Quality backlinks</h2>\r\nLink building is still one most important aspect of SEO as the number of links to you site is an indicator of its importance and popularity.  Ensure that the links too your site are relevant to the content and are from reputable sites.  Links from unrelated sites do not provide benefit  in the eyes of the search engines.\r\n<h2>4.  Tags</h2>\r\nTitle tags are one of the first things that the search engine spider will check when looking at your page.  Ensure that it includes the keywords or key-phrase that you want to rank for.  The optimal length of a title tag should range between 50 to 80 characters.\r\n\r\nDescription tags are important as the search engines will display the first 150 characters under a search. So it needs to contains the target keywords or key-phrase, be well written and relevant.  Even if you are in position 1 - if the user reads your description and it does not make sense to the reader or is not relevant they will not click through to your site.\r\n\r\nKeyword tags are a brief list of the targeted keywords or key-phrases on your page.  Some search engines now ignore this tag when indexing sites but it can be useful to support the theme of the page for the search engines that do still index this tag.\r\n\r\nH1, H2, H3... These tags sit in the main body of the contact acting as levelled heading with H1 at the top, going down to H6 at the lowest level or subcategory.  It is recommended that the page title is replicated in the H1 tag with variation or long-tail keywords used in the lower tags.  I would advise that the tags are used in sequential order only.\r\n<h2>5. Create a sitemap</h2>\r\nA sitemap is (as the name suggests) a map of you site containing a list of all the links to the pages within your site.  This aids the search engines in indexing the site as they will follow these links rather that crawling the site following the each link from page to page in turn.  The sitemap can be created as HTML and XML but is also just as effective as an simple text file.\r\n\r\nThere are many more SEO factors that can have an affect on how the search engines rank sites but  those listed above are some of the key factors that should be followed in order for you site to progress organically.','Top 5 organic SEO tips for beginners','','inherit','closed','closed','','187-revision-8','','','2011-08-31 12:31:35','2011-08-31 12:31:35','',187,'http://bestecommerce-uk.com/2011/08/187-revision-8/',0,'revision','',0),(343,1,'2011-08-31 12:32:29','2011-08-31 12:32:29','There are many people out there with opinions on what are the best tactics to succeed at search engine optimisation (SEO).  Here is my advice for beginners looking to increase their rankings.\r\n\r\nThe following tips are presented in no particular order as regards their importance:<br /><br />\r\n<h2>1. Good content</h2>\r\nEnsure your site has good content that is clear, concise, original and without spelling mistakes.\r\n\r\nCarry out some keyword research to determine the best keywords for you site.  Your keywords should be the word, words or phases that users will enter into the search engines when looking for your site, service or product. However, unless you have substantial budget and resources, it is not advisable to choose words with high competition as you will struggle to make headway.\r\n\r\nThe content should also be kept fresh and up to date as search engines will de-prioritise stagnant sites.  Also be aware that the search engines rate sites for human readability so keep sentences and words short so as to make them easier to understand by the masses.<br /><br />\r\n<h2>2. URLs</h2>\r\nKeep the URLs user and search engine friendly as this will help with SEO.  They should be logical and contain your target keywords.  For example: www.yourwebsite.com/category/subcategory.<br /><br />\r\n<h2>3. Quality backlinks</h2>\r\nLink building is still one most important aspect of SEO as the number of links to you site is an indicator of its importance and popularity.  Ensure that the links too your site are relevant to the content and are from reputable sites.  Links from unrelated sites do not provide benefit  in the eyes of the search engines.<br /><br />\r\n<h2>4.  Tags</h2>\r\nTitle tags are one of the first things that the search engine spider will check when looking at your page.  Ensure that it includes the keywords or key-phrase that you want to rank for.  The optimal length of a title tag should range between 50 to 80 characters.<br /><br />\r\n\r\nDescription tags are important as the search engines will display the first 150 characters under a search. So it needs to contains the target keywords or key-phrase, be well written and relevant.  Even if you are in position 1 - if the user reads your description and it does not make sense to the reader or is not relevant they will not click through to your site.\r\n\r\nKeyword tags are a brief list of the targeted keywords or key-phrases on your page.  Some search engines now ignore this tag when indexing sites but it can be useful to support the theme of the page for the search engines that do still index this tag.\r\n\r\nH1, H2, H3... These tags sit in the main body of the contact acting as levelled heading with H1 at the top, going down to H6 at the lowest level or subcategory.  It is recommended that the page title is replicated in the H1 tag with variation or long-tail keywords used in the lower tags.  I would advise that the tags are used in sequential order only.\r\n<h2>5. Create a sitemap</h2>\r\nA sitemap is (as the name suggests) a map of you site containing a list of all the links to the pages within your site.  This aids the search engines in indexing the site as they will follow these links rather that crawling the site following the each link from page to page in turn.  The sitemap can be created as HTML and XML but is also just as effective as an simple text file.\r\n\r\nThere are many more SEO factors that can have an affect on how the search engines rank sites but  those listed above are some of the key factors that should be followed in order for you site to progress organically.','Top 5 organic SEO tips for beginners','','inherit','closed','closed','','187-revision-9','','','2011-08-31 12:32:29','2011-08-31 12:32:29','',187,'http://bestecommerce-uk.com/2011/08/187-revision-9/',0,'revision','',0),(344,1,'2011-08-31 12:32:51','2011-08-31 12:32:51','There are many people out there with opinions on what are the best tactics to succeed at search engine optimisation (SEO).  Here is my advice for beginners looking to increase their rankings.\r\n\r\nThe following tips are presented in no particular order as regards their importance:<br /><br />\r\n<h2>1. Good content</h2>\r\nEnsure your site has good content that is clear, concise, original and without spelling mistakes.\r\n\r\nCarry out some keyword research to determine the best keywords for you site.  Your keywords should be the word, words or phases that users will enter into the search engines when looking for your site, service or product. However, unless you have substantial budget and resources, it is not advisable to choose words with high competition as you will struggle to make headway.\r\n\r\nThe content should also be kept fresh and up to date as search engines will de-prioritise stagnant sites.  Also be aware that the search engines rate sites for human readability so keep sentences and words short so as to make them easier to understand by the masses.<br /><br />\r\n<h2>2. URLs</h2>\r\nKeep the URLs user and search engine friendly as this will help with SEO.  They should be logical and contain your target keywords.  For example: www.yourwebsite.com/category/subcategory.<br /><br />\r\n<h2>3. Quality backlinks</h2>\r\nLink building is still one most important aspect of SEO as the number of links to you site is an indicator of its importance and popularity.  Ensure that the links too your site are relevant to the content and are from reputable sites.  Links from unrelated sites do not provide benefit  in the eyes of the search engines.<br /><br />\r\n<h2>4.  Tags</h2>\r\nTitle tags are one of the first things that the search engine spider will check when looking at your page.  Ensure that it includes the keywords or key-phrase that you want to rank for.  The optimal length of a title tag should range between 50 to 80 characters.<br /><br />\r\n\r\nDescription tags are important as the search engines will display the first 150 characters under a search. So it needs to contains the target keywords or key-phrase, be well written and relevant.  Even if you are in position 1 - if the user reads your description and it does not make sense to the reader or is not relevant they will not click through to your site.\r\n\r\nKeyword tags are a brief list of the targeted keywords or key-phrases on your page.  Some search engines now ignore this tag when indexing sites but it can be useful to support the theme of the page for the search engines that do still index this tag.\r\n\r\nH1, H2, H3... These tags sit in the main body of the contact acting as levelled heading with H1 at the top, going down to H6 at the lowest level or subcategory.  It is recommended that the page title is replicated in the H1 tag with variation or long-tail keywords used in the lower tags.  I would advise that the tags are used in sequential order only.<br /><br />\r\n<h2>5. Create a sitemap</h2>\r\nA sitemap is (as the name suggests) a map of you site containing a list of all the links to the pages within your site.  This aids the search engines in indexing the site as they will follow these links rather that crawling the site following the each link from page to page in turn.  The sitemap can be created as HTML and XML but is also just as effective as an simple text file.\r\n\r\nThere are many more SEO factors that can have an affect on how the search engines rank sites but  those listed above are some of the key factors that should be followed in order for you site to progress organically.','Top 5 organic SEO tips for beginners','','inherit','closed','closed','','187-revision-10','','','2011-08-31 12:32:51','2011-08-31 12:32:51','',187,'http://bestecommerce-uk.com/2011/08/187-revision-10/',0,'revision','',0),(345,1,'2011-07-21 19:13:27','2011-07-21 19:13:27','<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>Our entry level product for the SME\'s and growing companies, WebShop 3.0 Lite provides a high level of function across the board.</p><p>Supporting advanced functions such as cross-selling and up-selling, as well as product attributes for size or colour variations, the system is well suited to small businesses selling on-line. </p>\r\n\r\n<h3>Key Features</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\r\n<li>Administration of permissions, system roles and users</li>\r\n<li>Web Services API for easy integration with third-party applications</li>\r\n<li>Fully 100% customizable design using templates, or bespoke design</li>\r\n<li>Support for Customer Groups</li>\r\n<li>Content Management System for General or Site Information Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n\r\n<h2>£999 + £60/month   </h2>\r\n<a href=\"/about-us\" class=\"btn impactBtn\"><span>Add to Cart/Sign-Up</span></a><br /><br /><br />\r\n[button_link url=\"webshop-3-0-feature-list\" style=\"medium blue\"]View Webshop 3.0 functionality[/button_link]\r\n[button_link url=\"http://www.webdesign-uk.org/webshop-3-0-feature-list/\" style=\"medium blue\"]Webshop 3.0 functionality.pdf[/button_link]<br /><br /><br />\r\n\r\n\r\n\r\n</div></div>\r\n\r\n\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n\r\n</div></div>\r\n\r\n\r\n<!--[tabs]\r\n	[tab title=\"Site Management\"]\r\n<h3>Site Management</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\r\n<li>Administration of permissions, system roles and users</li>\r\n<li>Web Services API for easy integration between Magento and any third-party application</li>\r\n<li>Fully 100% customizable design using templates</li>\r\n<li>Customer Groups</li>\r\n<li>One-Click Upgrades</li>\r\n<li>Content Management System for Informational Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n<h3>Analytics and reporting</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n <li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"SEO, Marketing Promotions and Tools\"]\r\n<h3>Search Engine Optimisation</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>100% Search Engine Friendly</li>\r\n<li>Google Site Map</li>\r\n<li>Search Engine Friendly URL’s</li>\r\n<li>URL Rewrites give full control of URL’s</li>\r\n<li>Meta-information for products and categories</li>\r\n<li>Auto-generated Site Map for display on site</li>\r\n<li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Marketing Promotions and Tools</h3>\r\n	<ul>\r\n<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n<h3>Orders</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n<h3>Checkout, Payment and Shipping</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Cheques/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\n<li>Shopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Customer\"]\r\n<h3>Customer Service</h3> \r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Contact Us form</li>\r\n<li>Feature-rich Customer Accounts</li>\r\n<li>Order History with Status Updates</li>\r\n<li>Order Tracking from Account</li>\r\n<li>Password Reset email from front-end and admin panel</li>\r\n<li>Order and Account Update Emails</li>\r\n<li>Customizable Order Emails</li>\r\n<li>Create and Edit Orders from the Admin Panel</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Customer Accounts</h3> \r\n	<ul>\r\n		<li>Order status and history</li>\r\n<li>Re-orders from account</li>\r\n<li>Recently ordered items</li>\r\n<li>Address Book with unlimited addresses</li>\r\n<li>Default Billing and Shipping addresses</li>\r\n<li>Wishlist with ability to add comments</li>\r\n<li>Email or Send RSS feed of Wishlist</li>\r\n<li>Newsletter Subscription management</li>\r\n<li>Product Reviews submitted</li>\r\n<li>Product Tags submitted</li>\r\n<li>Downloadable/Digital Products<li>\r\n<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Management & Browsing\"]\r\n<h3>Catalog Management</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Inventory Management with Backordered items, Minimum and Maximum quantities</li>\r\n<li>Batch Import and Export of catalog</li>\r\n<li>Batch Updates to products in admin panel</li>\r\n<li>Google Base Integration</li>\r\n<li>Simple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products</li>\r\n<li>Virtual Products</li>\r\n<li>Downloadable/Digital Products</li>\r\n<li>Customer Personalized Products - upload text for embroidery, monogramming, etc.</li>\r\n<li>Tax Rates per location, customer group and product type</li>\r\n<li>Attribute Sets for quick product creation of different item types</li>\r\n<li>Create Store-specific attributes on the fly</li>\r\n<li>Media Manager with automatic image resizing and watermarking</li>\r\n<li>Advanced Pricing Rules and support for Special Prices (see marketing tools)</li>\r\n<li>Search Results rewrites and redirects</li>\r\n<li>Approve, Edit and Delete Product Tags</li>\r\n<li>Approve, Edit and Delete Product Reviews</li>\r\n<li>RSS feed for Low Inventory Alerts</li>\r\n<li>Customer Personalized Products - Upload text for embroidery, monogramming, etc. (this one is already there, but want to have the following shown after it)</li>\r\n<li>Customer Personalized Products – Upload Image</li>\r\n<li>Customer Personalized Products – Select Date/Time options for products</li>\r\n<li>Customer Sorting – Define Attributes for Customer Sorting on category (price, brand, etc.)</li>\r\n			</ul>\r\n[/bullet_list]\r\n<h3>Catalog Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Layered / Faceted Navigation for filtering of products in categories</li>\r\n<li>Layered / Faceted Navigation for filtering of products in search results</li>\r\n<li>Flat Catalog Module for Improved Performance with large catalogs</li>\r\n<li>Static Block tool to create category landing pages</li>\r\n<li>Ability to assign designs on category and product level (unique design per product/category)</li>\r\n<li>Configurable search with auto-suggested terms</li>\r\n<li>Recently viewed products</li>\r\n<li>Product comparisons</li>\r\n<li>Recently compared products</li>\r\n<li>Cross-sells, Up-sells and Related Items</li>\r\n<li>Popular Search Terms Cloud</li>\r\n<li>Filter by Product Tags</li>\r\n<li>Product Reviews</li>\r\n<li>Product listing in grid or list format</li>\r\n<li>Breadcrumbs</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Product Browsing\"]\r\n<h3>Product Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Multiple Images Per Product</li>\r\n<li>Product Image Zoom-in Capability</li>\r\n<li>Product Reviews</li>\r\n<li>Related Products</li>\r\n<li>Stock Availability</li>\r\n<li>Multi-Tier Pricing Upsell</li>\r\n<li>Product Option Selection</li>\r\n<li>Grouped Products View</li>\r\n<li>Add to Wishlist</li>\r\n<li>Send to a Friend with Email</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]-->\r\n\r\n\r\n\r\n\r\n','eCommerce WebShop Lite','','inherit','closed','closed','','156-revision-32','','','2011-07-21 19:13:27','2011-07-21 19:13:27','',156,'http://bestecommerce-uk.com/2011/07/156-revision-32/',0,'revision','',0),(346,1,'2011-09-02 11:33:35','2011-09-02 11:33:35','<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>Our entry level product for the SME\'s and growing companies, WebShop 3.0 Lite provides a high level of function across the board.</p><p>Supporting advanced functions such as cross-selling and up-selling, as well as product attributes for size or colour variations, the system is well suited to small businesses selling on-line. </p>\r\n\r\n<h3>Key Features</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\r\n<li>Administration of permissions, system roles and users</li>\r\n<li>Web Services API for easy integration with third-party applications</li>\r\n<li>Fully 100% customizable design using templates, or bespoke design</li>\r\n<li>Support for Customer Groups</li>\r\n<li>Content Management System for General or Site Information Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n\r\n<h2>£999 + £60/month   </h2>\r\n<a href=\"/about-us\" class=\"btn impactBtn\"><span>Contact form</span></a><br /><br /><br />\r\n[button_link url=\"webshop-3-0-feature-list\" style=\"medium blue\"]View Webshop 3.0 functionality[/button_link]\r\n[button_link url=\"http://www.webdesign-uk.org/webshop-3-0-feature-list/\" style=\"medium blue\"]Webshop 3.0 functionality.pdf[/button_link]<br /><br /><br />\r\n\r\n\r\n\r\n</div></div>\r\n\r\n\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n\r\n</div></div>\r\n\r\n\r\n<!--[tabs]\r\n	[tab title=\"Site Management\"]\r\n<h3>Site Management</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\r\n<li>Administration of permissions, system roles and users</li>\r\n<li>Web Services API for easy integration between Magento and any third-party application</li>\r\n<li>Fully 100% customizable design using templates</li>\r\n<li>Customer Groups</li>\r\n<li>One-Click Upgrades</li>\r\n<li>Content Management System for Informational Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n<h3>Analytics and reporting</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n <li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"SEO, Marketing Promotions and Tools\"]\r\n<h3>Search Engine Optimisation</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>100% Search Engine Friendly</li>\r\n<li>Google Site Map</li>\r\n<li>Search Engine Friendly URL’s</li>\r\n<li>URL Rewrites give full control of URL’s</li>\r\n<li>Meta-information for products and categories</li>\r\n<li>Auto-generated Site Map for display on site</li>\r\n<li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Marketing Promotions and Tools</h3>\r\n	<ul>\r\n<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n<h3>Orders</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n<h3>Checkout, Payment and Shipping</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Cheques/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\n<li>Shopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Customer\"]\r\n<h3>Customer Service</h3> \r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Contact Us form</li>\r\n<li>Feature-rich Customer Accounts</li>\r\n<li>Order History with Status Updates</li>\r\n<li>Order Tracking from Account</li>\r\n<li>Password Reset email from front-end and admin panel</li>\r\n<li>Order and Account Update Emails</li>\r\n<li>Customizable Order Emails</li>\r\n<li>Create and Edit Orders from the Admin Panel</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Customer Accounts</h3> \r\n	<ul>\r\n		<li>Order status and history</li>\r\n<li>Re-orders from account</li>\r\n<li>Recently ordered items</li>\r\n<li>Address Book with unlimited addresses</li>\r\n<li>Default Billing and Shipping addresses</li>\r\n<li>Wishlist with ability to add comments</li>\r\n<li>Email or Send RSS feed of Wishlist</li>\r\n<li>Newsletter Subscription management</li>\r\n<li>Product Reviews submitted</li>\r\n<li>Product Tags submitted</li>\r\n<li>Downloadable/Digital Products<li>\r\n<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Management & Browsing\"]\r\n<h3>Catalog Management</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Inventory Management with Backordered items, Minimum and Maximum quantities</li>\r\n<li>Batch Import and Export of catalog</li>\r\n<li>Batch Updates to products in admin panel</li>\r\n<li>Google Base Integration</li>\r\n<li>Simple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products</li>\r\n<li>Virtual Products</li>\r\n<li>Downloadable/Digital Products</li>\r\n<li>Customer Personalized Products - upload text for embroidery, monogramming, etc.</li>\r\n<li>Tax Rates per location, customer group and product type</li>\r\n<li>Attribute Sets for quick product creation of different item types</li>\r\n<li>Create Store-specific attributes on the fly</li>\r\n<li>Media Manager with automatic image resizing and watermarking</li>\r\n<li>Advanced Pricing Rules and support for Special Prices (see marketing tools)</li>\r\n<li>Search Results rewrites and redirects</li>\r\n<li>Approve, Edit and Delete Product Tags</li>\r\n<li>Approve, Edit and Delete Product Reviews</li>\r\n<li>RSS feed for Low Inventory Alerts</li>\r\n<li>Customer Personalized Products - Upload text for embroidery, monogramming, etc. (this one is already there, but want to have the following shown after it)</li>\r\n<li>Customer Personalized Products – Upload Image</li>\r\n<li>Customer Personalized Products – Select Date/Time options for products</li>\r\n<li>Customer Sorting – Define Attributes for Customer Sorting on category (price, brand, etc.)</li>\r\n			</ul>\r\n[/bullet_list]\r\n<h3>Catalog Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Layered / Faceted Navigation for filtering of products in categories</li>\r\n<li>Layered / Faceted Navigation for filtering of products in search results</li>\r\n<li>Flat Catalog Module for Improved Performance with large catalogs</li>\r\n<li>Static Block tool to create category landing pages</li>\r\n<li>Ability to assign designs on category and product level (unique design per product/category)</li>\r\n<li>Configurable search with auto-suggested terms</li>\r\n<li>Recently viewed products</li>\r\n<li>Product comparisons</li>\r\n<li>Recently compared products</li>\r\n<li>Cross-sells, Up-sells and Related Items</li>\r\n<li>Popular Search Terms Cloud</li>\r\n<li>Filter by Product Tags</li>\r\n<li>Product Reviews</li>\r\n<li>Product listing in grid or list format</li>\r\n<li>Breadcrumbs</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Product Browsing\"]\r\n<h3>Product Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Multiple Images Per Product</li>\r\n<li>Product Image Zoom-in Capability</li>\r\n<li>Product Reviews</li>\r\n<li>Related Products</li>\r\n<li>Stock Availability</li>\r\n<li>Multi-Tier Pricing Upsell</li>\r\n<li>Product Option Selection</li>\r\n<li>Grouped Products View</li>\r\n<li>Add to Wishlist</li>\r\n<li>Send to a Friend with Email</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]-->\r\n\r\n\r\n\r\n\r\n','eCommerce WebShop Lite','','inherit','closed','closed','','156-revision-33','','','2011-09-02 11:33:35','2011-09-02 11:33:35','',156,'http://bestecommerce-uk.com/2011/09/156-revision-33/',0,'revision','',0),(347,1,'2011-09-02 11:36:33','2011-09-02 11:36:33','<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>Our entry level product for the SME\'s and growing companies, WebShop 3.0 Lite provides a high level of function across the board.</p><p>Supporting advanced functions such as cross-selling and up-selling, as well as product attributes for size or colour variations, the system is well suited to small businesses selling on-line. </p>\r\n\r\n<h3>Key Features</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\r\n<li>Administration of permissions, system roles and users</li>\r\n<li>Web Services API for easy integration with third-party applications</li>\r\n<li>Fully 100% customizable design using templates, or bespoke design</li>\r\n<li>Support for Customer Groups</li>\r\n<li>Content Management System for General or Site Information Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n\r\n<h2>£999 + £60/month   </h2>\r\n<p>If you as interested in this product please use the button below to complete the contact form our call us to discuss your requirements.<p/>\r\n<a href=\"/about-us\" class=\"btn impactBtn\"><span>Contact form</span></a><br /><br /><br />\r\n[button_link url=\"webshop-3-0-feature-list\" style=\"medium blue\"]View Webshop 3.0 functionality[/button_link]\r\n[button_link url=\"http://www.webdesign-uk.org/webshop-3-0-feature-list/\" style=\"medium blue\"]Webshop 3.0 functionality.pdf[/button_link]<br /><br /><br />\r\n\r\n\r\n\r\n</div></div>\r\n\r\n\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n\r\n</div></div>\r\n\r\n\r\n<!--[tabs]\r\n	[tab title=\"Site Management\"]\r\n<h3>Site Management</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\r\n<li>Administration of permissions, system roles and users</li>\r\n<li>Web Services API for easy integration between Magento and any third-party application</li>\r\n<li>Fully 100% customizable design using templates</li>\r\n<li>Customer Groups</li>\r\n<li>One-Click Upgrades</li>\r\n<li>Content Management System for Informational Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n<h3>Analytics and reporting</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n <li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"SEO, Marketing Promotions and Tools\"]\r\n<h3>Search Engine Optimisation</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>100% Search Engine Friendly</li>\r\n<li>Google Site Map</li>\r\n<li>Search Engine Friendly URL’s</li>\r\n<li>URL Rewrites give full control of URL’s</li>\r\n<li>Meta-information for products and categories</li>\r\n<li>Auto-generated Site Map for display on site</li>\r\n<li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Marketing Promotions and Tools</h3>\r\n	<ul>\r\n<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n<h3>Orders</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n<h3>Checkout, Payment and Shipping</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Cheques/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\n<li>Shopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Customer\"]\r\n<h3>Customer Service</h3> \r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Contact Us form</li>\r\n<li>Feature-rich Customer Accounts</li>\r\n<li>Order History with Status Updates</li>\r\n<li>Order Tracking from Account</li>\r\n<li>Password Reset email from front-end and admin panel</li>\r\n<li>Order and Account Update Emails</li>\r\n<li>Customizable Order Emails</li>\r\n<li>Create and Edit Orders from the Admin Panel</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Customer Accounts</h3> \r\n	<ul>\r\n		<li>Order status and history</li>\r\n<li>Re-orders from account</li>\r\n<li>Recently ordered items</li>\r\n<li>Address Book with unlimited addresses</li>\r\n<li>Default Billing and Shipping addresses</li>\r\n<li>Wishlist with ability to add comments</li>\r\n<li>Email or Send RSS feed of Wishlist</li>\r\n<li>Newsletter Subscription management</li>\r\n<li>Product Reviews submitted</li>\r\n<li>Product Tags submitted</li>\r\n<li>Downloadable/Digital Products<li>\r\n<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Management & Browsing\"]\r\n<h3>Catalog Management</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Inventory Management with Backordered items, Minimum and Maximum quantities</li>\r\n<li>Batch Import and Export of catalog</li>\r\n<li>Batch Updates to products in admin panel</li>\r\n<li>Google Base Integration</li>\r\n<li>Simple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products</li>\r\n<li>Virtual Products</li>\r\n<li>Downloadable/Digital Products</li>\r\n<li>Customer Personalized Products - upload text for embroidery, monogramming, etc.</li>\r\n<li>Tax Rates per location, customer group and product type</li>\r\n<li>Attribute Sets for quick product creation of different item types</li>\r\n<li>Create Store-specific attributes on the fly</li>\r\n<li>Media Manager with automatic image resizing and watermarking</li>\r\n<li>Advanced Pricing Rules and support for Special Prices (see marketing tools)</li>\r\n<li>Search Results rewrites and redirects</li>\r\n<li>Approve, Edit and Delete Product Tags</li>\r\n<li>Approve, Edit and Delete Product Reviews</li>\r\n<li>RSS feed for Low Inventory Alerts</li>\r\n<li>Customer Personalized Products - Upload text for embroidery, monogramming, etc. (this one is already there, but want to have the following shown after it)</li>\r\n<li>Customer Personalized Products – Upload Image</li>\r\n<li>Customer Personalized Products – Select Date/Time options for products</li>\r\n<li>Customer Sorting – Define Attributes for Customer Sorting on category (price, brand, etc.)</li>\r\n			</ul>\r\n[/bullet_list]\r\n<h3>Catalog Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Layered / Faceted Navigation for filtering of products in categories</li>\r\n<li>Layered / Faceted Navigation for filtering of products in search results</li>\r\n<li>Flat Catalog Module for Improved Performance with large catalogs</li>\r\n<li>Static Block tool to create category landing pages</li>\r\n<li>Ability to assign designs on category and product level (unique design per product/category)</li>\r\n<li>Configurable search with auto-suggested terms</li>\r\n<li>Recently viewed products</li>\r\n<li>Product comparisons</li>\r\n<li>Recently compared products</li>\r\n<li>Cross-sells, Up-sells and Related Items</li>\r\n<li>Popular Search Terms Cloud</li>\r\n<li>Filter by Product Tags</li>\r\n<li>Product Reviews</li>\r\n<li>Product listing in grid or list format</li>\r\n<li>Breadcrumbs</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Product Browsing\"]\r\n<h3>Product Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Multiple Images Per Product</li>\r\n<li>Product Image Zoom-in Capability</li>\r\n<li>Product Reviews</li>\r\n<li>Related Products</li>\r\n<li>Stock Availability</li>\r\n<li>Multi-Tier Pricing Upsell</li>\r\n<li>Product Option Selection</li>\r\n<li>Grouped Products View</li>\r\n<li>Add to Wishlist</li>\r\n<li>Send to a Friend with Email</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]-->\r\n\r\n\r\n\r\n\r\n','eCommerce WebShop Lite','','inherit','closed','closed','','156-revision-34','','','2011-09-02 11:36:33','2011-09-02 11:36:33','',156,'http://bestecommerce-uk.com/2011/09/156-revision-34/',0,'revision','',0),(348,1,'2011-07-18 14:45:36','2011-07-18 14:45:36','[pricing_table columns=\"3\"]\r\n	[pricing_column title=\"WebShop Lite\"]\r\n	    <ul>\r\n		<li>[price_info cost=\"£999\"] + £60 month[/price_info]</li>\r\n		<li>Entry level product for the SME’s and growing companies.</li>\r\n		<li>Includes upload of 30 products</li>\r\n		<li>[button_link url=\"ecommerce-webshop-lite\"]View Package[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n	[pricing_column title=\"WebShop Standard\" highlight=\"true\"]\r\n	    <ul>\r\n	 	<li>[price_info cost=\"£1999\"]+ £60 month[/price_info]</li>\r\n		<li>Provides a strong base from which to grow your presence on-line.</li>\r\n		<li>Inculdes upload of 60 products</li>\r\n		<li>[button_link url=\"ecommerce-webshop-standard\"]View Package[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n	[pricing_column title=\"WebShop Pro\"] \r\n	    <ul>\r\n		<li>[price_info cost=\"£2999\"]+ £60 month[/price_info]</li>\r\n		<li>Our flagship product for the SME’s and growing companies. </li>\r\n		<li>WebShop 3.0 Pro provides a high level of function across the board.</li>\r\n		<li>[button_link url=\"e-commerce-webshop-pro\"]View Package[/button_link]</li>\r\n	    </ul>\r\n	[/pricing_column]\r\n[/pricing_table]\r\n','Best eCommerce Packages','','inherit','closed','closed','','71-revision-35','','','2011-07-18 14:45:36','2011-07-18 14:45:36','',71,'http://bestecommerce-uk.com/2011/07/71-revision-35/',0,'revision','',0),(350,1,'2011-09-02 11:37:13','2011-09-02 11:37:13','<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>Our entry level product for the SME\'s and growing companies, WebShop 3.0 Lite provides a high level of function across the board.</p><p>Supporting advanced functions such as cross-selling and up-selling, as well as product attributes for size or colour variations, the system is well suited to small businesses selling on-line. </p>\r\n\r\n<h3>Key Features</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\r\n<li>Administration of permissions, system roles and users</li>\r\n<li>Web Services API for easy integration with third-party applications</li>\r\n<li>Fully 100% customizable design using templates, or bespoke design</li>\r\n<li>Support for Customer Groups</li>\r\n<li>Content Management System for General or Site Information Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n\r\n<h2>£999 + £60/month   </h2>\r\n<p>If you as interested in this product please use the button below to complete a contact form our call us to discuss your requirements.<p/>\r\n<a href=\"/about-us\" class=\"btn impactBtn\"><span>Contact form</span></a><br /><br /><br />\r\n[button_link url=\"webshop-3-0-feature-list\" style=\"medium blue\"]View Webshop 3.0 functionality[/button_link]\r\n[button_link url=\"http://www.webdesign-uk.org/webshop-3-0-feature-list/\" style=\"medium blue\"]Webshop 3.0 functionality.pdf[/button_link]<br /><br /><br />\r\n\r\n\r\n\r\n</div></div>\r\n\r\n\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n\r\n</div></div>\r\n\r\n\r\n<!--[tabs]\r\n	[tab title=\"Site Management\"]\r\n<h3>Site Management</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\r\n<li>Administration of permissions, system roles and users</li>\r\n<li>Web Services API for easy integration between Magento and any third-party application</li>\r\n<li>Fully 100% customizable design using templates</li>\r\n<li>Customer Groups</li>\r\n<li>One-Click Upgrades</li>\r\n<li>Content Management System for Informational Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n<h3>Analytics and reporting</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n <li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"SEO, Marketing Promotions and Tools\"]\r\n<h3>Search Engine Optimisation</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>100% Search Engine Friendly</li>\r\n<li>Google Site Map</li>\r\n<li>Search Engine Friendly URL’s</li>\r\n<li>URL Rewrites give full control of URL’s</li>\r\n<li>Meta-information for products and categories</li>\r\n<li>Auto-generated Site Map for display on site</li>\r\n<li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Marketing Promotions and Tools</h3>\r\n	<ul>\r\n<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n<h3>Orders</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n<h3>Checkout, Payment and Shipping</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Cheques/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\n<li>Shopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Customer\"]\r\n<h3>Customer Service</h3> \r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Contact Us form</li>\r\n<li>Feature-rich Customer Accounts</li>\r\n<li>Order History with Status Updates</li>\r\n<li>Order Tracking from Account</li>\r\n<li>Password Reset email from front-end and admin panel</li>\r\n<li>Order and Account Update Emails</li>\r\n<li>Customizable Order Emails</li>\r\n<li>Create and Edit Orders from the Admin Panel</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Customer Accounts</h3> \r\n	<ul>\r\n		<li>Order status and history</li>\r\n<li>Re-orders from account</li>\r\n<li>Recently ordered items</li>\r\n<li>Address Book with unlimited addresses</li>\r\n<li>Default Billing and Shipping addresses</li>\r\n<li>Wishlist with ability to add comments</li>\r\n<li>Email or Send RSS feed of Wishlist</li>\r\n<li>Newsletter Subscription management</li>\r\n<li>Product Reviews submitted</li>\r\n<li>Product Tags submitted</li>\r\n<li>Downloadable/Digital Products<li>\r\n<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Management & Browsing\"]\r\n<h3>Catalog Management</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Inventory Management with Backordered items, Minimum and Maximum quantities</li>\r\n<li>Batch Import and Export of catalog</li>\r\n<li>Batch Updates to products in admin panel</li>\r\n<li>Google Base Integration</li>\r\n<li>Simple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products</li>\r\n<li>Virtual Products</li>\r\n<li>Downloadable/Digital Products</li>\r\n<li>Customer Personalized Products - upload text for embroidery, monogramming, etc.</li>\r\n<li>Tax Rates per location, customer group and product type</li>\r\n<li>Attribute Sets for quick product creation of different item types</li>\r\n<li>Create Store-specific attributes on the fly</li>\r\n<li>Media Manager with automatic image resizing and watermarking</li>\r\n<li>Advanced Pricing Rules and support for Special Prices (see marketing tools)</li>\r\n<li>Search Results rewrites and redirects</li>\r\n<li>Approve, Edit and Delete Product Tags</li>\r\n<li>Approve, Edit and Delete Product Reviews</li>\r\n<li>RSS feed for Low Inventory Alerts</li>\r\n<li>Customer Personalized Products - Upload text for embroidery, monogramming, etc. (this one is already there, but want to have the following shown after it)</li>\r\n<li>Customer Personalized Products – Upload Image</li>\r\n<li>Customer Personalized Products – Select Date/Time options for products</li>\r\n<li>Customer Sorting – Define Attributes for Customer Sorting on category (price, brand, etc.)</li>\r\n			</ul>\r\n[/bullet_list]\r\n<h3>Catalog Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Layered / Faceted Navigation for filtering of products in categories</li>\r\n<li>Layered / Faceted Navigation for filtering of products in search results</li>\r\n<li>Flat Catalog Module for Improved Performance with large catalogs</li>\r\n<li>Static Block tool to create category landing pages</li>\r\n<li>Ability to assign designs on category and product level (unique design per product/category)</li>\r\n<li>Configurable search with auto-suggested terms</li>\r\n<li>Recently viewed products</li>\r\n<li>Product comparisons</li>\r\n<li>Recently compared products</li>\r\n<li>Cross-sells, Up-sells and Related Items</li>\r\n<li>Popular Search Terms Cloud</li>\r\n<li>Filter by Product Tags</li>\r\n<li>Product Reviews</li>\r\n<li>Product listing in grid or list format</li>\r\n<li>Breadcrumbs</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Product Browsing\"]\r\n<h3>Product Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Multiple Images Per Product</li>\r\n<li>Product Image Zoom-in Capability</li>\r\n<li>Product Reviews</li>\r\n<li>Related Products</li>\r\n<li>Stock Availability</li>\r\n<li>Multi-Tier Pricing Upsell</li>\r\n<li>Product Option Selection</li>\r\n<li>Grouped Products View</li>\r\n<li>Add to Wishlist</li>\r\n<li>Send to a Friend with Email</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]-->\r\n\r\n\r\n\r\n\r\n','eCommerce WebShop Lite','','inherit','closed','closed','','156-revision-35','','','2011-09-02 11:37:13','2011-09-02 11:37:13','',156,'http://bestecommerce-uk.com/2011/09/156-revision-35/',0,'revision','',0),(351,1,'2011-09-02 11:52:32','2011-09-02 11:52:32','<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>Our entry level product for the SME\'s and growing companies, WebShop 3.0 Lite provides a high level of function across the board.</p><p>Supporting advanced functions such as cross-selling and up-selling, as well as product attributes for size or colour variations, the system is well suited to small businesses selling on-line. </p>\r\n\r\n<h3>Key Features</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\r\n<li>Administration of permissions, system roles and users</li>\r\n<li>Web Services API for easy integration with third-party applications</li>\r\n<li>Fully 100% customizable design using templates, or bespoke design</li>\r\n<li>Support for Customer Groups</li>\r\n<li>Content Management System for General or Site Information Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n\r\n<h2>£999 + £60/month   </h2>\r\n<p>If you as interested in this product please use the button below to complete a contact form our call us to discuss your requirements.<p/>\r\n<a href=\"/about-us\" class=\"btn impactBtn\"><span>Contact me</span></a><br /><br /><br />\r\n[button_link url=\"webshop-3-0-feature-list\" style=\"medium blue\"]View Webshop 3.0 functionality[/button_link]\r\n[button_link url=\"http://www.webdesign-uk.org/webshop-3-0-feature-list/\" style=\"medium blue\"]Webshop 3.0 functionality.pdf[/button_link]<br /><br /><br />\r\n\r\n\r\n\r\n</div></div>\r\n\r\n\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n\r\n</div></div>\r\n\r\n\r\n<!--[tabs]\r\n	[tab title=\"Site Management\"]\r\n<h3>Site Management</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\r\n<li>Administration of permissions, system roles and users</li>\r\n<li>Web Services API for easy integration between Magento and any third-party application</li>\r\n<li>Fully 100% customizable design using templates</li>\r\n<li>Customer Groups</li>\r\n<li>One-Click Upgrades</li>\r\n<li>Content Management System for Informational Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n<h3>Analytics and reporting</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n <li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"SEO, Marketing Promotions and Tools\"]\r\n<h3>Search Engine Optimisation</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>100% Search Engine Friendly</li>\r\n<li>Google Site Map</li>\r\n<li>Search Engine Friendly URL’s</li>\r\n<li>URL Rewrites give full control of URL’s</li>\r\n<li>Meta-information for products and categories</li>\r\n<li>Auto-generated Site Map for display on site</li>\r\n<li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Marketing Promotions and Tools</h3>\r\n	<ul>\r\n<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n<h3>Orders</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n<h3>Checkout, Payment and Shipping</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Cheques/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\n<li>Shopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Customer\"]\r\n<h3>Customer Service</h3> \r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Contact Us form</li>\r\n<li>Feature-rich Customer Accounts</li>\r\n<li>Order History with Status Updates</li>\r\n<li>Order Tracking from Account</li>\r\n<li>Password Reset email from front-end and admin panel</li>\r\n<li>Order and Account Update Emails</li>\r\n<li>Customizable Order Emails</li>\r\n<li>Create and Edit Orders from the Admin Panel</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Customer Accounts</h3> \r\n	<ul>\r\n		<li>Order status and history</li>\r\n<li>Re-orders from account</li>\r\n<li>Recently ordered items</li>\r\n<li>Address Book with unlimited addresses</li>\r\n<li>Default Billing and Shipping addresses</li>\r\n<li>Wishlist with ability to add comments</li>\r\n<li>Email or Send RSS feed of Wishlist</li>\r\n<li>Newsletter Subscription management</li>\r\n<li>Product Reviews submitted</li>\r\n<li>Product Tags submitted</li>\r\n<li>Downloadable/Digital Products<li>\r\n<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Management & Browsing\"]\r\n<h3>Catalog Management</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Inventory Management with Backordered items, Minimum and Maximum quantities</li>\r\n<li>Batch Import and Export of catalog</li>\r\n<li>Batch Updates to products in admin panel</li>\r\n<li>Google Base Integration</li>\r\n<li>Simple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products</li>\r\n<li>Virtual Products</li>\r\n<li>Downloadable/Digital Products</li>\r\n<li>Customer Personalized Products - upload text for embroidery, monogramming, etc.</li>\r\n<li>Tax Rates per location, customer group and product type</li>\r\n<li>Attribute Sets for quick product creation of different item types</li>\r\n<li>Create Store-specific attributes on the fly</li>\r\n<li>Media Manager with automatic image resizing and watermarking</li>\r\n<li>Advanced Pricing Rules and support for Special Prices (see marketing tools)</li>\r\n<li>Search Results rewrites and redirects</li>\r\n<li>Approve, Edit and Delete Product Tags</li>\r\n<li>Approve, Edit and Delete Product Reviews</li>\r\n<li>RSS feed for Low Inventory Alerts</li>\r\n<li>Customer Personalized Products - Upload text for embroidery, monogramming, etc. (this one is already there, but want to have the following shown after it)</li>\r\n<li>Customer Personalized Products – Upload Image</li>\r\n<li>Customer Personalized Products – Select Date/Time options for products</li>\r\n<li>Customer Sorting – Define Attributes for Customer Sorting on category (price, brand, etc.)</li>\r\n			</ul>\r\n[/bullet_list]\r\n<h3>Catalog Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Layered / Faceted Navigation for filtering of products in categories</li>\r\n<li>Layered / Faceted Navigation for filtering of products in search results</li>\r\n<li>Flat Catalog Module for Improved Performance with large catalogs</li>\r\n<li>Static Block tool to create category landing pages</li>\r\n<li>Ability to assign designs on category and product level (unique design per product/category)</li>\r\n<li>Configurable search with auto-suggested terms</li>\r\n<li>Recently viewed products</li>\r\n<li>Product comparisons</li>\r\n<li>Recently compared products</li>\r\n<li>Cross-sells, Up-sells and Related Items</li>\r\n<li>Popular Search Terms Cloud</li>\r\n<li>Filter by Product Tags</li>\r\n<li>Product Reviews</li>\r\n<li>Product listing in grid or list format</li>\r\n<li>Breadcrumbs</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Product Browsing\"]\r\n<h3>Product Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Multiple Images Per Product</li>\r\n<li>Product Image Zoom-in Capability</li>\r\n<li>Product Reviews</li>\r\n<li>Related Products</li>\r\n<li>Stock Availability</li>\r\n<li>Multi-Tier Pricing Upsell</li>\r\n<li>Product Option Selection</li>\r\n<li>Grouped Products View</li>\r\n<li>Add to Wishlist</li>\r\n<li>Send to a Friend with Email</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]-->\r\n\r\n\r\n\r\n\r\n','eCommerce WebShop Lite','','inherit','closed','closed','','156-revision-36','','','2011-09-02 11:52:32','2011-09-02 11:52:32','',156,'http://bestecommerce-uk.com/2011/09/156-revision-36/',0,'revision','',0),(352,1,'2011-09-02 11:53:20','2011-09-02 11:53:20','<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>Our entry level product for the SME\'s and growing companies, WebShop 3.0 Lite provides a high level of function across the board.</p><p>Supporting advanced functions such as cross-selling and up-selling, as well as product attributes for size or colour variations, the system is well suited to small businesses selling on-line. </p>\r\n\r\n<h3>Key Features</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\r\n<li>Administration of permissions, system roles and users</li>\r\n<li>Web Services API for easy integration with third-party applications</li>\r\n<li>Fully 100% customizable design using templates, or bespoke design</li>\r\n<li>Support for Customer Groups</li>\r\n<li>Content Management System for General or Site Information Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n\r\n<h2>£999 + £60/month   </h2>\r\n<p>If you as interested in this product please use the button below to complete a contact form our call us to discuss your requirements.<p/>\r\n<a href=\"/about-us\" class=\"btn impactBtn\"><span>Contact Us</span></a><br /><br /><br />\r\n[button_link url=\"webshop-3-0-feature-list\" style=\"medium blue\"]View Webshop 3.0 functionality[/button_link]\r\n[button_link url=\"http://www.webdesign-uk.org/webshop-3-0-feature-list/\" style=\"medium blue\"]Webshop 3.0 functionality.pdf[/button_link]<br /><br /><br />\r\n\r\n\r\n\r\n</div></div>\r\n\r\n\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n\r\n</div></div>\r\n\r\n\r\n<!--[tabs]\r\n	[tab title=\"Site Management\"]\r\n<h3>Site Management</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\r\n<li>Administration of permissions, system roles and users</li>\r\n<li>Web Services API for easy integration between Magento and any third-party application</li>\r\n<li>Fully 100% customizable design using templates</li>\r\n<li>Customer Groups</li>\r\n<li>One-Click Upgrades</li>\r\n<li>Content Management System for Informational Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n<h3>Analytics and reporting</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n <li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"SEO, Marketing Promotions and Tools\"]\r\n<h3>Search Engine Optimisation</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>100% Search Engine Friendly</li>\r\n<li>Google Site Map</li>\r\n<li>Search Engine Friendly URL’s</li>\r\n<li>URL Rewrites give full control of URL’s</li>\r\n<li>Meta-information for products and categories</li>\r\n<li>Auto-generated Site Map for display on site</li>\r\n<li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Marketing Promotions and Tools</h3>\r\n	<ul>\r\n<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n<h3>Orders</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n<h3>Checkout, Payment and Shipping</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Cheques/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\n<li>Shopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Customer\"]\r\n<h3>Customer Service</h3> \r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Contact Us form</li>\r\n<li>Feature-rich Customer Accounts</li>\r\n<li>Order History with Status Updates</li>\r\n<li>Order Tracking from Account</li>\r\n<li>Password Reset email from front-end and admin panel</li>\r\n<li>Order and Account Update Emails</li>\r\n<li>Customizable Order Emails</li>\r\n<li>Create and Edit Orders from the Admin Panel</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Customer Accounts</h3> \r\n	<ul>\r\n		<li>Order status and history</li>\r\n<li>Re-orders from account</li>\r\n<li>Recently ordered items</li>\r\n<li>Address Book with unlimited addresses</li>\r\n<li>Default Billing and Shipping addresses</li>\r\n<li>Wishlist with ability to add comments</li>\r\n<li>Email or Send RSS feed of Wishlist</li>\r\n<li>Newsletter Subscription management</li>\r\n<li>Product Reviews submitted</li>\r\n<li>Product Tags submitted</li>\r\n<li>Downloadable/Digital Products<li>\r\n<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Management & Browsing\"]\r\n<h3>Catalog Management</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Inventory Management with Backordered items, Minimum and Maximum quantities</li>\r\n<li>Batch Import and Export of catalog</li>\r\n<li>Batch Updates to products in admin panel</li>\r\n<li>Google Base Integration</li>\r\n<li>Simple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products</li>\r\n<li>Virtual Products</li>\r\n<li>Downloadable/Digital Products</li>\r\n<li>Customer Personalized Products - upload text for embroidery, monogramming, etc.</li>\r\n<li>Tax Rates per location, customer group and product type</li>\r\n<li>Attribute Sets for quick product creation of different item types</li>\r\n<li>Create Store-specific attributes on the fly</li>\r\n<li>Media Manager with automatic image resizing and watermarking</li>\r\n<li>Advanced Pricing Rules and support for Special Prices (see marketing tools)</li>\r\n<li>Search Results rewrites and redirects</li>\r\n<li>Approve, Edit and Delete Product Tags</li>\r\n<li>Approve, Edit and Delete Product Reviews</li>\r\n<li>RSS feed for Low Inventory Alerts</li>\r\n<li>Customer Personalized Products - Upload text for embroidery, monogramming, etc. (this one is already there, but want to have the following shown after it)</li>\r\n<li>Customer Personalized Products – Upload Image</li>\r\n<li>Customer Personalized Products – Select Date/Time options for products</li>\r\n<li>Customer Sorting – Define Attributes for Customer Sorting on category (price, brand, etc.)</li>\r\n			</ul>\r\n[/bullet_list]\r\n<h3>Catalog Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Layered / Faceted Navigation for filtering of products in categories</li>\r\n<li>Layered / Faceted Navigation for filtering of products in search results</li>\r\n<li>Flat Catalog Module for Improved Performance with large catalogs</li>\r\n<li>Static Block tool to create category landing pages</li>\r\n<li>Ability to assign designs on category and product level (unique design per product/category)</li>\r\n<li>Configurable search with auto-suggested terms</li>\r\n<li>Recently viewed products</li>\r\n<li>Product comparisons</li>\r\n<li>Recently compared products</li>\r\n<li>Cross-sells, Up-sells and Related Items</li>\r\n<li>Popular Search Terms Cloud</li>\r\n<li>Filter by Product Tags</li>\r\n<li>Product Reviews</li>\r\n<li>Product listing in grid or list format</li>\r\n<li>Breadcrumbs</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Product Browsing\"]\r\n<h3>Product Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Multiple Images Per Product</li>\r\n<li>Product Image Zoom-in Capability</li>\r\n<li>Product Reviews</li>\r\n<li>Related Products</li>\r\n<li>Stock Availability</li>\r\n<li>Multi-Tier Pricing Upsell</li>\r\n<li>Product Option Selection</li>\r\n<li>Grouped Products View</li>\r\n<li>Add to Wishlist</li>\r\n<li>Send to a Friend with Email</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]-->\r\n\r\n\r\n\r\n\r\n','eCommerce WebShop Lite','','inherit','closed','closed','','156-revision-37','','','2011-09-02 11:53:20','2011-09-02 11:53:20','',156,'http://bestecommerce-uk.com/2011/09/156-revision-37/',0,'revision','',0),(353,1,'2011-09-02 11:51:44','2011-09-02 11:51:44','<h1>Contact Us</h1>[contact_form]','Contact Form','','inherit','closed','closed','','53-revision-4','','','2011-09-02 11:51:44','2011-09-02 11:51:44','',53,'http://bestecommerce-uk.com/2011/09/53-revision-4/',0,'revision','',0),(354,1,'2011-09-02 12:02:59','2011-09-02 12:02:59','<h1>Contact Us</h1>[contact_form]','Contact Form','','inherit','closed','closed','','53-revision-5','','','2011-09-02 12:02:59','2011-09-02 12:02:59','',53,'http://bestecommerce-uk.com/2011/09/53-revision-5/',0,'revision','',0),(356,1,'2011-09-02 12:41:33','2011-09-02 12:41:33','[si-contact-form form=\'2\']','Contact Form','','publish','closed','closed','','contact-form-2','','','2011-11-25 13:51:33','2011-11-25 13:51:33','',0,'http://bestecommerce-uk.com/?page_id=356',0,'page','',0),(355,1,'2011-09-02 12:39:53','2011-09-02 12:39:53','<h1>Contact Us</h1>[si-contact-form form=\'1\']','Contact Form','','inherit','closed','closed','','53-revision-6','','','2011-09-02 12:39:53','2011-09-02 12:39:53','',53,'http://bestecommerce-uk.com/2011/09/53-revision-6/',0,'revision','',0),(357,1,'2011-09-02 12:41:21','2011-09-02 12:41:21','','Contact Form','','inherit','closed','closed','','356-revision','','','2011-09-02 12:41:21','2011-09-02 12:41:21','',356,'http://bestecommerce-uk.com/2011/09/356-revision/',0,'revision','',0),(358,1,'2011-09-02 12:40:36','2011-09-02 12:40:36','<h1>Contact Us</h1>[contact_form]','Contact Form','','inherit','closed','closed','','53-revision-7','','','2011-09-02 12:40:36','2011-09-02 12:40:36','',53,'http://bestecommerce-uk.com/2011/09/53-revision-7/',0,'revision','',0),(359,1,'2011-06-30 11:50:15','2011-06-30 11:50:15','\r\n\r\n','Contact Us','','inherit','closed','closed','','30-revision-18','','','2011-06-30 11:50:15','2011-06-30 11:50:15','',30,'http://bestecommerce-uk.com/2011/06/30-revision-18/',0,'revision','',0),(360,1,'2011-09-02 12:41:33','2011-09-02 12:41:33','[si-contact-form form=\'1\']','Contact Form','','inherit','closed','closed','','356-revision-2','','','2011-09-02 12:41:33','2011-09-02 12:41:33','',356,'http://bestecommerce-uk.com/2011/09/356-revision-2/',0,'revision','',0),(361,1,'2011-09-02 12:44:13','2011-09-02 12:44:13','[si-contact-form form=\'1\']','Contact Form','','inherit','closed','closed','','356-revision-3','','','2011-09-02 12:44:13','2011-09-02 12:44:13','',356,'http://bestecommerce-uk.com/2011/09/356-revision-3/',0,'revision','',0),(362,1,'2011-09-02 12:45:02','2011-09-02 12:45:02','[si-contact-form form=\'1\']','Contact Form','','inherit','closed','closed','','356-revision-4','','','2011-09-02 12:45:02','2011-09-02 12:45:02','',356,'http://bestecommerce-uk.com/2011/09/356-revision-4/',0,'revision','',0),(363,1,'2011-09-02 12:45:21','2011-09-02 12:45:21','[si-contact-form form=\'1\']','Contact Form','','inherit','closed','closed','','356-revision-5','','','2011-09-02 12:45:21','2011-09-02 12:45:21','',356,'http://bestecommerce-uk.com/2011/09/356-revision-5/',0,'revision','',0),(364,1,'2011-09-02 11:53:54','2011-09-02 11:53:54','<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>Our entry level product for the SME\'s and growing companies, WebShop 3.0 Lite provides a high level of function across the board.</p><p>Supporting advanced functions such as cross-selling and up-selling, as well as product attributes for size or colour variations, the system is well suited to small businesses selling on-line. </p>\r\n\r\n<h3>Key Features</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\r\n<li>Administration of permissions, system roles and users</li>\r\n<li>Web Services API for easy integration with third-party applications</li>\r\n<li>Fully 100% customizable design using templates, or bespoke design</li>\r\n<li>Support for Customer Groups</li>\r\n<li>Content Management System for General or Site Information Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n\r\n<h2>£999 + £60/month   </h2>\r\n<p>If you as interested in this product please use the button below to complete a contact form our call us to discuss your requirements.<p/>\r\n<a href=\"/contact-us\" class=\"btn impactBtn\"><span>Contact Us</span></a><br /><br /><br />\r\n[button_link url=\"webshop-3-0-feature-list\" style=\"medium blue\"]View Webshop 3.0 functionality[/button_link]\r\n[button_link url=\"http://www.webdesign-uk.org/webshop-3-0-feature-list/\" style=\"medium blue\"]Webshop 3.0 functionality.pdf[/button_link]<br /><br /><br />\r\n\r\n\r\n\r\n</div></div>\r\n\r\n\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n\r\n</div></div>\r\n\r\n\r\n<!--[tabs]\r\n	[tab title=\"Site Management\"]\r\n<h3>Site Management</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\r\n<li>Administration of permissions, system roles and users</li>\r\n<li>Web Services API for easy integration between Magento and any third-party application</li>\r\n<li>Fully 100% customizable design using templates</li>\r\n<li>Customer Groups</li>\r\n<li>One-Click Upgrades</li>\r\n<li>Content Management System for Informational Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n<h3>Analytics and reporting</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n <li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"SEO, Marketing Promotions and Tools\"]\r\n<h3>Search Engine Optimisation</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>100% Search Engine Friendly</li>\r\n<li>Google Site Map</li>\r\n<li>Search Engine Friendly URL’s</li>\r\n<li>URL Rewrites give full control of URL’s</li>\r\n<li>Meta-information for products and categories</li>\r\n<li>Auto-generated Site Map for display on site</li>\r\n<li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Marketing Promotions and Tools</h3>\r\n	<ul>\r\n<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n<h3>Orders</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n<h3>Checkout, Payment and Shipping</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Cheques/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\n<li>Shopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Customer\"]\r\n<h3>Customer Service</h3> \r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Contact Us form</li>\r\n<li>Feature-rich Customer Accounts</li>\r\n<li>Order History with Status Updates</li>\r\n<li>Order Tracking from Account</li>\r\n<li>Password Reset email from front-end and admin panel</li>\r\n<li>Order and Account Update Emails</li>\r\n<li>Customizable Order Emails</li>\r\n<li>Create and Edit Orders from the Admin Panel</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Customer Accounts</h3> \r\n	<ul>\r\n		<li>Order status and history</li>\r\n<li>Re-orders from account</li>\r\n<li>Recently ordered items</li>\r\n<li>Address Book with unlimited addresses</li>\r\n<li>Default Billing and Shipping addresses</li>\r\n<li>Wishlist with ability to add comments</li>\r\n<li>Email or Send RSS feed of Wishlist</li>\r\n<li>Newsletter Subscription management</li>\r\n<li>Product Reviews submitted</li>\r\n<li>Product Tags submitted</li>\r\n<li>Downloadable/Digital Products<li>\r\n<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Management & Browsing\"]\r\n<h3>Catalog Management</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Inventory Management with Backordered items, Minimum and Maximum quantities</li>\r\n<li>Batch Import and Export of catalog</li>\r\n<li>Batch Updates to products in admin panel</li>\r\n<li>Google Base Integration</li>\r\n<li>Simple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products</li>\r\n<li>Virtual Products</li>\r\n<li>Downloadable/Digital Products</li>\r\n<li>Customer Personalized Products - upload text for embroidery, monogramming, etc.</li>\r\n<li>Tax Rates per location, customer group and product type</li>\r\n<li>Attribute Sets for quick product creation of different item types</li>\r\n<li>Create Store-specific attributes on the fly</li>\r\n<li>Media Manager with automatic image resizing and watermarking</li>\r\n<li>Advanced Pricing Rules and support for Special Prices (see marketing tools)</li>\r\n<li>Search Results rewrites and redirects</li>\r\n<li>Approve, Edit and Delete Product Tags</li>\r\n<li>Approve, Edit and Delete Product Reviews</li>\r\n<li>RSS feed for Low Inventory Alerts</li>\r\n<li>Customer Personalized Products - Upload text for embroidery, monogramming, etc. (this one is already there, but want to have the following shown after it)</li>\r\n<li>Customer Personalized Products – Upload Image</li>\r\n<li>Customer Personalized Products – Select Date/Time options for products</li>\r\n<li>Customer Sorting – Define Attributes for Customer Sorting on category (price, brand, etc.)</li>\r\n			</ul>\r\n[/bullet_list]\r\n<h3>Catalog Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Layered / Faceted Navigation for filtering of products in categories</li>\r\n<li>Layered / Faceted Navigation for filtering of products in search results</li>\r\n<li>Flat Catalog Module for Improved Performance with large catalogs</li>\r\n<li>Static Block tool to create category landing pages</li>\r\n<li>Ability to assign designs on category and product level (unique design per product/category)</li>\r\n<li>Configurable search with auto-suggested terms</li>\r\n<li>Recently viewed products</li>\r\n<li>Product comparisons</li>\r\n<li>Recently compared products</li>\r\n<li>Cross-sells, Up-sells and Related Items</li>\r\n<li>Popular Search Terms Cloud</li>\r\n<li>Filter by Product Tags</li>\r\n<li>Product Reviews</li>\r\n<li>Product listing in grid or list format</li>\r\n<li>Breadcrumbs</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Product Browsing\"]\r\n<h3>Product Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Multiple Images Per Product</li>\r\n<li>Product Image Zoom-in Capability</li>\r\n<li>Product Reviews</li>\r\n<li>Related Products</li>\r\n<li>Stock Availability</li>\r\n<li>Multi-Tier Pricing Upsell</li>\r\n<li>Product Option Selection</li>\r\n<li>Grouped Products View</li>\r\n<li>Add to Wishlist</li>\r\n<li>Send to a Friend with Email</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]-->\r\n\r\n\r\n\r\n\r\n','eCommerce WebShop Lite','','inherit','closed','closed','','156-revision-38','','','2011-09-02 11:53:54','2011-09-02 11:53:54','',156,'http://bestecommerce-uk.com/2011/09/156-revision-38/',0,'revision','',0),(365,1,'2011-09-02 14:41:57','2011-09-02 14:41:57','<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>Our entry level product for the SME\'s and growing companies, WebShop 3.0 Lite provides a high level of function across the board.</p><p>Supporting advanced functions such as cross-selling and up-selling, as well as product attributes for size or colour variations, the system is well suited to small businesses selling on-line. </p>\r\n\r\n<h3>Key Features</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\r\n<li>Administration of permissions, system roles and users</li>\r\n<li>Web Services API for easy integration with third-party applications</li>\r\n<li>Fully 100% customizable design using templates, or bespoke design</li>\r\n<li>Support for Customer Groups</li>\r\n<li>Content Management System for General or Site Information Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n\r\n<h2>£999 + £60/month   </h2>\r\n<p>If you as interested in this product please use the button below to complete a contact form our call us to discuss your requirements.<p/>\r\n<a href=\"/contact-form class=\"btn impactBtn\"><span>Contact Us</span></a><br /><br /><br />\r\n[button_link url=\"webshop-3-0-feature-list\" style=\"medium blue\"]View Webshop 3.0 functionality[/button_link]\r\n[button_link url=\"http://www.webdesign-uk.org/webshop-3-0-feature-list/\" style=\"medium blue\"]Webshop 3.0 functionality.pdf[/button_link]<br /><br /><br />\r\n\r\n\r\n\r\n</div></div>\r\n\r\n\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n\r\n</div></div>\r\n\r\n\r\n<!--[tabs]\r\n	[tab title=\"Site Management\"]\r\n<h3>Site Management</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\r\n<li>Administration of permissions, system roles and users</li>\r\n<li>Web Services API for easy integration between Magento and any third-party application</li>\r\n<li>Fully 100% customizable design using templates</li>\r\n<li>Customer Groups</li>\r\n<li>One-Click Upgrades</li>\r\n<li>Content Management System for Informational Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n<h3>Analytics and reporting</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n <li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"SEO, Marketing Promotions and Tools\"]\r\n<h3>Search Engine Optimisation</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>100% Search Engine Friendly</li>\r\n<li>Google Site Map</li>\r\n<li>Search Engine Friendly URL’s</li>\r\n<li>URL Rewrites give full control of URL’s</li>\r\n<li>Meta-information for products and categories</li>\r\n<li>Auto-generated Site Map for display on site</li>\r\n<li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Marketing Promotions and Tools</h3>\r\n	<ul>\r\n<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n<h3>Orders</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n<h3>Checkout, Payment and Shipping</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Cheques/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\n<li>Shopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Customer\"]\r\n<h3>Customer Service</h3> \r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Contact Us form</li>\r\n<li>Feature-rich Customer Accounts</li>\r\n<li>Order History with Status Updates</li>\r\n<li>Order Tracking from Account</li>\r\n<li>Password Reset email from front-end and admin panel</li>\r\n<li>Order and Account Update Emails</li>\r\n<li>Customizable Order Emails</li>\r\n<li>Create and Edit Orders from the Admin Panel</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Customer Accounts</h3> \r\n	<ul>\r\n		<li>Order status and history</li>\r\n<li>Re-orders from account</li>\r\n<li>Recently ordered items</li>\r\n<li>Address Book with unlimited addresses</li>\r\n<li>Default Billing and Shipping addresses</li>\r\n<li>Wishlist with ability to add comments</li>\r\n<li>Email or Send RSS feed of Wishlist</li>\r\n<li>Newsletter Subscription management</li>\r\n<li>Product Reviews submitted</li>\r\n<li>Product Tags submitted</li>\r\n<li>Downloadable/Digital Products<li>\r\n<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Management & Browsing\"]\r\n<h3>Catalog Management</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Inventory Management with Backordered items, Minimum and Maximum quantities</li>\r\n<li>Batch Import and Export of catalog</li>\r\n<li>Batch Updates to products in admin panel</li>\r\n<li>Google Base Integration</li>\r\n<li>Simple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products</li>\r\n<li>Virtual Products</li>\r\n<li>Downloadable/Digital Products</li>\r\n<li>Customer Personalized Products - upload text for embroidery, monogramming, etc.</li>\r\n<li>Tax Rates per location, customer group and product type</li>\r\n<li>Attribute Sets for quick product creation of different item types</li>\r\n<li>Create Store-specific attributes on the fly</li>\r\n<li>Media Manager with automatic image resizing and watermarking</li>\r\n<li>Advanced Pricing Rules and support for Special Prices (see marketing tools)</li>\r\n<li>Search Results rewrites and redirects</li>\r\n<li>Approve, Edit and Delete Product Tags</li>\r\n<li>Approve, Edit and Delete Product Reviews</li>\r\n<li>RSS feed for Low Inventory Alerts</li>\r\n<li>Customer Personalized Products - Upload text for embroidery, monogramming, etc. (this one is already there, but want to have the following shown after it)</li>\r\n<li>Customer Personalized Products – Upload Image</li>\r\n<li>Customer Personalized Products – Select Date/Time options for products</li>\r\n<li>Customer Sorting – Define Attributes for Customer Sorting on category (price, brand, etc.)</li>\r\n			</ul>\r\n[/bullet_list]\r\n<h3>Catalog Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Layered / Faceted Navigation for filtering of products in categories</li>\r\n<li>Layered / Faceted Navigation for filtering of products in search results</li>\r\n<li>Flat Catalog Module for Improved Performance with large catalogs</li>\r\n<li>Static Block tool to create category landing pages</li>\r\n<li>Ability to assign designs on category and product level (unique design per product/category)</li>\r\n<li>Configurable search with auto-suggested terms</li>\r\n<li>Recently viewed products</li>\r\n<li>Product comparisons</li>\r\n<li>Recently compared products</li>\r\n<li>Cross-sells, Up-sells and Related Items</li>\r\n<li>Popular Search Terms Cloud</li>\r\n<li>Filter by Product Tags</li>\r\n<li>Product Reviews</li>\r\n<li>Product listing in grid or list format</li>\r\n<li>Breadcrumbs</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Product Browsing\"]\r\n<h3>Product Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Multiple Images Per Product</li>\r\n<li>Product Image Zoom-in Capability</li>\r\n<li>Product Reviews</li>\r\n<li>Related Products</li>\r\n<li>Stock Availability</li>\r\n<li>Multi-Tier Pricing Upsell</li>\r\n<li>Product Option Selection</li>\r\n<li>Grouped Products View</li>\r\n<li>Add to Wishlist</li>\r\n<li>Send to a Friend with Email</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]-->\r\n\r\n\r\n\r\n\r\n','eCommerce WebShop Lite','','inherit','closed','closed','','156-revision-39','','','2011-09-02 14:41:57','2011-09-02 14:41:57','',156,'http://bestecommerce-uk.com/2011/09/156-revision-39/',0,'revision','',0),(366,1,'2011-09-02 14:44:08','2011-09-02 14:44:08','<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>Our entry level product for the SME\'s and growing companies, WebShop 3.0 Lite provides a high level of function across the board.</p><p>Supporting advanced functions such as cross-selling and up-selling, as well as product attributes for size or colour variations, the system is well suited to small businesses selling on-line. </p>\r\n\r\n<h3>Key Features</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\r\n<li>Administration of permissions, system roles and users</li>\r\n<li>Web Services API for easy integration with third-party applications</li>\r\n<li>Fully 100% customizable design using templates, or bespoke design</li>\r\n<li>Support for Customer Groups</li>\r\n<li>Content Management System for General or Site Information Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n\r\n<h2>£999 + £60/month   </h2>\r\n<p>If you as interested in this product please use the button below to complete a contact form our call us to discuss your requirements.<p/>\r\n<a href=\"/contact-form\" class=\"btn impactBtn\"><span>Contact Us</span></a><br /><br /><br />\r\n[button_link url=\"webshop-3-0-feature-list\" style=\"medium blue\"]View Webshop 3.0 functionality[/button_link]\r\n[button_link url=\"http://www.webdesign-uk.org/webshop-3-0-feature-list/\" style=\"medium blue\"]Webshop 3.0 functionality.pdf[/button_link]<br /><br /><br />\r\n\r\n\r\n\r\n</div></div>\r\n\r\n\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n\r\n</div></div>\r\n\r\n\r\n<!--[tabs]\r\n	[tab title=\"Site Management\"]\r\n<h3>Site Management</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\r\n<li>Administration of permissions, system roles and users</li>\r\n<li>Web Services API for easy integration between Magento and any third-party application</li>\r\n<li>Fully 100% customizable design using templates</li>\r\n<li>Customer Groups</li>\r\n<li>One-Click Upgrades</li>\r\n<li>Content Management System for Informational Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n<h3>Analytics and reporting</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n <li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"SEO, Marketing Promotions and Tools\"]\r\n<h3>Search Engine Optimisation</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>100% Search Engine Friendly</li>\r\n<li>Google Site Map</li>\r\n<li>Search Engine Friendly URL’s</li>\r\n<li>URL Rewrites give full control of URL’s</li>\r\n<li>Meta-information for products and categories</li>\r\n<li>Auto-generated Site Map for display on site</li>\r\n<li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Marketing Promotions and Tools</h3>\r\n	<ul>\r\n<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n<h3>Orders</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n<h3>Checkout, Payment and Shipping</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Cheques/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\n<li>Shopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Customer\"]\r\n<h3>Customer Service</h3> \r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Contact Us form</li>\r\n<li>Feature-rich Customer Accounts</li>\r\n<li>Order History with Status Updates</li>\r\n<li>Order Tracking from Account</li>\r\n<li>Password Reset email from front-end and admin panel</li>\r\n<li>Order and Account Update Emails</li>\r\n<li>Customizable Order Emails</li>\r\n<li>Create and Edit Orders from the Admin Panel</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Customer Accounts</h3> \r\n	<ul>\r\n		<li>Order status and history</li>\r\n<li>Re-orders from account</li>\r\n<li>Recently ordered items</li>\r\n<li>Address Book with unlimited addresses</li>\r\n<li>Default Billing and Shipping addresses</li>\r\n<li>Wishlist with ability to add comments</li>\r\n<li>Email or Send RSS feed of Wishlist</li>\r\n<li>Newsletter Subscription management</li>\r\n<li>Product Reviews submitted</li>\r\n<li>Product Tags submitted</li>\r\n<li>Downloadable/Digital Products<li>\r\n<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Management & Browsing\"]\r\n<h3>Catalog Management</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Inventory Management with Backordered items, Minimum and Maximum quantities</li>\r\n<li>Batch Import and Export of catalog</li>\r\n<li>Batch Updates to products in admin panel</li>\r\n<li>Google Base Integration</li>\r\n<li>Simple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products</li>\r\n<li>Virtual Products</li>\r\n<li>Downloadable/Digital Products</li>\r\n<li>Customer Personalized Products - upload text for embroidery, monogramming, etc.</li>\r\n<li>Tax Rates per location, customer group and product type</li>\r\n<li>Attribute Sets for quick product creation of different item types</li>\r\n<li>Create Store-specific attributes on the fly</li>\r\n<li>Media Manager with automatic image resizing and watermarking</li>\r\n<li>Advanced Pricing Rules and support for Special Prices (see marketing tools)</li>\r\n<li>Search Results rewrites and redirects</li>\r\n<li>Approve, Edit and Delete Product Tags</li>\r\n<li>Approve, Edit and Delete Product Reviews</li>\r\n<li>RSS feed for Low Inventory Alerts</li>\r\n<li>Customer Personalized Products - Upload text for embroidery, monogramming, etc. (this one is already there, but want to have the following shown after it)</li>\r\n<li>Customer Personalized Products – Upload Image</li>\r\n<li>Customer Personalized Products – Select Date/Time options for products</li>\r\n<li>Customer Sorting – Define Attributes for Customer Sorting on category (price, brand, etc.)</li>\r\n			</ul>\r\n[/bullet_list]\r\n<h3>Catalog Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Layered / Faceted Navigation for filtering of products in categories</li>\r\n<li>Layered / Faceted Navigation for filtering of products in search results</li>\r\n<li>Flat Catalog Module for Improved Performance with large catalogs</li>\r\n<li>Static Block tool to create category landing pages</li>\r\n<li>Ability to assign designs on category and product level (unique design per product/category)</li>\r\n<li>Configurable search with auto-suggested terms</li>\r\n<li>Recently viewed products</li>\r\n<li>Product comparisons</li>\r\n<li>Recently compared products</li>\r\n<li>Cross-sells, Up-sells and Related Items</li>\r\n<li>Popular Search Terms Cloud</li>\r\n<li>Filter by Product Tags</li>\r\n<li>Product Reviews</li>\r\n<li>Product listing in grid or list format</li>\r\n<li>Breadcrumbs</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Product Browsing\"]\r\n<h3>Product Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Multiple Images Per Product</li>\r\n<li>Product Image Zoom-in Capability</li>\r\n<li>Product Reviews</li>\r\n<li>Related Products</li>\r\n<li>Stock Availability</li>\r\n<li>Multi-Tier Pricing Upsell</li>\r\n<li>Product Option Selection</li>\r\n<li>Grouped Products View</li>\r\n<li>Add to Wishlist</li>\r\n<li>Send to a Friend with Email</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]-->\r\n\r\n\r\n\r\n\r\n','eCommerce WebShop Lite','','inherit','closed','closed','','156-revision-40','','','2011-09-02 14:44:08','2011-09-02 14:44:08','',156,'http://bestecommerce-uk.com/2011/09/156-revision-40/',0,'revision','',0),(367,1,'2011-09-02 14:44:29','2011-09-02 14:44:29','<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>Our entry level product for the SME\'s and growing companies, WebShop 3.0 Lite provides a high level of function across the board.</p><p>Supporting advanced functions such as cross-selling and up-selling, as well as product attributes for size or colour variations, the system is well suited to small businesses selling on-line. </p>\r\n\r\n<h3>Key Features</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\r\n<li>Administration of permissions, system roles and users</li>\r\n<li>Web Services API for easy integration with third-party applications</li>\r\n<li>Fully 100% customizable design using templates, or bespoke design</li>\r\n<li>Support for Customer Groups</li>\r\n<li>Content Management System for General or Site Information Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n\r\n<h2>£999 + £60/month   </h2>\r\n<p>If you as interested in this product please use the button below to complete a contact form our call us to discuss your requirements.<p/>\r\n<a href=\"/contact-form\" class=\"btn impactBtn\"><span>Contact Form</span></a><br /><br /><br />\r\n[button_link url=\"webshop-3-0-feature-list\" style=\"medium blue\"]View Webshop 3.0 functionality[/button_link]\r\n[button_link url=\"http://www.webdesign-uk.org/webshop-3-0-feature-list/\" style=\"medium blue\"]Webshop 3.0 functionality.pdf[/button_link]<br /><br /><br />\r\n\r\n\r\n\r\n</div></div>\r\n\r\n\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n\r\n</div></div>\r\n\r\n\r\n<!--[tabs]\r\n	[tab title=\"Site Management\"]\r\n<h3>Site Management</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\r\n<li>Administration of permissions, system roles and users</li>\r\n<li>Web Services API for easy integration between Magento and any third-party application</li>\r\n<li>Fully 100% customizable design using templates</li>\r\n<li>Customer Groups</li>\r\n<li>One-Click Upgrades</li>\r\n<li>Content Management System for Informational Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n<h3>Analytics and reporting</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n <li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"SEO, Marketing Promotions and Tools\"]\r\n<h3>Search Engine Optimisation</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>100% Search Engine Friendly</li>\r\n<li>Google Site Map</li>\r\n<li>Search Engine Friendly URL’s</li>\r\n<li>URL Rewrites give full control of URL’s</li>\r\n<li>Meta-information for products and categories</li>\r\n<li>Auto-generated Site Map for display on site</li>\r\n<li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Marketing Promotions and Tools</h3>\r\n	<ul>\r\n<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n<h3>Orders</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n<h3>Checkout, Payment and Shipping</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Cheques/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\n<li>Shopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Customer\"]\r\n<h3>Customer Service</h3> \r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Contact Us form</li>\r\n<li>Feature-rich Customer Accounts</li>\r\n<li>Order History with Status Updates</li>\r\n<li>Order Tracking from Account</li>\r\n<li>Password Reset email from front-end and admin panel</li>\r\n<li>Order and Account Update Emails</li>\r\n<li>Customizable Order Emails</li>\r\n<li>Create and Edit Orders from the Admin Panel</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Customer Accounts</h3> \r\n	<ul>\r\n		<li>Order status and history</li>\r\n<li>Re-orders from account</li>\r\n<li>Recently ordered items</li>\r\n<li>Address Book with unlimited addresses</li>\r\n<li>Default Billing and Shipping addresses</li>\r\n<li>Wishlist with ability to add comments</li>\r\n<li>Email or Send RSS feed of Wishlist</li>\r\n<li>Newsletter Subscription management</li>\r\n<li>Product Reviews submitted</li>\r\n<li>Product Tags submitted</li>\r\n<li>Downloadable/Digital Products<li>\r\n<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Management & Browsing\"]\r\n<h3>Catalog Management</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Inventory Management with Backordered items, Minimum and Maximum quantities</li>\r\n<li>Batch Import and Export of catalog</li>\r\n<li>Batch Updates to products in admin panel</li>\r\n<li>Google Base Integration</li>\r\n<li>Simple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products</li>\r\n<li>Virtual Products</li>\r\n<li>Downloadable/Digital Products</li>\r\n<li>Customer Personalized Products - upload text for embroidery, monogramming, etc.</li>\r\n<li>Tax Rates per location, customer group and product type</li>\r\n<li>Attribute Sets for quick product creation of different item types</li>\r\n<li>Create Store-specific attributes on the fly</li>\r\n<li>Media Manager with automatic image resizing and watermarking</li>\r\n<li>Advanced Pricing Rules and support for Special Prices (see marketing tools)</li>\r\n<li>Search Results rewrites and redirects</li>\r\n<li>Approve, Edit and Delete Product Tags</li>\r\n<li>Approve, Edit and Delete Product Reviews</li>\r\n<li>RSS feed for Low Inventory Alerts</li>\r\n<li>Customer Personalized Products - Upload text for embroidery, monogramming, etc. (this one is already there, but want to have the following shown after it)</li>\r\n<li>Customer Personalized Products – Upload Image</li>\r\n<li>Customer Personalized Products – Select Date/Time options for products</li>\r\n<li>Customer Sorting – Define Attributes for Customer Sorting on category (price, brand, etc.)</li>\r\n			</ul>\r\n[/bullet_list]\r\n<h3>Catalog Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Layered / Faceted Navigation for filtering of products in categories</li>\r\n<li>Layered / Faceted Navigation for filtering of products in search results</li>\r\n<li>Flat Catalog Module for Improved Performance with large catalogs</li>\r\n<li>Static Block tool to create category landing pages</li>\r\n<li>Ability to assign designs on category and product level (unique design per product/category)</li>\r\n<li>Configurable search with auto-suggested terms</li>\r\n<li>Recently viewed products</li>\r\n<li>Product comparisons</li>\r\n<li>Recently compared products</li>\r\n<li>Cross-sells, Up-sells and Related Items</li>\r\n<li>Popular Search Terms Cloud</li>\r\n<li>Filter by Product Tags</li>\r\n<li>Product Reviews</li>\r\n<li>Product listing in grid or list format</li>\r\n<li>Breadcrumbs</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Product Browsing\"]\r\n<h3>Product Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Multiple Images Per Product</li>\r\n<li>Product Image Zoom-in Capability</li>\r\n<li>Product Reviews</li>\r\n<li>Related Products</li>\r\n<li>Stock Availability</li>\r\n<li>Multi-Tier Pricing Upsell</li>\r\n<li>Product Option Selection</li>\r\n<li>Grouped Products View</li>\r\n<li>Add to Wishlist</li>\r\n<li>Send to a Friend with Email</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]-->\r\n\r\n\r\n\r\n\r\n','eCommerce WebShop Lite','','inherit','closed','closed','','156-revision-41','','','2011-09-02 14:44:29','2011-09-02 14:44:29','',156,'http://bestecommerce-uk.com/2011/09/156-revision-41/',0,'revision','',0),(368,1,'2011-09-02 14:47:20','2011-09-02 14:47:20','<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>Our entry level product for the SME\'s and growing companies, WebShop 3.0 Lite provides a high level of function across the board.</p><p>Supporting advanced functions such as cross-selling and up-selling, as well as product attributes for size or colour variations, the system is well suited to small businesses selling on-line. </p>\r\n\r\n<h3>Key Features</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\r\n<li>Administration of permissions, system roles and users</li>\r\n<li>Web Services API for easy integration with third-party applications</li>\r\n<li>Fully 100% customizable design using templates, or bespoke design</li>\r\n<li>Support for Customer Groups</li>\r\n<li>Content Management System for General or Site Information Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n\r\n<h2>£999 + £60/month   </h2>\r\n<p>If you as interested in this product please use the button below to complete a contact form our call us to discuss your requirements.<p/>\r\n<a href=\"/contact-form\" class=\"btn impactBtn\"><span>Contact Form</span></a><br /><br /><br />\r\n[button_link url=\"webshop-3-0-feature-list\" style=\"medium blue\"]View Webshop 3.0 functionality[/button_link]\r\n[button_link url=\"http://www.webdesign-uk.org/webshop-3-0-feature-list/\" style=\"medium blue\"]Webshop 3.0 functionality.pdf[/button_link]<br /><br /><br />\r\n\r\n\r\n\r\n</div></div>\r\n\r\n\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n\r\n</div></div>\r\n\r\n\r\n<!--[tabs]\r\n	[tab title=\"Site Management\"]\r\n<h3>Site Management</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\r\n<li>Administration of permissions, system roles and users</li>\r\n<li>Web Services API for easy integration between Magento and any third-party application</li>\r\n<li>Fully 100% customizable design using templates</li>\r\n<li>Customer Groups</li>\r\n<li>One-Click Upgrades</li>\r\n<li>Content Management System for Informational Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n<h3>Analytics and reporting</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n <li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"SEO, Marketing Promotions and Tools\"]\r\n<h3>Search Engine Optimisation</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>100% Search Engine Friendly</li>\r\n<li>Google Site Map</li>\r\n<li>Search Engine Friendly URL’s</li>\r\n<li>URL Rewrites give full control of URL’s</li>\r\n<li>Meta-information for products and categories</li>\r\n<li>Auto-generated Site Map for display on site</li>\r\n<li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Marketing Promotions and Tools</h3>\r\n	<ul>\r\n<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n<h3>Orders</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n<h3>Checkout, Payment and Shipping</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Cheques/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\n<li>Shopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Customer\"]\r\n<h3>Customer Service</h3> \r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Contact Us form</li>\r\n<li>Feature-rich Customer Accounts</li>\r\n<li>Order History with Status Updates</li>\r\n<li>Order Tracking from Account</li>\r\n<li>Password Reset email from front-end and admin panel</li>\r\n<li>Order and Account Update Emails</li>\r\n<li>Customizable Order Emails</li>\r\n<li>Create and Edit Orders from the Admin Panel</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Customer Accounts</h3> \r\n	<ul>\r\n		<li>Order status and history</li>\r\n<li>Re-orders from account</li>\r\n<li>Recently ordered items</li>\r\n<li>Address Book with unlimited addresses</li>\r\n<li>Default Billing and Shipping addresses</li>\r\n<li>Wishlist with ability to add comments</li>\r\n<li>Email or Send RSS feed of Wishlist</li>\r\n<li>Newsletter Subscription management</li>\r\n<li>Product Reviews submitted</li>\r\n<li>Product Tags submitted</li>\r\n<li>Downloadable/Digital Products<li>\r\n<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Management & Browsing\"]\r\n<h3>Catalog Management</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Inventory Management with Backordered items, Minimum and Maximum quantities</li>\r\n<li>Batch Import and Export of catalog</li>\r\n<li>Batch Updates to products in admin panel</li>\r\n<li>Google Base Integration</li>\r\n<li>Simple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products</li>\r\n<li>Virtual Products</li>\r\n<li>Downloadable/Digital Products</li>\r\n<li>Customer Personalized Products - upload text for embroidery, monogramming, etc.</li>\r\n<li>Tax Rates per location, customer group and product type</li>\r\n<li>Attribute Sets for quick product creation of different item types</li>\r\n<li>Create Store-specific attributes on the fly</li>\r\n<li>Media Manager with automatic image resizing and watermarking</li>\r\n<li>Advanced Pricing Rules and support for Special Prices (see marketing tools)</li>\r\n<li>Search Results rewrites and redirects</li>\r\n<li>Approve, Edit and Delete Product Tags</li>\r\n<li>Approve, Edit and Delete Product Reviews</li>\r\n<li>RSS feed for Low Inventory Alerts</li>\r\n<li>Customer Personalized Products - Upload text for embroidery, monogramming, etc. (this one is already there, but want to have the following shown after it)</li>\r\n<li>Customer Personalized Products – Upload Image</li>\r\n<li>Customer Personalized Products – Select Date/Time options for products</li>\r\n<li>Customer Sorting – Define Attributes for Customer Sorting on category (price, brand, etc.)</li>\r\n			</ul>\r\n[/bullet_list]\r\n<h3>Catalog Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Layered / Faceted Navigation for filtering of products in categories</li>\r\n<li>Layered / Faceted Navigation for filtering of products in search results</li>\r\n<li>Flat Catalog Module for Improved Performance with large catalogs</li>\r\n<li>Static Block tool to create category landing pages</li>\r\n<li>Ability to assign designs on category and product level (unique design per product/category)</li>\r\n<li>Configurable search with auto-suggested terms</li>\r\n<li>Recently viewed products</li>\r\n<li>Product comparisons</li>\r\n<li>Recently compared products</li>\r\n<li>Cross-sells, Up-sells and Related Items</li>\r\n<li>Popular Search Terms Cloud</li>\r\n<li>Filter by Product Tags</li>\r\n<li>Product Reviews</li>\r\n<li>Product listing in grid or list format</li>\r\n<li>Breadcrumbs</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Product Browsing\"]\r\n<h3>Product Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Multiple Images Per Product</li>\r\n<li>Product Image Zoom-in Capability</li>\r\n<li>Product Reviews</li>\r\n<li>Related Products</li>\r\n<li>Stock Availability</li>\r\n<li>Multi-Tier Pricing Upsell</li>\r\n<li>Product Option Selection</li>\r\n<li>Grouped Products View</li>\r\n<li>Add to Wishlist</li>\r\n<li>Send to a Friend with Email</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]-->\r\n\r\n\r\n\r\n\r\n','eCommerce WebShop Lite','','inherit','closed','closed','','156-revision-42','','','2011-09-02 14:47:20','2011-09-02 14:47:20','',156,'http://bestecommerce-uk.com/2011/09/156-revision-42/',0,'revision','',0),(369,1,'2011-09-05 08:12:04','2011-09-05 08:12:04','<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>Our entry level product for the SME\'s and growing companies, WebShop 3.0 Lite provides a high level of function across the board.</p><p>Supporting advanced functions such as cross-selling and up-selling, as well as product attributes for size or colour variations, the system is well suited to small businesses selling on-line. </p>\r\n\r\n<h3>Key Features</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\r\n<li>Administration of permissions, system roles and users</li>\r\n<li>Web Services API for easy integration with third-party applications</li>\r\n<li>Fully 100% customizable design using templates, or bespoke design</li>\r\n<li>Support for Customer Groups</li>\r\n<li>Content Management System for General or Site Information Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n\r\n<h2>£999 + £60/month   </h2>\r\n<p>If you as interested in this product please use the button below to complete a contact form our call us to discuss your requirements.<p/>\r\n<a href=\"/contact-form-2\" class=\"btn impactBtn\"><span>Contact Form</span></a><br /><br /><br />\r\n[button_link url=\"webshop-3-0-feature-list\" style=\"medium blue\"]View Webshop 3.0 functionality[/button_link]\r\n[button_link url=\"http://www.webdesign-uk.org/webshop-3-0-feature-list/\" style=\"medium blue\"]Webshop 3.0 functionality.pdf[/button_link]<br /><br /><br />\r\n\r\n\r\n\r\n</div></div>\r\n\r\n\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n\r\n</div></div>\r\n\r\n\r\n<!--[tabs]\r\n	[tab title=\"Site Management\"]\r\n<h3>Site Management</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\r\n<li>Administration of permissions, system roles and users</li>\r\n<li>Web Services API for easy integration between Magento and any third-party application</li>\r\n<li>Fully 100% customizable design using templates</li>\r\n<li>Customer Groups</li>\r\n<li>One-Click Upgrades</li>\r\n<li>Content Management System for Informational Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n<h3>Analytics and reporting</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n <li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"SEO, Marketing Promotions and Tools\"]\r\n<h3>Search Engine Optimisation</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>100% Search Engine Friendly</li>\r\n<li>Google Site Map</li>\r\n<li>Search Engine Friendly URL’s</li>\r\n<li>URL Rewrites give full control of URL’s</li>\r\n<li>Meta-information for products and categories</li>\r\n<li>Auto-generated Site Map for display on site</li>\r\n<li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Marketing Promotions and Tools</h3>\r\n	<ul>\r\n<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n<h3>Orders</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n<h3>Checkout, Payment and Shipping</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Cheques/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\n<li>Shopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Customer\"]\r\n<h3>Customer Service</h3> \r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Contact Us form</li>\r\n<li>Feature-rich Customer Accounts</li>\r\n<li>Order History with Status Updates</li>\r\n<li>Order Tracking from Account</li>\r\n<li>Password Reset email from front-end and admin panel</li>\r\n<li>Order and Account Update Emails</li>\r\n<li>Customizable Order Emails</li>\r\n<li>Create and Edit Orders from the Admin Panel</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Customer Accounts</h3> \r\n	<ul>\r\n		<li>Order status and history</li>\r\n<li>Re-orders from account</li>\r\n<li>Recently ordered items</li>\r\n<li>Address Book with unlimited addresses</li>\r\n<li>Default Billing and Shipping addresses</li>\r\n<li>Wishlist with ability to add comments</li>\r\n<li>Email or Send RSS feed of Wishlist</li>\r\n<li>Newsletter Subscription management</li>\r\n<li>Product Reviews submitted</li>\r\n<li>Product Tags submitted</li>\r\n<li>Downloadable/Digital Products<li>\r\n<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Management & Browsing\"]\r\n<h3>Catalog Management</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Inventory Management with Backordered items, Minimum and Maximum quantities</li>\r\n<li>Batch Import and Export of catalog</li>\r\n<li>Batch Updates to products in admin panel</li>\r\n<li>Google Base Integration</li>\r\n<li>Simple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products</li>\r\n<li>Virtual Products</li>\r\n<li>Downloadable/Digital Products</li>\r\n<li>Customer Personalized Products - upload text for embroidery, monogramming, etc.</li>\r\n<li>Tax Rates per location, customer group and product type</li>\r\n<li>Attribute Sets for quick product creation of different item types</li>\r\n<li>Create Store-specific attributes on the fly</li>\r\n<li>Media Manager with automatic image resizing and watermarking</li>\r\n<li>Advanced Pricing Rules and support for Special Prices (see marketing tools)</li>\r\n<li>Search Results rewrites and redirects</li>\r\n<li>Approve, Edit and Delete Product Tags</li>\r\n<li>Approve, Edit and Delete Product Reviews</li>\r\n<li>RSS feed for Low Inventory Alerts</li>\r\n<li>Customer Personalized Products - Upload text for embroidery, monogramming, etc. (this one is already there, but want to have the following shown after it)</li>\r\n<li>Customer Personalized Products – Upload Image</li>\r\n<li>Customer Personalized Products – Select Date/Time options for products</li>\r\n<li>Customer Sorting – Define Attributes for Customer Sorting on category (price, brand, etc.)</li>\r\n			</ul>\r\n[/bullet_list]\r\n<h3>Catalog Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Layered / Faceted Navigation for filtering of products in categories</li>\r\n<li>Layered / Faceted Navigation for filtering of products in search results</li>\r\n<li>Flat Catalog Module for Improved Performance with large catalogs</li>\r\n<li>Static Block tool to create category landing pages</li>\r\n<li>Ability to assign designs on category and product level (unique design per product/category)</li>\r\n<li>Configurable search with auto-suggested terms</li>\r\n<li>Recently viewed products</li>\r\n<li>Product comparisons</li>\r\n<li>Recently compared products</li>\r\n<li>Cross-sells, Up-sells and Related Items</li>\r\n<li>Popular Search Terms Cloud</li>\r\n<li>Filter by Product Tags</li>\r\n<li>Product Reviews</li>\r\n<li>Product listing in grid or list format</li>\r\n<li>Breadcrumbs</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Product Browsing\"]\r\n<h3>Product Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Multiple Images Per Product</li>\r\n<li>Product Image Zoom-in Capability</li>\r\n<li>Product Reviews</li>\r\n<li>Related Products</li>\r\n<li>Stock Availability</li>\r\n<li>Multi-Tier Pricing Upsell</li>\r\n<li>Product Option Selection</li>\r\n<li>Grouped Products View</li>\r\n<li>Add to Wishlist</li>\r\n<li>Send to a Friend with Email</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]-->\r\n\r\n\r\n\r\n\r\n','eCommerce WebShop Lite','','inherit','closed','closed','','156-revision-43','','','2011-09-05 08:12:04','2011-09-05 08:12:04','',156,'http://bestecommerce-uk.com/2011/09/156-revision-43/',0,'revision','',0),(370,1,'2011-09-02 14:40:31','2011-09-02 14:40:31','[si-contact-form form=\'2\']','Contact Form','','inherit','closed','closed','','356-revision-6','','','2011-09-02 14:40:31','2011-09-02 14:40:31','',356,'http://bestecommerce-uk.com/2011/09/356-revision-6/',0,'revision','',0),(371,1,'2011-09-05 10:07:50','2011-09-05 10:07:50','[si-contact-form form=\'2\']','Contact Form','','inherit','closed','closed','','356-revision-7','','','2011-09-05 10:07:50','2011-09-05 10:07:50','',356,'http://bestecommerce-uk.com/2011/09/356-revision-7/',0,'revision','',0),(372,1,'2011-09-12 12:57:09','2011-09-12 12:57:09','','Webshop_3.0_features_list','','inherit','closed','closed','','webshop_3-0_features_list','','','2011-09-12 12:57:09','2011-09-12 12:57:09','',0,'http://bestecommerce-uk.com/wp-content/uploads/2011/09/Webshop_3.0_features_list.pdf',0,'attachment','application/pdf',0),(373,1,'2011-09-05 09:15:57','2011-09-05 09:15:57','<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>Our entry level product for the SME\'s and growing companies, WebShop 3.0 Lite provides a high level of function across the board.</p><p>Supporting advanced functions such as cross-selling and up-selling, as well as product attributes for size or colour variations, the system is well suited to small businesses selling on-line. </p>\r\n\r\n<h3>Key Features</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\r\n<li>Administration of permissions, system roles and users</li>\r\n<li>Web Services API for easy integration with third-party applications</li>\r\n<li>Fully 100% customizable design using templates, or bespoke design</li>\r\n<li>Support for Customer Groups</li>\r\n<li>Content Management System for General or Site Information Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n\r\n<h2>£999 + £60/month   </h2>\r\n<p>If you as interested in this product please use the button below to complete a contact form for a call back or call us directly to discuss your requirements.<p/>\r\n<a href=\"/contact-form-2\" class=\"btn impactBtn\"><span>Contact Form</span></a><br /><br /><br />\r\n[button_link url=\"webshop-3-0-feature-list\" style=\"medium blue\"]View Webshop 3.0 functionality[/button_link]\r\n[button_link url=\"http://www.webdesign-uk.org/webshop-3-0-feature-list/\" style=\"medium blue\"]Webshop 3.0 functionality.pdf[/button_link]<br /><br /><br />\r\n\r\n\r\n\r\n</div></div>\r\n\r\n\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n\r\n</div></div>\r\n\r\n\r\n<!--[tabs]\r\n	[tab title=\"Site Management\"]\r\n<h3>Site Management</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\r\n<li>Administration of permissions, system roles and users</li>\r\n<li>Web Services API for easy integration between Magento and any third-party application</li>\r\n<li>Fully 100% customizable design using templates</li>\r\n<li>Customer Groups</li>\r\n<li>One-Click Upgrades</li>\r\n<li>Content Management System for Informational Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n<h3>Analytics and reporting</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n <li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"SEO, Marketing Promotions and Tools\"]\r\n<h3>Search Engine Optimisation</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>100% Search Engine Friendly</li>\r\n<li>Google Site Map</li>\r\n<li>Search Engine Friendly URL’s</li>\r\n<li>URL Rewrites give full control of URL’s</li>\r\n<li>Meta-information for products and categories</li>\r\n<li>Auto-generated Site Map for display on site</li>\r\n<li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Marketing Promotions and Tools</h3>\r\n	<ul>\r\n<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n<h3>Orders</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n<h3>Checkout, Payment and Shipping</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Cheques/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\n<li>Shopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Customer\"]\r\n<h3>Customer Service</h3> \r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Contact Us form</li>\r\n<li>Feature-rich Customer Accounts</li>\r\n<li>Order History with Status Updates</li>\r\n<li>Order Tracking from Account</li>\r\n<li>Password Reset email from front-end and admin panel</li>\r\n<li>Order and Account Update Emails</li>\r\n<li>Customizable Order Emails</li>\r\n<li>Create and Edit Orders from the Admin Panel</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Customer Accounts</h3> \r\n	<ul>\r\n		<li>Order status and history</li>\r\n<li>Re-orders from account</li>\r\n<li>Recently ordered items</li>\r\n<li>Address Book with unlimited addresses</li>\r\n<li>Default Billing and Shipping addresses</li>\r\n<li>Wishlist with ability to add comments</li>\r\n<li>Email or Send RSS feed of Wishlist</li>\r\n<li>Newsletter Subscription management</li>\r\n<li>Product Reviews submitted</li>\r\n<li>Product Tags submitted</li>\r\n<li>Downloadable/Digital Products<li>\r\n<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Management & Browsing\"]\r\n<h3>Catalog Management</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Inventory Management with Backordered items, Minimum and Maximum quantities</li>\r\n<li>Batch Import and Export of catalog</li>\r\n<li>Batch Updates to products in admin panel</li>\r\n<li>Google Base Integration</li>\r\n<li>Simple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products</li>\r\n<li>Virtual Products</li>\r\n<li>Downloadable/Digital Products</li>\r\n<li>Customer Personalized Products - upload text for embroidery, monogramming, etc.</li>\r\n<li>Tax Rates per location, customer group and product type</li>\r\n<li>Attribute Sets for quick product creation of different item types</li>\r\n<li>Create Store-specific attributes on the fly</li>\r\n<li>Media Manager with automatic image resizing and watermarking</li>\r\n<li>Advanced Pricing Rules and support for Special Prices (see marketing tools)</li>\r\n<li>Search Results rewrites and redirects</li>\r\n<li>Approve, Edit and Delete Product Tags</li>\r\n<li>Approve, Edit and Delete Product Reviews</li>\r\n<li>RSS feed for Low Inventory Alerts</li>\r\n<li>Customer Personalized Products - Upload text for embroidery, monogramming, etc. (this one is already there, but want to have the following shown after it)</li>\r\n<li>Customer Personalized Products – Upload Image</li>\r\n<li>Customer Personalized Products – Select Date/Time options for products</li>\r\n<li>Customer Sorting – Define Attributes for Customer Sorting on category (price, brand, etc.)</li>\r\n			</ul>\r\n[/bullet_list]\r\n<h3>Catalog Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Layered / Faceted Navigation for filtering of products in categories</li>\r\n<li>Layered / Faceted Navigation for filtering of products in search results</li>\r\n<li>Flat Catalog Module for Improved Performance with large catalogs</li>\r\n<li>Static Block tool to create category landing pages</li>\r\n<li>Ability to assign designs on category and product level (unique design per product/category)</li>\r\n<li>Configurable search with auto-suggested terms</li>\r\n<li>Recently viewed products</li>\r\n<li>Product comparisons</li>\r\n<li>Recently compared products</li>\r\n<li>Cross-sells, Up-sells and Related Items</li>\r\n<li>Popular Search Terms Cloud</li>\r\n<li>Filter by Product Tags</li>\r\n<li>Product Reviews</li>\r\n<li>Product listing in grid or list format</li>\r\n<li>Breadcrumbs</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Product Browsing\"]\r\n<h3>Product Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Multiple Images Per Product</li>\r\n<li>Product Image Zoom-in Capability</li>\r\n<li>Product Reviews</li>\r\n<li>Related Products</li>\r\n<li>Stock Availability</li>\r\n<li>Multi-Tier Pricing Upsell</li>\r\n<li>Product Option Selection</li>\r\n<li>Grouped Products View</li>\r\n<li>Add to Wishlist</li>\r\n<li>Send to a Friend with Email</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]-->\r\n\r\n\r\n\r\n\r\n','eCommerce WebShop Lite','','inherit','closed','closed','','156-revision-44','','','2011-09-05 09:15:57','2011-09-05 09:15:57','',156,'http://bestecommerce-uk.com/2011/09/156-revision-44/',0,'revision','',0),(374,1,'2011-07-01 01:46:17','2011-07-01 01:46:17','<h1>eCommerce WebShop 3.0 Standard</h1>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>WebShop 3.0 Standard provides a strong base from which to grow your presence on-line with unlimited products and categories and unrivalled ease of use.</p><p>Supporting advanced functions from weight based shipping, to managing stock and invoicing, the standard system is aimed at SME\'s, and growing on-line retailer seeking a site with professional design, functions and ease of use.</p> \r\n<h2>£1999 + £60/month   </h2>\r\n<a href=\"/about-us\" class=\"btn impactBtn\"><span>Add to Cart/Sign-Up</span></a><br /><br /><br />\r\n\r\n</div></div>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n\r\n</div></div>\r\n[one_half_last] [/one_half_last]\r\n\r\n\r\n\r\n\r\n\r\n\r\n[tabs]\r\n	[tab title=\"Our Packages\"]<h3>Lorem ipsum dolor sit amet</h3> \r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" class=\"styled-image popup alignright\" title=\"Click me to enlarge!\" rel=\"tab-1\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" width=\"206\" height=\"117\" alt=\"Click me to enlarge!\" class=\"alignright\" /></a>\r\n<p>Consectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique. Quisque mattis elit eros, non facilisis sem. Cras a congue neque. In massa purus, ornare in sagittis id, accumsan ac nisl. Sed sit amet nulla ac dolor adipiscing.</p>[/tab]\r\n	[tab title=\"Our Capabilities\"][bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n	</ul>\r\n[/bullet_list][/tab]\r\n	[tab title=\"Our Support\"]Tab content...[/tab]\r\n[/tabs]','eCommerce WebShop Standard','','inherit','closed','closed','','137-revision-4','','','2011-07-01 01:46:17','2011-07-01 01:46:17','',137,'http://bestecommerce-uk.com/2011/07/137-revision-4/',0,'revision','',0),(375,1,'2011-07-01 01:39:08','2011-07-01 01:39:08','<h1>eCommerce WebShop 3.0 Pro</h1>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>Our flagship product for the SME\'s and growing companies, WebShop 3.0 Pro provides a high level of function across the board.</p><p>Supporting advanced functions from multi-tiered pricing structures to integration with Amazon and eBay, the pro system is the benchmark for growing and established High Street brand retailers</p> \r\n<h2>£2999 + £60/month   </h2>\r\n<a href=\"/about-us\" class=\"btn impactBtn\"><span>Add to Cart/Sign-Up</span></a><br /><br /><br />\r\n\r\n</div></div>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n\r\n</div></div>\r\n[one_half_last] [/one_half_last]\r\n\r\n\r\n\r\n\r\n\r\n\r\n[tabs]\r\n	[tab title=\"Our Packages\"]<h3>Lorem ipsum dolor sit amet</h3> \r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" class=\"styled-image popup alignright\" title=\"Click me to enlarge!\" rel=\"tab-1\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" width=\"206\" height=\"117\" alt=\"Click me to enlarge!\" class=\"alignright\" /></a>\r\n<p>Consectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique. Quisque mattis elit eros, non facilisis sem. Cras a congue neque. In massa purus, ornare in sagittis id, accumsan ac nisl. Sed sit amet nulla ac dolor adipiscing.</p>[/tab]\r\n	[tab title=\"Our Capabilities\"][bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n	</ul>\r\n[/bullet_list][/tab]\r\n	[tab title=\"Our Support\"]Tab content...[/tab]\r\n[/tabs]','eCommerce WebShop Pro','','inherit','closed','closed','','74-revision-28','','','2011-07-01 01:39:08','2011-07-01 01:39:08','',74,'http://bestecommerce-uk.com/2011/07/74-revision-28/',0,'revision','',0),(376,1,'2011-09-12 13:26:50','2011-09-12 13:26:50','<h1>eCommerce WebShop 3.0 Standard</h1>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>WebShop 3.0 Standard provides a strong base from which to grow your presence on-line with unlimited products and categories and unrivalled ease of use.</p><p>Supporting advanced functions from weight based shipping, to managing stock and invoicing, the standard system is aimed at SME\'s, and growing on-line retailer seeking a site with professional design, functions and ease of use.</p> \r\n<h2>£1999 + £60/month   </h2>\r\n<a href=\"/about-us\" class=\"btn impactBtn\"><span>Add to Cart/Sign-Up</span></a><br /><br /><br />\r\n\r\n</div></div>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n\r\n</div></div>\r\n[one_half_last] [/one_half_last]\r\n\r\n\r\n\r\n\r\n\r\n\r\n<!--[tabs]\r\n	[tab title=\"Our Packages\"]<h3>Lorem ipsum dolor sit amet</h3> \r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" class=\"styled-image popup alignright\" title=\"Click me to enlarge!\" rel=\"tab-1\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" width=\"206\" height=\"117\" alt=\"Click me to enlarge!\" class=\"alignright\" /></a>\r\n<p>Consectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique. Quisque mattis elit eros, non facilisis sem. Cras a congue neque. In massa purus, ornare in sagittis id, accumsan ac nisl. Sed sit amet nulla ac dolor adipiscing.</p>[/tab]\r\n	[tab title=\"Our Capabilities\"][bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n	</ul>\r\n[/bullet_list][/tab]\r\n	[tab title=\"Our Support\"]Tab content...[/tab]\r\n[/tabs]-->','eCommerce WebShop Standard','','inherit','closed','closed','','137-revision-5','','','2011-09-12 13:26:50','2011-09-12 13:26:50','',137,'http://bestecommerce-uk.com/2011/09/137-revision-5/',0,'revision','',0),(377,1,'2011-09-12 13:27:47','2011-09-12 13:27:47','<h1>eCommerce WebShop 3.0 Pro</h1>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>Our flagship product for the SME\'s and growing companies, WebShop 3.0 Pro provides a high level of function across the board.</p><p>Supporting advanced functions from multi-tiered pricing structures to integration with Amazon and eBay, the pro system is the benchmark for growing and established High Street brand retailers</p> \r\n<h2>£2999 + £60/month   </h2>\r\n<a href=\"/about-us\" class=\"btn impactBtn\"><span>Add to Cart/Sign-Up</span></a><br /><br /><br />\r\n\r\n</div></div>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n\r\n</div></div>\r\n[one_half_last] [/one_half_last]\r\n\r\n\r\n\r\n\r\n\r\n\r\n<!--[tabs]\r\n	[tab title=\"Our Packages\"]<h3>Lorem ipsum dolor sit amet</h3> \r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" class=\"styled-image popup alignright\" title=\"Click me to enlarge!\" rel=\"tab-1\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" width=\"206\" height=\"117\" alt=\"Click me to enlarge!\" class=\"alignright\" /></a>\r\n<p>Consectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique. Quisque mattis elit eros, non facilisis sem. Cras a congue neque. In massa purus, ornare in sagittis id, accumsan ac nisl. Sed sit amet nulla ac dolor adipiscing.</p>[/tab]\r\n	[tab title=\"Our Capabilities\"][bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n	</ul>\r\n[/bullet_list][/tab]\r\n	[tab title=\"Our Support\"]Tab content...[/tab]\r\n[/tabs]-->','eCommerce WebShop Pro','','inherit','closed','closed','','74-revision-29','','','2011-09-12 13:27:47','2011-09-12 13:27:47','',74,'http://bestecommerce-uk.com/2011/09/74-revision-29/',0,'revision','',0),(471,1,'2011-11-21 14:14:41','2011-11-21 14:14:41','Whether you are looking for a simple brochure website to promote your product and services or an online store to sell products online. There is no doubt that the aesthetics of a website affect the customers perception of your product and can easily influence them whether to stay on your website or move onto your competitors website.  It is proven that it can take only a few seconds for a customer to decide how they feel about your website design. It is therefore important that your website complements the brand whilst remaining goal oriented and customer focused.\r\n\r\n<h2>Our Process</h2>\r\nOur Web Design process consists of 5 steps.\r\n\r\n<strong>Consultation</strong>\r\nDuring the consultation period the customers ideas and aims for the website will be discussed and how this will achieve the businesses overall objectives.  Design, functionality, timeframe and cost will be considered in this phase.\r\n\r\n<strong>Specification</strong>\r\nThe website specification can vary in size from a single piece of A4 for a small business to a extensive document for large complex website.  The specification should detail the design, technical and functional requirements of the site as well as the site structure or in other words how it will look on the web.  If the customer does not have an domain name then a suitable domain will be identified and registered at this stage.  It is our policy that when registering domains on behalf of the customer that it is registered in the customer\'s name and not ours.\r\n\r\n<strong>Development & Testing</strong>\r\nThis is where the site begins to take visible shape based on the agreed specification.  The time that this process will take to complete will depend on the complexity and size of the site as well as integration of any external web technologies.  The expected time scale for this phase will be outlined in the quotation.\r\nOnce the final design has been approved the site will be tested to ensure that all functions are operational and the site is performing as required.\r\n\r\n<strong>Launch</strong>\r\nOnce the testing is complete and approved by the customer the website can be placed into live operation. An agreed date for this will set with the customer considering any associated factors.\r\n\r\n<strong>Support & Maintenance</strong>\r\nOur Support & Maintenance agreement provides on-going support and development for the customer\'s site.  Whether it be assistance in adding new feature\'s over time or updating content our support & maintenance agreement apportions time to development as well as covering hosting fees, off-site backups and telephone support so that the customer can be assured that help is at hand when required.\r\n\r\nWhy not take a look at some of our <a href=\"http://www.webdesign-uk.org/about-us/ecommerce-site-examples/\">web design</a> projects.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n','Web Design','','inherit','closed','closed','','425-revision-21','','','2011-11-21 14:14:41','2011-11-21 14:14:41','',425,'http://bestecommerce-uk.com/2011/11/425-revision-21/',0,'revision','',0),(378,1,'2011-07-11 15:51:15','2011-07-11 15:51:15','A list of frequently asked questions below:<br /><br />\r\n\r\n[toggle title=\"What is eCommerce?\"]The <a href=\"http://oxforddictionaries.com/definition/e-commerce\">Oxford english dictionary</a> definition of ecommerce is “commercial transactions conducted electronically on the Internet.”[/toggle]\r\n[toggle title=\"How much does an eCommerce Website cost?\"]The cost varies depending on what <a href=\"http://www.webdesign-uk.org/best-e-commerce-packages/\">package</a> you choose...[/toggle]\r\n[toggle title=\"How long will it take to build our site?\"]Usually 3-4 weeks depending on the add-ons you require...[/toggle]\r\n[toggle title=\"What should I consider when starting an online business?\"]<p>If you do not already have a product to sell then find a niche product that will sell online. Conduct market research to determine the likely sales level of the product, who your competitors are and where you would fit in the market.\r\nAlso consider whether the product is suitable for online sales.</p> <p>Most eCommerce websites now offer free standard postage and packing so if you intend to offer this then the cost must come from your overheads. If the unit cost to shipping cost ratio is high then the product becomes less economical to sell.</p>[/toggle]\r\n[toggle title=\"What is the biggest hurdle in starting an online business?\"]<p>The biggest hurdle will be letting your customers know you are there. If you already have a bricks and mortar shop you can let your exiting customers know via in-store advertising or email if you have their details. However this will not increase your sales.</p> <p>For you business to succeed your website will need to climb the search engine rankings so that you are one of the first sites that people see when searching for your product. A well planned search engine optimisation strategy will aid your site in climbing the rankings and increase potential buyers to your website. We will be happy to advise on and implement a search engine optimisation strategy for an additional monthly fee. Please ask us for details.</p>[/toggle]\r\n[toggle title=\"Do I need a merchant account or can I just use Paypal and money orders?\"]If you plan to take payments using PayPal or Google Checkout only, then you will not require a Merchant ID. If you plan to take Credit Card Payments via a third Party such as SagePay or RBS WorldPay then you will require one. We can help you organise that. Just ask us.[/toggle]\r\n[toggle title=\"I already have a Website. Can I integrate an online store into it?\"]<p>Yes, you can integrate our shopping cart solutions into your existing website, although the shopping pages will likely look a little different to your existing website. We can use colours and styling to approximate the look and feel of your existing website.</p> <p>The systems we supply allow addition of unlimited website pages, files, video and more. Due to the scope and power of our eCommerce systems and what they allow our customers to do, many of our customers simply choose to recreate the content of their old website inside the eCommerce shopping website itself. In the vast majority of cases this is advantageous for the customer as they can provide a more professional look and feel for their whole website this way. So, once you see what our systems can do, your question may be...</p> <p>Can we integrate our existing website into our new eCommerce store? However you want us to configure things, we can support all these options.</p>[/toggle]\r\n[toggle title=\"Will I be able to customize the look and feel of my eCommerce website?\"]Yes, any eCommerce website that we build for you will be tailored to your requirements.  After completion modifications can be made at an additional cost.[/toggle]\r\n[toggle title=\"What is a merchant account?\"]A merchant account lets you accept payments directly from customers\' credit, debit or charge cards. If you do not have an internet ready merchant account we would be happy to assist you in setting this up.[/toggle]\r\n[toggle title=\"Can I use the merchant account I already have for online processing?\"]Yes. Any existing merchant account can be used so long as it is an internet ready account.[/toggle]\r\n[toggle title=\"What is a payment gateway?\"]A payment gateway is the connection between your eCommerce website and your merchant account provider. It is the equivalent to the credit card point of sale terminal in a shop. The gateway protects the customers card details by encrypting the communication between your eCommerce website and the merchant account provider.[/toggle]\r\n[toggle title=\"How do I ensure that customers transactions are secure?\"]<p>Any customer visiting your website will need to be assured that sensitive details supplied to your website will be secure. This is achieved by using SSL (Secure Socket Layers) the standard method on encryption currently used on the internet.</p> <p>Visitors to your website will see the padlock symbol in the browser bar to show that it is a secure page. This is also shown in the URL as secure URL\'s begin with “HTTPS” instead of the standard “HTTP”.</p>[/toggle]\r\n[toggle title=\"What is SSL?\"]SSL (Secure Socket Layer) is a method of encrypting the sensitive data transmitted from you eCommerce website so as to ensure that no unauthorised users can access the data.[/toggle]\r\n','FAQ\'s','','inherit','closed','closed','','49-revision-21','','','2011-07-11 15:51:15','2011-07-11 15:51:15','',49,'http://bestecommerce-uk.com/2011/07/49-revision-21/',0,'revision','',0),(379,1,'2011-07-21 18:37:09','2011-07-21 18:37:09','[one_half]<h3>Site Management</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\r\n<li>Administration of permissions, system roles and users</li>\r\n<li>Web Services API for easy integration between Magento and any third-party application</li>\r\n<li>Fully 100% customizable design using templates</li>\r\n<li>Customer Groups</li>\r\n<li>One-Click Upgrades</li>\r\n<li>Content Management System for Informational Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list][/one_half]\r\n[one_half_last]\r\n<h3>Analytics and reporting</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n <li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n			</ul>\r\n[/bullet_list][/one_half_last]','2 column','','inherit','closed','closed','','318-revision-2','','','2011-07-21 18:37:09','2011-07-21 18:37:09','',318,'http://bestecommerce-uk.com/2011/07/318-revision-2/',0,'revision','',0),(380,1,'2011-12-14 15:07:32','2011-12-14 15:07:32','[tabs]\n	[tab title=\"What we offer\"]<h3>Webshop 3.0</h3> \n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" class=\"styled-image popup alignright\" title=\"Click to enlarge\" rel=\"tab-1\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" width=\"206\" height=\"117\" alt=\"Click to enlarge\" class=\"alignright\" /></a>\n<p>We offer Lite, Standard and Pro packages, suited for different budgets and business models or sizes. All packages include full Webshop 3.0, a fixed number of product uploads plus a monthly support and maintenance fee.</p>[/tab]\n	[tab title=\"Our Capabilities\"][bullet_list icon=\"check\"]\n	<ul>\n		<li>Implementing e-commerce</li>\n                <li>Designing website </li>\n		<li>Search engine optimisation</li>\n	</ul>\n[/bullet_list][/tab]\n	[tab title=\"Our Support\"]\n<p>Our work does not stop when the website goes live. Our support and maintenance agreement binds us to fix any problem with the site or hosted services at no extra cost. This does not include changes to site content or product maintenance. We will train you in these areas beforehand, or this can be carried out on an hourly rate basis.</p>[/tab]\n[/tabs]','HomeTabs','','inherit','closed','closed','','23-autosave','','','2011-12-14 15:07:32','2011-12-14 15:07:32','',23,'http://bestecommerce-uk.com/2011/09/23-autosave/',0,'revision','',0),(381,1,'2011-06-30 13:54:49','2011-06-30 13:54:49','[tabs]\r\n	[tab title=\"Our Packages\"]<h3>Lorem ipsum dolor sit amet</h3> \r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" class=\"styled-image popup alignright\" title=\"Click me to enlarge!\" rel=\"tab-1\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" width=\"206\" height=\"117\" alt=\"Click me to enlarge!\" class=\"alignright\" /></a>\r\n<p>Consectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique. Quisque mattis elit eros, non facilisis sem. Cras a congue neque. In massa purus, ornare in sagittis id, accumsan ac nisl. Sed sit amet nulla ac dolor adipiscing.</p>[/tab]\r\n	[tab title=\"Our Capabilities\"][bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n	</ul>\r\n[/bullet_list][/tab]\r\n	[tab title=\"Our Support\"]Tab content...[/tab]\r\n[/tabs]','HomeTabs','','inherit','closed','closed','','23-revision-4','','','2011-06-30 13:54:49','2011-06-30 13:54:49','',23,'http://bestecommerce-uk.com/2011/06/23-revision-4/',0,'revision','',0),(383,1,'2011-09-12 15:32:56','2011-09-12 15:32:56','[tabs]\r\n	[tab title=\"Our Packages\"]<h3>Webshop 3.0</h3> \r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" class=\"styled-image popup alignright\" title=\"Click me to enlarge!\" rel=\"tab-1\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" width=\"206\" height=\"117\" alt=\"Click me to enlarge!\" class=\"alignright\" /></a>\r\n<p>We have 3 packages on offer Lite, Standard and Pro each aimed at different entry levels. All packages include full Webshop 3.0, a fixed number of product uploads plus a monthly support and maintenance fee.</p>[/tab]\r\n	[tab title=\"Our Capabilities\"][bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n	</ul>\r\n[/bullet_list][/tab]\r\n	[tab title=\"Our Support\"]Tab content...[/tab]\r\n[/tabs]','HomeTabs','','inherit','closed','closed','','23-revision-6','','','2011-09-12 15:32:56','2011-09-12 15:32:56','',23,'http://bestecommerce-uk.com/2011/09/23-revision-6/',0,'revision','',0),(384,1,'2011-09-12 15:36:03','2011-09-12 15:36:03','[tabs]\r\n	[tab title=\"Our Packages\"]<h3>Webshop 3.0</h3> \r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" class=\"styled-image popup alignright\" title=\"Click me to enlarge!\" rel=\"tab-1\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" width=\"206\" height=\"117\" alt=\"Click me to enlarge!\" class=\"alignright\" /></a>\r\n<p>We have 3 packages on offer Lite, Standard and Pro each aimed at different entry levels. All packages include full Webshop 3.0, a fixed number of product uploads plus a monthly support and maintenance fee.</p>[/tab]\r\n	[tab title=\"Our Capabilities\"][bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Website design</li>\r\n                <li>eCommerce solutions</li>\r\n		<li>Support and maintenace once you site is launched</li>\r\n		<li>Search Engine optimisation</li>\r\n	</ul>\r\n[/bullet_list][/tab]\r\n	[tab title=\"Our Support\"]Tab content...[/tab]\r\n[/tabs]','HomeTabs','','inherit','closed','closed','','23-revision-7','','','2011-09-12 15:36:03','2011-09-12 15:36:03','',23,'http://bestecommerce-uk.com/2011/09/23-revision-7/',0,'revision','',0),(385,1,'2011-09-12 15:36:59','2011-09-12 15:36:59','[tabs]\r\n	[tab title=\"Our Packages\"]<h3>Webshop 3.0</h3> \r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" class=\"styled-image popup alignright\" title=\"Click me to enlarge!\" rel=\"tab-1\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" width=\"206\" height=\"117\" alt=\"Click me to enlarge!\" class=\"alignright\" /></a>\r\n<p>We have 3 packages on offer Lite, Standard and Pro each aimed at different entry levels. All packages include full Webshop 3.0, a fixed number of product uploads plus a monthly support and maintenance fee.</p>[/tab]\r\n	[tab title=\"Our Capabilities\"][bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Website design</li>\r\n                <li>eCommerce solutions</li>\r\n		<li>Search Engine optimisation</li>\r\n	</ul>\r\n[/bullet_list][/tab]\r\n	[tab title=\"Our Support\"]Tab content...[/tab]\r\n[/tabs]','HomeTabs','','inherit','closed','closed','','23-revision-8','','','2011-09-12 15:36:59','2011-09-12 15:36:59','',23,'http://bestecommerce-uk.com/2011/09/23-revision-8/',0,'revision','',0),(386,1,'2011-09-12 15:54:43','2011-09-12 15:54:43','[tabs]\r\n	[tab title=\"Our Packages\"]<h3>Webshop 3.0</h3> \r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" class=\"styled-image popup alignright\" title=\"Click me to enlarge!\" rel=\"tab-1\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" width=\"206\" height=\"117\" alt=\"Click me to enlarge!\" class=\"alignright\" /></a>\r\n<p>We have 3 packages on offer Lite, Standard and Pro each aimed at different entry levels. All packages include full Webshop 3.0, a fixed number of product uploads plus a monthly support and maintenance fee.</p>[/tab]\r\n	[tab title=\"Our Capabilities\"][bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Website design</li>\r\n                <li>eCommerce solutions</li>\r\n		<li>Search Engine optimisation</li>\r\n	</ul>\r\n[/bullet_list][/tab]\r\n	[tab title=\"Our Support\"]\r\n<p>Once your site is live it will be covered by our support and maintenece agreement providing you with the assurance that any issue with the site or hosted email will be fixed at no extra costs. This does not cover changes to site content or product maintenance. Full training will be provided in these areas prior to the site going live or we can carry such changes out based on an hourly rate.[/tab]\r\n[/tabs]','HomeTabs','','inherit','closed','closed','','23-revision-9','','','2011-09-12 15:54:43','2011-09-12 15:54:43','',23,'http://bestecommerce-uk.com/2011/09/23-revision-9/',0,'revision','',0),(387,1,'2011-09-12 15:56:11','2011-09-12 15:56:11','[tabs]\r\n	[tab title=\"Our Packages\"]<h3>Webshop 3.0</h3> \r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" class=\"styled-image popup alignright\" title=\"Click me to enlarge!\" rel=\"tab-1\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" width=\"206\" height=\"117\" alt=\"Click me to enlarge!\" class=\"alignright\" /></a>\r\n<p>We have 3 packages on offer Lite, Standard and Pro each aimed at different entry levels. All packages include full Webshop 3.0, a fixed number of product uploads plus a monthly support and maintenance fee.</p>[/tab]\r\n	[tab title=\"Our Capabilities\"][bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Website design</li>\r\n                <li>eCommerce solutions</li>\r\n		<li>Search Engine optimisation</li>\r\n	</ul>\r\n[/bullet_list][/tab]\r\n	[tab title=\"Our Support\"]\r\n<p>Once the site is live it will be covered by our support and maintenece agreement providing assurance that any issue with the site or hosted email will be fixed at no extra cost. This does not cover changes to site content or product maintenance. Full training will be provided in these areas prior to the site going live or this can be carried out based on an hourly rate.[/tab]\r\n[/tabs]','HomeTabs','','inherit','closed','closed','','23-revision-10','','','2011-09-12 15:56:11','2011-09-12 15:56:11','',23,'http://bestecommerce-uk.com/2011/09/23-revision-10/',0,'revision','',0),(388,1,'2011-09-12 12:58:53','2011-09-12 12:58:53','<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>Our entry level product for the SME\'s and growing companies, WebShop 3.0 Lite provides a high level of function across the board.</p><p>Supporting advanced functions such as cross-selling and up-selling, as well as product attributes for size or colour variations, the system is well suited to small businesses selling on-line. </p>\r\n\r\n<h3>Key Features</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\r\n<li>Administration of permissions, system roles and users</li>\r\n<li>Web Services API for easy integration with third-party applications</li>\r\n<li>Fully 100% customizable design using templates, or bespoke design</li>\r\n<li>Support for Customer Groups</li>\r\n<li>Content Management System for General or Site Information Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n\r\n<h2>£999 + £60/month   </h2>\r\n<p>If you as interested in this product please use the button below to complete a contact form for a call back or call us directly to discuss your requirements.<p/>\r\n<a href=\"/contact-form-2\" class=\"btn impactBtn\"><span>Contact Form</span></a><br /><br /><br />\r\n[button_link url=\"webshop-3-0-feature-list\" style=\"medium blue\"]View Webshop 3.0 functionality[/button_link]\r\n[button_link url=\"http://www.webdesign-uk.org/wp-content/uploads/2011/09/Webshop_3.0_features_list.pdf\" style=\"medium blue\"]Webshop 3.0 functionality.pdf[/button_link]<br /><br /><br />\r\n\r\n\r\n\r\n</div></div>\r\n\r\n\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n\r\n</div></div>\r\n\r\n\r\n<!--[tabs]\r\n	[tab title=\"Site Management\"]\r\n<h3>Site Management</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\r\n<li>Administration of permissions, system roles and users</li>\r\n<li>Web Services API for easy integration between Magento and any third-party application</li>\r\n<li>Fully 100% customizable design using templates</li>\r\n<li>Customer Groups</li>\r\n<li>One-Click Upgrades</li>\r\n<li>Content Management System for Informational Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n<h3>Analytics and reporting</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n <li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Report</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n	[tab title=\"SEO, Marketing Promotions and Tools\"]\r\n<h3>Search Engine Optimisation</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>100% Search Engine Friendly</li>\r\n<li>Google Site Map</li>\r\n<li>Search Engine Friendly URL’s</li>\r\n<li>URL Rewrites give full control of URL’s</li>\r\n<li>Meta-information for products and categories</li>\r\n<li>Auto-generated Site Map for display on site</li>\r\n<li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Marketing Promotions and Tools</h3>\r\n	<ul>\r\n<li>Polls</li>\r\n<li>Newsletter Management</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalog Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories, products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n<h3>Orders</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n<h3>Checkout, Payment and Shipping</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>One-Page Checkout</li>\r\n<li>Integrated for real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Configurable to authorize and charge, or authorize only and charge on creation of invoices</li>\r\n<li>Integrated with Amazon Payments</li>\r\n<li>Integrated with multiple PayPal gateways</li>\r\n<li>Integrated with Authorize.net</li>\r\n<li>Integrated with Google Checkout (Level 2)</li>\r\n<li>Saved Credit Card method for offline payments</li>\r\n<li>Accept Cheques/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>Payment Extensions Available through Magento Connect</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\n<li>Shopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Accept gift messages per order and per item</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-site order tracking from customer accounts</li>\r\n<li>Multiple shipments per order</li>\r\n<li>Ability to specify allowed destination countries per method</li>\r\n<li>Flat rate shipping per order</li>\r\n<li>Flat rate shipping per item</li>\r\n<li>Free Shipping</li>\r\n<li>Table rates for weight and destination</li>\r\n<li>Table rates for product sub-totals and destination</li>\r\n<li>Table rates for number of items and destination Free</li>\r\n\r\n</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Customer\"]\r\n<h3>Customer Service</h3> \r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Contact Us form</li>\r\n<li>Feature-rich Customer Accounts</li>\r\n<li>Order History with Status Updates</li>\r\n<li>Order Tracking from Account</li>\r\n<li>Password Reset email from front-end and admin panel</li>\r\n<li>Order and Account Update Emails</li>\r\n<li>Customizable Order Emails</li>\r\n<li>Create and Edit Orders from the Admin Panel</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Customer Accounts</h3> \r\n	<ul>\r\n		<li>Order status and history</li>\r\n<li>Re-orders from account</li>\r\n<li>Recently ordered items</li>\r\n<li>Address Book with unlimited addresses</li>\r\n<li>Default Billing and Shipping addresses</li>\r\n<li>Wishlist with ability to add comments</li>\r\n<li>Email or Send RSS feed of Wishlist</li>\r\n<li>Newsletter Subscription management</li>\r\n<li>Product Reviews submitted</li>\r\n<li>Product Tags submitted</li>\r\n<li>Downloadable/Digital Products<li>\r\n<li>Account Dashboard for overview of: recent orders, personal information, newsletter subscription status, primary billing address, primary shipping address, shopping cart, wishlist, recently ordered items, recent reviews and recent tags</li>\r\n\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Catalog Management & Browsing\"]\r\n<h3>Catalog Management</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Inventory Management with Backordered items, Minimum and Maximum quantities</li>\r\n<li>Batch Import and Export of catalog</li>\r\n<li>Batch Updates to products in admin panel</li>\r\n<li>Google Base Integration</li>\r\n<li>Simple, Configurable (e.g. size, color, etc.), Bundled and Grouped Products</li>\r\n<li>Virtual Products</li>\r\n<li>Downloadable/Digital Products</li>\r\n<li>Customer Personalized Products - upload text for embroidery, monogramming, etc.</li>\r\n<li>Tax Rates per location, customer group and product type</li>\r\n<li>Attribute Sets for quick product creation of different item types</li>\r\n<li>Create Store-specific attributes on the fly</li>\r\n<li>Media Manager with automatic image resizing and watermarking</li>\r\n<li>Advanced Pricing Rules and support for Special Prices (see marketing tools)</li>\r\n<li>Search Results rewrites and redirects</li>\r\n<li>Approve, Edit and Delete Product Tags</li>\r\n<li>Approve, Edit and Delete Product Reviews</li>\r\n<li>RSS feed for Low Inventory Alerts</li>\r\n<li>Customer Personalized Products - Upload text for embroidery, monogramming, etc. (this one is already there, but want to have the following shown after it)</li>\r\n<li>Customer Personalized Products – Upload Image</li>\r\n<li>Customer Personalized Products – Select Date/Time options for products</li>\r\n<li>Customer Sorting – Define Attributes for Customer Sorting on category (price, brand, etc.)</li>\r\n			</ul>\r\n[/bullet_list]\r\n<h3>Catalog Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Layered / Faceted Navigation for filtering of products in categories</li>\r\n<li>Layered / Faceted Navigation for filtering of products in search results</li>\r\n<li>Flat Catalog Module for Improved Performance with large catalogs</li>\r\n<li>Static Block tool to create category landing pages</li>\r\n<li>Ability to assign designs on category and product level (unique design per product/category)</li>\r\n<li>Configurable search with auto-suggested terms</li>\r\n<li>Recently viewed products</li>\r\n<li>Product comparisons</li>\r\n<li>Recently compared products</li>\r\n<li>Cross-sells, Up-sells and Related Items</li>\r\n<li>Popular Search Terms Cloud</li>\r\n<li>Filter by Product Tags</li>\r\n<li>Product Reviews</li>\r\n<li>Product listing in grid or list format</li>\r\n<li>Breadcrumbs</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n[/tab]\r\n\r\n[tab title=\"Product Browsing\"]\r\n<h3>Product Browsing</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Multiple Images Per Product</li>\r\n<li>Product Image Zoom-in Capability</li>\r\n<li>Product Reviews</li>\r\n<li>Related Products</li>\r\n<li>Stock Availability</li>\r\n<li>Multi-Tier Pricing Upsell</li>\r\n<li>Product Option Selection</li>\r\n<li>Grouped Products View</li>\r\n<li>Add to Wishlist</li>\r\n<li>Send to a Friend with Email</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[/tabs]-->\r\n\r\n\r\n\r\n\r\n','eCommerce WebShop Lite','','inherit','closed','closed','','156-revision-45','','','2011-09-12 12:58:53','2011-09-12 12:58:53','',156,'http://bestecommerce-uk.com/2011/09/156-revision-45/',0,'revision','',0),(461,1,'2011-11-22 11:54:40','2011-11-22 11:54:40','<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>Our entry level product for the SME\'s and growing companies, WebShop 3.0 Lite provides a high level of function across the board.</p><p>Supporting advanced functions such as cross-selling and up-selling, as well as product attributes for size or colour variations, the system is well suited to small businesses selling on-line. </p>\r\n\r\n<h3>Key Features</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\r\n<li>Administration of permissions, system roles and users</li>\r\n<li>Web Services API for easy integration with third-party applications</li>\r\n<li>Fully 100% customizable design using templates, or bespoke design</li>\r\n<li>Support for Customer Groups</li>\r\n<li>Content Management System for General or Site Information Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n\r\n<h2>£999 + £60/month   </h2>\r\n<p>If you as interested in this product please use the button below to complete a contact form for a call back or call us directly to discuss your requirements.<p/>\r\n<a href=\"/contact-form-2\" class=\"btn impactBtn\"><span>Contact Form</span></a><br /><br /><br />\r\n[button_link url=\"webshop-3-0-feature-list\" style=\"medium blue\"]View Webshop 3.0 functionality[/button_link]\r\n<!--[button_link url=\"http://www.webdesign-uk.org/wp-content/uploads/2011/09/Webshop_3.0_features_list.pdf\" style=\"medium blue\"]Webshop 3.0 functionality.pdf[/button_link]<br /><br /><br />-->\r\n\r\n\r\n\r\n</div></div>\r\n\r\n\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n\r\n</div></div>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n','eCommerce WebShop Lite','','inherit','closed','closed','','156-revision-54','','','2011-11-22 11:54:40','2011-11-22 11:54:40','',156,'http://bestecommerce-uk.com/2011/11/156-revision-54/',0,'revision','',0),(389,1,'2011-09-12 13:30:44','2011-09-12 13:30:44','<h1>eCommerce WebShop 3.0 Standard</h1>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>WebShop 3.0 Standard provides a strong base from which to grow your presence on-line with unlimited products and categories and unrivalled ease of use.</p><p>Supporting advanced functions from weight based shipping, to managing stock and invoicing, the standard system is aimed at SME\'s, and growing on-line retailer seeking a site with professional design, functions and ease of use.</p> \r\n<h2>£1999 + £60/month   </h2>\r\n<p>If you as interested in this product please use the button below to complete a contact form for a call back or call us directly to discuss your requirements.<p/>\r\n<a href=\"/contact-form-2\" class=\"btn impactBtn\"><span>Contact Form</span></a><br /><br /><br />\r\n[button_link url=\"webshop-3-0-feature-list\" style=\"medium blue\"]View Webshop 3.0 functionality[/button_link]\r\n[button_link url=\"http://www.webdesign-uk.org/wp-content/uploads/2011/09/Webshop_3.0_features_list.pdf\" style=\"medium blue\"]Webshop 3.0 functionality.pdf[/button_link]<br /><br /><br />\r\n\r\n</div></div>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n\r\n</div></div>\r\n[one_half_last] [/one_half_last]\r\n\r\n\r\n\r\n\r\n\r\n\r\n<!--[tabs]\r\n	[tab title=\"Our Packages\"]<h3>Lorem ipsum dolor sit amet</h3> \r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" class=\"styled-image popup alignright\" title=\"Click me to enlarge!\" rel=\"tab-1\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" width=\"206\" height=\"117\" alt=\"Click me to enlarge!\" class=\"alignright\" /></a>\r\n<p>Consectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique. Quisque mattis elit eros, non facilisis sem. Cras a congue neque. In massa purus, ornare in sagittis id, accumsan ac nisl. Sed sit amet nulla ac dolor adipiscing.</p>[/tab]\r\n	[tab title=\"Our Capabilities\"][bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n	</ul>\r\n[/bullet_list][/tab]\r\n	[tab title=\"Our Support\"]Tab content...[/tab]\r\n[/tabs]-->','eCommerce WebShop Standard','','inherit','closed','closed','','137-revision-6','','','2011-09-12 13:30:44','2011-09-12 13:30:44','',137,'http://bestecommerce-uk.com/2011/09/137-revision-6/',0,'revision','',0),(466,1,'2011-11-22 12:28:44','2011-11-22 12:28:44','<h1>eCommerce WebShop 3.0 Standard</h1>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>WebShop 3.0 Standard provides a strong base from which to grow your presence on-line with unlimited products and categories and unrivalled ease of use.</p><p>Supporting advanced functions from weight based shipping, to managing stock and invoicing, the standard system is aimed at SME\'s, and growing on-line retailer seeking a site with professional design, functions and ease of use.</p> \r\n<h2>£1999 + £60/month   </h2>\r\n<p>If you as interested in this product please use the button below to complete a contact form for a call back or call us directly to discuss your requirements.<p/>\r\n<a href=\"/contact-form-2\" class=\"btn impactBtn\"><span>Contact Form</span></a><br /><br /><br />\r\n[button_link url=\"webshop-3-0-feature-list\" style=\"medium blue\"]View Webshop 3.0 functionality[/button_link]\r\n<!--[button_link url=\"http://www.webdesign-uk.org/wp-content/uploads/2011/09/Webshop_3.0_features_list.pdf\" style=\"medium blue\"]Webshop 3.0 functionality.pdf[/button_link]<br /><br /><br />-->\r\n\r\n</div></div>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n\r\n</div></div>\r\n[one_half_last] [/one_half_last]\r\n','eCommerce WebShop Standard','','inherit','closed','closed','','137-revision-9','','','2011-11-22 12:28:44','2011-11-22 12:28:44','',137,'http://bestecommerce-uk.com/2011/11/137-revision-9/',0,'revision','',0),(390,1,'2011-09-12 13:31:36','2011-09-12 13:31:36','<h1>eCommerce WebShop 3.0 Pro</h1>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>Our flagship product for the SME\'s and growing companies, WebShop 3.0 Pro provides a high level of function across the board.</p><p>Supporting advanced functions from multi-tiered pricing structures to integration with Amazon and eBay, the pro system is the benchmark for growing and established High Street brand retailers</p> \r\n<h2>£2999 + £60/month   </h2>\r\n<p>If you as interested in this product please use the button below to complete a contact form for a call back or call us directly to discuss your requirements.<p/>\r\n<a href=\"/contact-form-2\" class=\"btn impactBtn\"><span>Contact Form</span></a><br /><br /><br />\r\n[button_link url=\"webshop-3-0-feature-list\" style=\"medium blue\"]View Webshop 3.0 functionality[/button_link]\r\n[button_link url=\"http://www.webdesign-uk.org/wp-content/uploads/2011/09/Webshop_3.0_features_list.pdf\" style=\"medium blue\"]Webshop 3.0 functionality.pdf[/button_link]<br /><br /><br />\r\n\r\n</div></div>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n\r\n</div></div>\r\n[one_half_last] [/one_half_last]\r\n\r\n\r\n\r\n\r\n\r\n\r\n<!--[tabs]\r\n	[tab title=\"Our Packages\"]<h3>Lorem ipsum dolor sit amet</h3> \r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" class=\"styled-image popup alignright\" title=\"Click me to enlarge!\" rel=\"tab-1\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" width=\"206\" height=\"117\" alt=\"Click me to enlarge!\" class=\"alignright\" /></a>\r\n<p>Consectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique. Quisque mattis elit eros, non facilisis sem. Cras a congue neque. In massa purus, ornare in sagittis id, accumsan ac nisl. Sed sit amet nulla ac dolor adipiscing.</p>[/tab]\r\n	[tab title=\"Our Capabilities\"][bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n	</ul>\r\n[/bullet_list][/tab]\r\n	[tab title=\"Our Support\"]Tab content...[/tab]\r\n[/tabs]-->','eCommerce WebShop Pro','','inherit','closed','closed','','74-revision-30','','','2011-09-12 13:31:36','2011-09-12 13:31:36','',74,'http://bestecommerce-uk.com/2011/09/74-revision-30/',0,'revision','',0),(470,1,'2011-11-22 13:15:31','2011-11-22 13:15:31','','browsers','','inherit','closed','closed','','browsers','','','2011-11-22 13:15:31','2011-11-22 13:15:31','',425,'http://bestecommerce-uk.com/wp-content/uploads/2011/11/browsers.png',0,'attachment','image/png',0),(396,1,'2011-09-26 12:42:30','2011-09-26 12:42:30','<h1>eCommerce WebShop 3.0 Pro</h1>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>Our flagship product for the SME\'s and growing companies, WebShop 3.0 Pro provides a high level of function across the board.</p><p>Supporting advanced functions from multi-tiered pricing structures to integration with Amazon and eBay, the pro system is the benchmark for growing and established High Street brand retailers</p> \r\n<h2>£2999 + £60/month   </h2>\r\n<p>If you as interested in this product please use the button below to complete a contact form for a call back or call us directly to discuss your requirements.<p/>\r\n<a href=\"/contact-form-2\" class=\"btn impactBtn\"><span>Contact Form</span></a><br /><br /><br />\r\n[button_link url=\"webshop-3-0-feature-list\" style=\"medium blue\"]View Webshop 3.0 functionality[/button_link]\r\n<!--[button_link url=\"http://www.webdesign-uk.org/wp-content/uploads/2011/09/Webshop_3.0_features_list.pdf\" style=\"medium blue\"]Webshop 3.0 functionality.pdf[/button_link]<br /><br /><br />-->\r\n\r\n</div></div>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n\r\n</div></div>\r\n[one_half_last] [/one_half_last]\r\n\r\n\r\n\r\n\r\n\r\n\r\n<!--[tabs]\r\n	[tab title=\"Our Packages\"]<h3>Lorem ipsum dolor sit amet</h3> \r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" class=\"styled-image popup alignright\" title=\"Click me to enlarge!\" rel=\"tab-1\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" width=\"206\" height=\"117\" alt=\"Click me to enlarge!\" class=\"alignright\" /></a>\r\n<p>Consectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique. Quisque mattis elit eros, non facilisis sem. Cras a congue neque. In massa purus, ornare in sagittis id, accumsan ac nisl. Sed sit amet nulla ac dolor adipiscing.</p>[/tab]\r\n	[tab title=\"Our Capabilities\"][bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n	</ul>\r\n[/bullet_list][/tab]\r\n	[tab title=\"Our Support\"]Tab content...[/tab]\r\n[/tabs]-->','eCommerce WebShop Pro','','inherit','closed','closed','','74-revision-31','','','2011-09-26 12:42:30','2011-09-26 12:42:30','',74,'http://bestecommerce-uk.com/2011/09/74-revision-31/',0,'revision','',0),(397,1,'2011-09-26 12:41:39','2011-09-26 12:41:39','<h1>eCommerce WebShop 3.0 Standard</h1>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-2-3_1\" class=\"col-2-3 clearfix\"><div class=\"i0 ugc\"><br /><p>WebShop 3.0 Standard provides a strong base from which to grow your presence on-line with unlimited products and categories and unrivalled ease of use.</p><p>Supporting advanced functions from weight based shipping, to managing stock and invoicing, the standard system is aimed at SME\'s, and growing on-line retailer seeking a site with professional design, functions and ease of use.</p> \r\n<h2>£1999 + £60/month   </h2>\r\n<p>If you as interested in this product please use the button below to complete a contact form for a call back or call us directly to discuss your requirements.<p/>\r\n<a href=\"/contact-form-2\" class=\"btn impactBtn\"><span>Contact Form</span></a><br /><br /><br />\r\n[button_link url=\"webshop-3-0-feature-list\" style=\"medium blue\"]View Webshop 3.0 functionality[/button_link]\r\n<!--[button_link url=\"http://www.webdesign-uk.org/wp-content/uploads/2011/09/Webshop_3.0_features_list.pdf\" style=\"medium blue\"]Webshop 3.0 functionality.pdf[/button_link]<br /><br /><br />-->\r\n\r\n</div></div>\r\n\r\n<div id=\"best-ecommerce-package-layout_c1_col-1-3_2\" class=\"col-1-3 clearfix last\"><div class=\"i0 ugc\">\r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/webshop_30prox.png\" alt=\"\" title=\"webshop_30prox\" width=\"178\" height=\"189\" class=\"alignnone size-full wp-image-83\" /></a>\r\n\r\n\r\n</div></div>\r\n[one_half_last] [/one_half_last]\r\n\r\n\r\n\r\n\r\n\r\n\r\n<!--[tabs]\r\n	[tab title=\"Our Packages\"]<h3>Lorem ipsum dolor sit amet</h3> \r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" class=\"styled-image popup alignright\" title=\"Click me to enlarge!\" rel=\"tab-1\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" width=\"206\" height=\"117\" alt=\"Click me to enlarge!\" class=\"alignright\" /></a>\r\n<p>Consectetur adipiscing elit. Nunc posuere aliquet sollicitudin. Proin at pulvinar nibh. Integer euismod ultricies euismod. Nulla ac facilisis arcu. Quisque bibendum suscipit ligula eget placerat. Maecenas volutpat urna eu dui vulputate laoreet. Sed tempus eros quis metus scelerisque ac vestibulum tortor pulvinar. Aliquam sed nisl ut nisi gravida consequat at in metus. Nunc vel erat et mauris malesuada tristique. Quisque mattis elit eros, non facilisis sem. Cras a congue neque. In massa purus, ornare in sagittis id, accumsan ac nisl. Sed sit amet nulla ac dolor adipiscing.</p>[/tab]\r\n	[tab title=\"Our Capabilities\"][bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n		<li>Your Text</li>\r\n	</ul>\r\n[/bullet_list][/tab]\r\n	[tab title=\"Our Support\"]Tab content...[/tab]\r\n[/tabs]-->','eCommerce WebShop Standard','','inherit','closed','closed','','137-revision-7','','','2011-09-26 12:41:39','2011-09-26 12:41:39','',137,'http://bestecommerce-uk.com/2011/09/137-revision-7/',0,'revision','',0),(398,1,'2011-06-30 17:23:43','2011-06-30 17:23:43','[blog category=\"1,2,3,4\" posts_per_page=\"5\" paging=\"yes\" image_width=\"75\" image_height=\"91\" excerpt_length=\"14\" comments_link=\"no\"]','Blog','','inherit','closed','closed','','68-revision-9','','','2011-06-30 17:23:43','2011-06-30 17:23:43','',68,'http://bestecommerce-uk.com/2011/06/68-revision-9/',0,'revision','',0),(399,1,'2011-09-05 10:08:14','2011-09-05 10:08:14','[si-contact-form form=\'2\']','Contact Form','','inherit','closed','closed','','356-revision-8','','','2011-09-05 10:08:14','2011-09-05 10:08:14','',356,'http://bestecommerce-uk.com/2011/09/356-revision-8/',0,'revision','',0),(400,1,'2011-09-02 12:42:35','2011-09-02 12:42:35','\r\n','Contact Us','','inherit','closed','closed','','30-revision-19','','','2011-09-02 12:42:35','2011-09-02 12:42:35','',30,'http://bestecommerce-uk.com/2011/09/30-revision-19/',0,'revision','',0),(401,1,'2011-09-02 12:42:03','2011-09-02 12:42:03','<h1>Contact Us</h1>[contact_form]','Contact Us','','inherit','closed','closed','','53-revision-8','','','2011-09-02 12:42:03','2011-09-02 12:42:03','',53,'http://bestecommerce-uk.com/2011/09/53-revision-8/',0,'revision','',0),(402,1,'2011-09-12 15:10:23','2011-09-12 15:10:23','A list of frequently asked questions below:<br /><br />\r\n\r\n[toggle title=\"What is eCommerce?\"]The <a href=\"http://oxforddictionaries.com/definition/e-commerce\">Oxford english dictionary</a> definition of ecommerce is “commercial transactions conducted electronically on the Internet.”[/toggle]\r\n[toggle title=\"How much does an eCommerce Website cost?\"]The cost varies depending on what <a href=\"http://www.webdesign-uk.org/best-e-commerce-packages/\">package</a> you choose and how many products are to be uploaded...[/toggle]\r\n[toggle title=\"How long will it take to build our site?\"]Usually 3-4 weeks depending on the add-ons you require...[/toggle]\r\n[toggle title=\"What should I consider when starting an online business?\"]<p>If you do not already have a product to sell then find a niche product that will sell online. Conduct market research to determine the likely sales level of the product, who your competitors are and where you would fit in the market.\r\nAlso consider whether the product is suitable for online sales.</p> <p>Most eCommerce websites now offer free standard postage and packing so if you intend to offer this then the cost must come from your overheads. If the unit cost to shipping cost ratio is high then the product becomes less economical to sell.</p>[/toggle]\r\n[toggle title=\"What is the biggest hurdle in starting an online business?\"]<p>The biggest hurdle will be letting your customers know you are there. If you already have a bricks and mortar shop you can let your exiting customers know via in-store advertising or email if you have their details. However this will not increase your sales.</p> <p>For you business to succeed your website will need to climb the search engine rankings so that you are one of the first sites that people see when searching for your product. A well planned search engine optimisation strategy will aid your site in climbing the rankings and increase potential buyers to your website. We will be happy to advise on and implement a search engine optimisation strategy for an additional monthly fee. Please ask us for details.</p>[/toggle]\r\n[toggle title=\"Do I need a merchant account or can I just use Paypal and money orders?\"]If you plan to take payments using PayPal or Google Checkout only, then you will not require a Merchant ID. If you plan to take Credit Card Payments via a third Party such as SagePay or RBS WorldPay then you will require one. We can help you organise that. Just ask us.[/toggle]\r\n[toggle title=\"I already have a Website. Can I integrate an online store into it?\"]<p>Yes, you can integrate our shopping cart solutions into your existing website, although the shopping pages will likely look a little different to your existing website. We can use colours and styling to approximate the look and feel of your existing website.</p> <p>The systems we supply allow addition of unlimited website pages, files, video and more. Due to the scope and power of our eCommerce systems and what they allow our customers to do, many of our customers simply choose to recreate the content of their old website inside the eCommerce shopping website itself. In the vast majority of cases this is advantageous for the customer as they can provide a more professional look and feel for their whole website this way. So, once you see what our systems can do, your question may be...</p> <p>Can we integrate our existing website into our new eCommerce store? However you want us to configure things, we can support all these options.</p>[/toggle]\r\n[toggle title=\"Will I be able to customize the look and feel of my eCommerce website?\"]Yes, any eCommerce website that we build for you will be tailored to your requirements.  After completion modifications can be made at an additional cost.[/toggle]\r\n[toggle title=\"What is a merchant account?\"]A merchant account lets you accept payments directly from customers\' credit, debit or charge cards. If you do not have an internet ready merchant account we would be happy to assist you in setting this up.[/toggle]\r\n[toggle title=\"Can I use the merchant account I already have for online processing?\"]Yes. Any existing merchant account can be used so long as it is an internet ready account.[/toggle]\r\n[toggle title=\"What is a payment gateway?\"]A payment gateway is the connection between your eCommerce website and your merchant account provider. It is the equivalent to the credit card point of sale terminal in a shop. The gateway protects the customers card details by encrypting the communication between your eCommerce website and the merchant account provider.[/toggle]\r\n[toggle title=\"How do I ensure that customers transactions are secure?\"]<p>Any customer visiting your website will need to be assured that sensitive details supplied to your website will be secure. This is achieved by using SSL (Secure Socket Layers) the standard method on encryption currently used on the internet.</p> <p>Visitors to your website will see the padlock symbol in the browser bar to show that it is a secure page. This is also shown in the URL as secure URL\'s begin with “HTTPS” instead of the standard “HTTP”.</p>[/toggle]\r\n[toggle title=\"What is SSL?\"]SSL (Secure Socket Layer) is a method of encrypting the sensitive data transmitted from you eCommerce website so as to ensure that no unauthorised users can access the data.[/toggle]\r\n','FAQ\'s','','inherit','closed','closed','','49-revision-22','','','2011-09-12 15:10:23','2011-09-12 15:10:23','',49,'http://bestecommerce-uk.com/2011/09/49-revision-22/',0,'revision','',0),(403,1,'2011-06-30 12:19:15','2011-06-30 12:19:15','<style>\r\n        #inner {\r\n            margin-left:50px; \r\n            margin-right:-50px; \r\n        }\r\n</style>\r\n\r\n<div id=\"inner\">\r\n<h2>Our Location</h2>\r\n\r\n<p>Really, because of the way we work, we are located wherever you need us to be, but in real terms<br />our offices are here.</p>\r\n\r\n<iframe width=\"590\" height=\"250\" frameborder=\"2\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"http://maps.google.co.uk/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=Edinburgh+EH14+3DE&amp;aq=0&amp;sll=53.800651,-4.064941&amp;sspn=17.256447,39.594727&amp;ie=UTF8&amp;hq=&amp;hnear=Edinburgh+EH14+3DE,+United+Kingdom&amp;ll=55.909721,-3.284747&amp;spn=0.007974,0.021973&amp;z=14&amp;output=embed\"></iframe><br /><small><a href=\"http://maps.google.co.uk/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=Edinburgh+EH14+3DE&amp;aq=0&amp;sll=53.800651,-4.064941&amp;sspn=17.256447,39.594727&amp;ie=UTF8&amp;hq=&amp;hnear=Edinburgh+EH14+3DE,+United+Kingdom&amp;ll=55.909721,-3.284747&amp;spn=0.007974,0.021973&amp;z=14\" style=\"color:#0000FF;text-align:left\">View Larger Map</a></small><br /><br />\r\n\r\n<h3>Address</h3>\r\n<p>38 Baberton Mains Place, Edinburgh, EH14 3DE</p>\r\n</div>','Google Map','','inherit','closed','closed','','51-revision-8','','','2011-06-30 12:19:15','2011-06-30 12:19:15','',51,'http://bestecommerce-uk.com/2011/06/51-revision-8/',0,'revision','',0),(404,1,'2011-09-12 15:56:47','2011-09-12 15:56:47','[tabs]\r\n	[tab title=\"Our Packages\"]<h3>Webshop 3.0</h3> \r\n<a href=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" class=\"styled-image popup alignright\" title=\"Click me to enlarge!\" rel=\"tab-1\"><img src=\"http://www.webdesign-uk.org/wp-content/uploads/2011/06/designs.jpg\" width=\"206\" height=\"117\" alt=\"Click me to enlarge!\" class=\"alignright\" /></a>\r\n<p>We have 3 packages on offer Lite, Standard and Pro each aimed at different entry levels. All packages include full Webshop 3.0, a fixed number of product uploads plus a monthly support and maintenance fee.</p>[/tab]\r\n	[tab title=\"Our Capabilities\"][bullet_list icon=\"check\"]\r\n	<ul>\r\n		<li>Website design</li>\r\n                <li>eCommerce solutions</li>\r\n		<li>Search Engine Optimisation</li>\r\n	</ul>\r\n[/bullet_list][/tab]\r\n	[tab title=\"Our Support\"]\r\n<p>Once the site is live it will be covered by our support and maintenece agreement providing assurance that any issue with the site or hosted email will be fixed at no extra cost. This does not cover changes to site content or product maintenance. Full training will be provided in these areas prior to the site going live or this can be carried out based on an hourly rate.[/tab]\r\n[/tabs]','HomeTabs','','inherit','closed','closed','','23-revision-11','','','2011-09-12 15:56:47','2011-09-12 15:56:47','',23,'http://bestecommerce-uk.com/2011/09/23-revision-11/',0,'revision','',0),(405,1,'2011-06-30 00:00:44','2011-06-29 22:00:44','This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:\n\n<blockquote>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my blog. I live in Los Angeles, have a great dog named Jack, and I like pi&#241;a coladas. (And gettin\' caught in the rain.)</blockquote>\n\n...or something like this:\n\n<blockquote>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickies to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</blockquote>\n\nAs a new WordPress user, you should go to <a href=\"http://www.webdesign-uk.org/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!','Sample Page','','inherit','closed','closed','','2-revision','','','2011-06-30 00:00:44','2011-06-29 22:00:44','',2,'http://bestecommerce-uk.com/2011/06/2-revision/',0,'revision','',0),(406,1,'2011-07-08 15:23:15','2011-07-08 15:23:15','<h1>Welcome to Best eCommerce UK</h1>\r\n<p>Hello from the team at Best eCommerce UK!</p>\r\n\r\n<p>Our eCommerce solutions aim to empower our customers to take control of their on-line presence. With eCommerce solutions from Best eCommerce our clients have the ability to manage their own eCommerce websites easily and effectively with our leading edge technology.</p>\r\n\r\n<p>Importantly they can develop their businesses on-line whilst being safe in the knowledge that they have the expertise of a well established web development company on-hand to support them when they need help.</p>\r\n\r\n<p>That\'s right! We don\'t just build websites for our clients then leave them to it. Our structured Support Programme means we are just a phone call or a mouse click away if you need us.</p>\r\n\r\n<p>We hope you like what we have to offer and encourage you to contact us with any queries you may have. We\'re sure we can be of help.</p>','Welcome to Best eCommerce UK','','inherit','closed','closed','','15-revision-12','','','2011-07-08 15:23:15','2011-07-08 15:23:15','',15,'http://bestecommerce-uk.com/2011/07/15-revision-12/',0,'revision','',0),(407,1,'2011-07-21 18:55:33','2011-07-21 18:55:33','<!-- [one_third]First column of content.[/one_third]\r\n[one_third]Second column of content.[/one_third]\r\n[one_third_last]Last column of content.[/one_third_last]\r\n-->\r\n\r\n[tabs]\r\n	[tab title=\"Site Management\"]\r\n<h3>Site Management</h3>\r\n[bullet_list icon=\"check\"]\r\n        <ul>\r\n<li>Control multiple websites and stores from one administration panel with ability to share as much or as little information as needed</li>\r\n<li>Administration of permissions, system roles and users</li>\r\n<li>Web Services API for easy integration with third-party applications</li>\r\n<li>Fully 100% customizable design using templates, or bespoke design</li>\r\n<li>Support for Customer Groups</li>\r\n<li>Content Management System for General or Site Information Pages</li>\r\n<li>Google Website Optimizer Integration for A/B and Multivariate Testing</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n<h3>Analytics and reporting</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>Integrated with Google Analytics</li>\r\n<li>Admin Dashboard for Report Overview</li>\r\n<li>Sales Reports</li>\r\n<li>RSS feed for New Orders</li>\r\n<li>Tax Report</li>\r\n<li>Abandoned Shopping Cart Report</li>\r\n<li>Best Viewed Products Report</li>\r\n<li>Best Purchased Products Report</li>\r\n<li>Low Stock Report</li>\r\n<li>Search Terms Report</li>\r\n<li>Product Reviews Report</li>\r\n<li>RSS feed for New Reviews</li>\r\n<li>Tags Report</li>\r\n<li>RSS feed for New Tags</li>\r\n<li>Coupon Usage Report</li>\r\n<li>Total Sales Invoiced</li>\r\n<li>Total Sales Refunded</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n\r\n\r\n\r\n[/tab]\r\n\r\n	[tab title=\"SEO and Marketing\"]\r\n<h3>Search Engine Optimisation</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>100% Search Engine Friendly</li>\r\n<li>Google Site Map</li>\r\n<li>Search Engine Friendly URL’s</li>\r\n<li>URL Rewrites give full control of URL’s</li>\r\n<li>Meta-information for products and categories</li>\r\n<li>Auto-generated Site Map for display on site</li>\r\n<li>Auto-Generated Popular Search Terms Page</li>\r\n	</ul>\r\n[/bullet_list]\r\n\r\n[bullet_list icon=\"check\"]\r\n<h3>Marketing Promotions and Tools</h3>\r\n	<ul>\r\n<li>Poll users to establish their preferences</li>\r\n<li>Newsletter Facility</li>\r\n<li>Landing Page Tool for Campaigns</li>\r\n<li>Catalogue Promotional Pricing by percentage or fixed amount with ability to restrict to stores, categories and products</li>\r\n<li>Flexible Coupons (pricing rules) with ability to restrict to stores, customer groups, time period, products, and categories</li>\r\n<li>Free Shipping Options</li>\r\n<li>Multi-Tier Pricing for quantity discounts</li>\r\n<li>Bundled Products Options</li>\r\n<li>Customer Group-specific pricing and group-specific tier pricing</li>\r\n<li>Recently Viewed Products</li>\r\n<li>Recently Compared Items</li>\r\n<li>New Items Promotional Tool</li>\r\n<li>Up-sells in Shopping Cart</li>\r\n<li>Cross-sells on product pages</li>\r\n<li>Send to a Friend for all visitors, or registered users only</li>\r\n<li>Send Wishlist to a Friend by Email or RSS</li>\r\n<li>RSS Feeds for New Products, New Specials and New Tags</li>\r\n<li>Auto-generated Site Map</li>\r\n<li>Google Site Map</li>\r\n			</ul>\r\n[/bullet_list]\r\n[/tab]\r\n\r\n[tab title=\"Order Management\"]\r\n<h3>Orders</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>View, edit, create and fulfill orders from admin panel</li>\r\n<li>Create one or multiple invoices, shipments and credit memos per order to allow for split-fulfillment</li>\r\n<li>Print invoices and packing slips</li>\r\n<li>Call Center (phone) order creation\r\nIncludes ability to create new customer, or select\r\nexisting customer and view shopping cart, wishlist,\r\nlast ordered items, and compared products list, as\r\nwell as select addresses, give discounts and assign\r\ncustom prices</li>\r\n<li>Create re-orders for customers from administration panel</li>\r\n<li>Email Notifications of Orders</li>\r\n<li>RSS feed of New Orders</li>\r\n			</ul>\r\n[/bullet_list]\r\n\r\n<h3>Checkout, Payment and Shipping</h3>\r\n[bullet_list icon=\"check\"]\r\n	<ul>\r\n<li>One-Page Checkout</li>\r\n<li>Support for Integration of real-time shipping rates from: UPS, UPS XML (account rates), FedEx (account\r\nrates) and DHL</li>\r\n<li>Support for Integration with Amazon Payments</li>\r\n<li>Support for Integration with multiple PayPal gateways</li>\r\n<li>Support for Integration with Authorize.net</li>\r\n<li>Support for Integration with Google Checkout (Level 2)</li>\r\n<li>Accept Cheques/Money Orders</li>\r\n<li>Accept Purchase Orders</li>\r\n<li>SSL security support for orders on both front-end and back-end</li>\r\n<li>Guest Checkout and Checkout with account to use address book</li>\r\n<li>Shopping Cart with tax and shipping estimates</li>\r\n<li>Option for account creation at beginning of checkout</li>\r\n<li>Saved Shopping Carts with configurable expiration time</li>\r\n<li>Shipping to multiple addresses in one order</li>\r\n<li>On-
