<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>jameskoster.co.uk</title>
	<atom:link href="http://jameskoster.co.uk/feed/" rel="self" type="application/rss+xml" />
	<link>http://jameskoster.co.uk</link>
	<description>Just another WordPress theme designer</description>
	<lastBuildDate>Fri, 03 Feb 2012 18:36:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Brand new &#8211; WooCommerce codex &amp; documentation suite</title>
		<link>http://jameskoster.co.uk/blog/brand-new-woocommerce-codex-documentation-suite/</link>
		<comments>http://jameskoster.co.uk/blog/brand-new-woocommerce-codex-documentation-suite/#comments</comments>
		<pubDate>Fri, 03 Feb 2012 18:07:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[woocommerce]]></category>

		<guid isPermaLink="false">http://jameskoster.co.uk/?p=608</guid>
		<description><![CDATA[For the few people who end up on my site...]]></description>
			<content:encoded><![CDATA[<p>For the few people who end up on my site looking for help with <a href="http://woothemes.com/woocommerce/" title="WooCommerce - eCommerce plugin for WordPress">WooCommerce</a>, this one&#8217;s for you!</p>
<p>Earlier in the week we <a href="http://www.woothemes.com/2012/02/woocommerce-1-4-is-released/" title="WooCommerce 1.4 is release">released WooCommerce 1.4</a> baked in to which there are a butt-load of new features and code improvements/optimisations.</p>
<p>But that&#8217;s not all, we also <a href="http://www.woothemes.com/2012/02/new-woocommerce-support-resources/">improved our support resources</a> dramatically with the addition of two new sections on the <a href="http://woothemes.com">WooThemes</a> web site;</p>
<ol>
<li><a href="http://www.woothemes.com/woocommerce-docs/" title="WooCommerce documentation">A Dedicated WooCommerce Documentation</a></li>
<li><a href="http://www.woothemes.com/support-forum/?viewforum=150" title="Public WooCommerce forum">A Community Forum</a></li>
</ol>
<p>The new documentation suite is a big improvement on the restrictive Codex we had previously. Running on our own <a href="http://www.woothemes.com/2011/11/wikeasi/">Wikeasi</a> theme it&#8217;s now much easier to browse/use, and more importantly it is much easier for us (and our third party developers) to update. The user guide is now rich in detail, the snippets library expanded and the core functionality of the plugin better documented. Eventually, all WooCommerce extensions will be documented here also. This is a resource that will grow over time and become a cornerstone for those looking to build WooCommerce stores, or extend WooCommerce itself via plugins &#038; themes.</p>
<p>The community forum is a big one for us, as all our support forums were only accessible to customers. However, with a large number of users using WooCommerce on it&#8217;s own, we wanted to give them a platform to discuss the plugin with their peers, showcase their work and generally get in touch with the growing WooCommerce community.</p>
<h2>What&#8217;s next?</h2>
<p>It&#8217;s certainly been an exciting week for us, and with 1.4 out the door we will be aiming to increase momentum as we go into February. Indeed we have some awesome extensions coming this month plus a new theme or two. Stay tuned!</p>
]]></content:encoded>
			<wfw:commentRss>http://jameskoster.co.uk/blog/brand-new-woocommerce-codex-documentation-suite/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Layered paper effect using CSS3 box shadows</title>
		<link>http://jameskoster.co.uk/snippets/layered-paper-effect-using-css3-box-shadows/</link>
		<comments>http://jameskoster.co.uk/snippets/layered-paper-effect-using-css3-box-shadows/#comments</comments>
		<pubDate>Wed, 25 Jan 2012 22:58:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Snippets]]></category>
		<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://jameskoster.co.uk/?p=593</guid>
		<description><![CDATA[Just a quick one today. I originally planned to achieve...]]></description>
			<content:encoded><![CDATA[<p>Just a quick one today. I originally planned to achieve this &#8220;layered paper&#8221; effect using <code>:before</code> and <code>:after</code> pseudo elements, but then set about trying to do it purely using the CSS3 box-shadow property. That way I&#8217;d have an <code>:after</code> free and can add as many &#8220;layers&#8221; as I want.</p>
<p>Pretty straight-forward, but quite a neat solution I think!</p>
<p>Here&#8217;s the end result;</p>
<div class="layers">
Wow, some layers, woohoo
</div>
<p>And here&#8217;s the CSS to achieve it (don&#8217;t forget to add vendor prefixes if you use this);</p>
<pre class="brush: css">
/* Layered Paper */
.layers {
	text-align: center;
	padding:1.618em;
	margin-bottom:1.618em;
	font-weight: bold;

	background: #eee;
	box-shadow:
		0 1px 1px rgba(0,0,0,0.15), /* The top layer shadow */
		0 10px 0 -5px #eee, /* The second layer */
		0 10px 1px -4px rgba(0,0,0,0.15), /* The second layer shadow */
		0 20px 0 -10px #eee, /* The third layer */
		0 20px 1px -9px rgba(0,0,0,0.15); /* The third layer shadow */
}
</pre>
<p>Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://jameskoster.co.uk/snippets/layered-paper-effect-using-css3-box-shadows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Argentum &#8211; a mobile optimised WooCommerce theme</title>
		<link>http://jameskoster.co.uk/work/argentum-a-mobile-optimised-woocommerce-theme/</link>
		<comments>http://jameskoster.co.uk/work/argentum-a-mobile-optimised-woocommerce-theme/#comments</comments>
		<pubDate>Sun, 16 Oct 2011 12:02:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[woocommerce]]></category>
		<category><![CDATA[woothemes]]></category>

		<guid isPermaLink="false">http://jameskoster.co.uk/?p=577</guid>
		<description><![CDATA[A few days ago we launched Argentum, the first fully...]]></description>
			<content:encoded><![CDATA[<p>A few days ago we <a href="http://www.woothemes.com/2011/10/argentum/" title="Argentum">launched Argentum</a>, the first fully mobile optimised WooCommerce theme.</p>
<p>It was an exciting moment for me personally as I designed the theme myself from the ground up. The Markup is valid HTML5 and CSS3 has been used throughout to reduce bandwidth consuption, improve accessibility and achieve some neat little animations.</p>
<p>Best of all Argentum is fully mobile optimised, truly putting your WordPress shop in the hands of your customers.</p>
<p>Take a look at the <a href="http://demo.woothemes.com/?name=argentum" title="Argentum demo">demo</a> or <a href="http://www.woothemes.com/2011/10/argentum/" title="Check out Argentum">buy Argentum now</a>.</p>
<p>If you use the coupon <strong>ARGENTUM11</strong> you can get an 11% discount off this theme. Woo!</p>
]]></content:encoded>
			<wfw:commentRss>http://jameskoster.co.uk/work/argentum-a-mobile-optimised-woocommerce-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>1 week later &#8211; the WooCommerce crater</title>
		<link>http://jameskoster.co.uk/blog/1-week-later-the-woocommerce-crater/</link>
		<comments>http://jameskoster.co.uk/blog/1-week-later-the-woocommerce-crater/#comments</comments>
		<pubDate>Tue, 04 Oct 2011 21:01:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://jameskoster.co.uk/?p=547</guid>
		<description><![CDATA[Today marks a week since we launched WooCommerce &#8211; a...]]></description>
			<content:encoded><![CDATA[<p>Today marks a week since we <a title="WooCommerce Launch post" href="http://www.woothemes.com/2011/09/woocommerce-has-arrived/">launched WooCommerce</a> &#8211; a brand new eCommerce plugin for WordPress. So far it has been, without doubt the most exciting week of my entire career. And so, for no other reason perhaps, than for me to look back on at a later date, I thought I&#8217;d compile some information on our launch. <span id="more-547"></span></p>
<p>In seven days we&#8217;ve seen:</p>
<ul>
<li><a href="http://wordpress.org/extend/plugins/woocommerce/" title="Download WooCommerce">~5000 downloads</a></li>
<li>190 support requests relating directly to WooCommerce and it&#8217;s associated <a title="WooCommerce themes" href="http://www.woothemes.com/themes/woocommerce-themes/">themes</a> &amp; <a title="WooCommerce extensions" href="http://www.woothemes.com/extensions/woocommerce-extensions/">extensions</a></li>
<li>Thousands of <a href="http://twitter.com/#!/search/woocommerce%20%3A)" title="Positive Tweets">positive tweets</a></li>
<li>1 feature on a little known <a href="http://techcrunch.com/2011/09/27/woothemes-launches-woocommerce-to-turn-wordpress-sites-into-online-shops/" title="TechCrunch">tech blog</a></li>
</ul>
<p>There have also been favourable words from some prominent figures in the WordPress community:</p>
<blockquote><p>
&ldquo;Great stuff from the Woo team here. I’ve code reviewed quite a bit of it and I’m comfortable saying WooCommerce is the best WordPress-native e-commerce solution available. I’m convinced enough that we’re switching to it from another e-commerce solution on a project that’s already months into development.&rdquo;</p>
<p><cite><a title="Alex Kings words on WooCommerce" href="http://alexking.org/blog/2011/09/29/woocommerce">Alex King &#8211; Crowd Favorite</a></cite>
</p></blockquote>
<blockquote><p>
&ldquo;Would I recommend WooCommerce to others? Yes I would.&rdquo;</p>
<p><cite><a title="Ben Townsend's WooCommerce review" href="http://wpcandy.com/reviewed/woocommerce">Ben Townsend &#8211; wpcandy.com</a></cite>
</p></blockquote>
<blockquote><p>
&ldquo;One of the best things about the back-end of WooCommerce is that it blends in seamlessly as if it were part of WordPress all along. They did a great job of using existing elements that are supported within WordPress such as the tabs, file uploader, and my favorite little feature, the calendar. I only referred to the readme file once during configuration…I was able to configure WooCommerce without any issues.&rdquo;</p>
<p><cite><a title="Jeff Chandlers WooCommerce review" href="http://www.wptavern.com/plugin-review-woocommerce">Jeff Chandler &#8211; WPTavern</a></cite>
</p></blockquote>
<p>So by-and-by I would say it has been an extremely satisfying launch. Let&#8217;s see what next week holds!</p>
]]></content:encoded>
			<wfw:commentRss>http://jameskoster.co.uk/blog/1-week-later-the-woocommerce-crater/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WooCommerce is here!</title>
		<link>http://jameskoster.co.uk/work/woocommerce-is-here/</link>
		<comments>http://jameskoster.co.uk/work/woocommerce-is-here/#comments</comments>
		<pubDate>Tue, 27 Sep 2011 16:18:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://jameskoster.co.uk/?p=542</guid>
		<description><![CDATA[Since I joined WooThemes last month, Mike and I have...]]></description>
			<content:encoded><![CDATA[<p>Since I <a href="/blog/im-a-woo-ninja/" title="I'm a Woo Ninja">joined WooThemes</a> last month, <a href="http://mikejolley.com" title="Mike Jolley">Mike</a> and I have been frantically working away at WooThemes brand new eCommerce plugin (WooCommerce) plus a bunch of themes, child themes and extensions to supplement it.</p>
<p>Today, those products have been officially launched. I&#8217;m extremely excited and proud of what we&#8217;ve achieved in so little time, and can&#8217;t wait to carry on the evolution of the WooLabs. So <a href="http://www.woothemes.com/?p=13338" title="WooCommerce is here">go check it out</a>.</p>
<p>Onwards!</p>
]]></content:encoded>
			<wfw:commentRss>http://jameskoster.co.uk/work/woocommerce-is-here/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Coming soon</title>
		<link>http://jameskoster.co.uk/work/coming-soon/</link>
		<comments>http://jameskoster.co.uk/work/coming-soon/#comments</comments>
		<pubDate>Wed, 21 Sep 2011 18:26:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://jameskoster.co.uk/?p=537</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://jameskoster.co.uk/work/coming-soon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I&#8217;m a Woo Ninja</title>
		<link>http://jameskoster.co.uk/blog/im-a-woo-ninja/</link>
		<comments>http://jameskoster.co.uk/blog/im-a-woo-ninja/#comments</comments>
		<pubDate>Wed, 21 Sep 2011 18:13:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[woothemes]]></category>

		<guid isPermaLink="false">http://jameskoster.co.uk/?p=523</guid>
		<description><![CDATA[I should have written this post a couple of weeks...]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-531" title="Woo-Ninja_kicking-small" src="http://jameskoster.co.uk/wp-content/uploads/2011/09/Woo-Ninja_kicking-small.png" alt="" width="128" height="128" /></p>
<p>I should have written this post a couple of weeks ago but frankly I&#8217;ve been too busy. Here&#8217;s why;</p>
<p>During August I was given the incredible opportunity to join <a href="http://woothemes.com">WooThemes</a>, a company I&#8217;ve admired for years on a permanent basis. <a href="http://www.woothemes.com/2011/08/the-good-stuff-new-team-members-woolabs-woocommerce-plugins/">I happily accepted the offer</a> and officially started on September 1st.</p>
<p>My role at Woo is to head up their &#8220;Labs&#8221; division. This will involve pioneering new technologies in app and eCommerce themes as well as managing the direction of the much anticipated WooCommerce plugin alongside my good buddy <a href="http://mikejolley.com">Mike Jolley</a>.</p>
<p>I&#8217;m extremely excited to get back into the challenge of designing products rather than one-off web sites. That creative freedom has always brought the best out of me ever since I dipped my toe into this industry nearly 10 years ago.</p>
]]></content:encoded>
			<wfw:commentRss>http://jameskoster.co.uk/blog/im-a-woo-ninja/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My first WordCamp</title>
		<link>http://jameskoster.co.uk/blog/my-first-wordcamp/</link>
		<comments>http://jameskoster.co.uk/blog/my-first-wordcamp/#comments</comments>
		<pubDate>Mon, 18 Jul 2011 19:09:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://jameskoster.co.uk/?p=504</guid>
		<description><![CDATA[This weekend I attended my first WordCamp, down South in...]]></description>
			<content:encoded><![CDATA[<p>This weekend I attended my first WordCamp, down South in Portsmouth. I&#8217;ve been to other web conferences (notably DIBI earlier this year) but as a WordPress nut I was really excited to attend an event purely focused on my favourite CMS. So, how was it? <em>Inspiring</em> &amp; <em>humbling</em>.<span id="more-504"></span></p>
<h3>Inspiring</h3>
<p>We work away on our own projects in our own little bubbles day in day out. We use Twitter, <del>Facebook</del> <ins>Google+</ins> and other social networks to interact with our peers online. But nothing compares to that physical contact with others who share your passion. I met so many people as passionate about WordPress as I am, great designers, great developers and great businesspeople. It was a massive inspiration to simply be in that same place, and feed off the positive WordPress vibes.</p>
<h3>Humbling</h3>
<p>When <a href="http://mikejolley.com" title="Mike Jolley">Mike</a> and I were on the way down we hypothesised how we might react to anyone who had witnessed our work. To my great surprise, almost <em>everyone</em> we talked to were familiar with us in one way or another. Not only that, <a href="http://jigoshop.com" title="WordPress eCommerce plugin">Jigoshop</a> was even mentioned in some of the speakers keynotes. Wow.</p>
<h3>Will I go back next year?</h3>
<p>I learnt so much but more importantly I feel as though I made friends. It&#8217;s great to get a taste of how many people there are out there, all dedicating time to supporting, enhancing and even earning a living using WordPress. Will I go back next year? Hell yeah!</p>
]]></content:encoded>
			<wfw:commentRss>http://jameskoster.co.uk/blog/my-first-wordcamp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Say &#8216;hello&#8217; to SupportPress</title>
		<link>http://jameskoster.co.uk/work/say-hello-to-supportpress/</link>
		<comments>http://jameskoster.co.uk/work/say-hello-to-supportpress/#comments</comments>
		<pubDate>Wed, 06 Jul 2011 13:29:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[woothemes]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://jameskoster.co.uk/?p=497</guid>
		<description><![CDATA[Today, the second theme developed by a collaboration of myself,...]]></description>
			<content:encoded><![CDATA[<p>Today, the second theme developed by a collaboration of myself, <a title="Mikes web site" href="http://mikejolley.com">Mike Jolley</a> and <a title="Woo Themes" href="http://woothemes.com">Woo Themes</a> is available to purchase.<span id="more-497"></span></p>
<h3>SupportPress</h3>
<p><a href="http://www.woothemes.com/2011/07/a-help-desk-app-built-on-wordpress/" title="Buy SupportPres now"><img src="http://www.woothemes.com/wp-content/uploads/2011/07/featured-mobile-support-560x239.jpg" alt="SupportPress" /></a></p>
<p>Following in <a title="FaultPress bug tracking app style theme" href="http://www.woothemes.com/2011/05/faultpress/">FaultPress&#8217;</a> footsteps, SupportPress is a theme which creates a help desk / knowledgebase application using WordPress core functionality.</p>
<p>FaultPress is focused on tracking bugs and developing a product as a team by fixing those bugs along the way. SupportPress is different in that it&#8217;s priority is creating a knowldegebase for your users. They can refer to this pool of information which will lead to the resolution of  a large number of problems and frequently asked questions. The knowledgebase itself grows organically with the resolution of newly reported issues with your product and as users vote up (or down) helpful (or unhelpful) knowledgebase entries.</p>
<p>In laymans terms, your users can submit problems, incidents and questions in the form of tickets. These are then acted upon by your designated agents who can delegate reported issues as tasks between other team members. They can also interact directly with the user to resolve any issues.</p>
<p>There&#8217;s a bunch of other cool features such as internal messaging, a smart dashboard, announcements and full mobile optimisation.</p>
<p>If you&#8217;re looking for an affordable and effective way to support your product in a contained environment then I&#8217;d definitely encourage you to take a look at SupportPress.</p>
<p>You can also get a cool 11% discount if you use the discount code &#8220;<code>SUPPORTPRESS11</code>&#8221; so go <a href="http://www.woothemes.com/2011/07/a-help-desk-app-built-on-wordpress/" title="Buy SupportPress now!">buy SupportPress now</a> and I&#8217;ll be your best friend.</p>
]]></content:encoded>
			<wfw:commentRss>http://jameskoster.co.uk/work/say-hello-to-supportpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Project Effort &amp; Responsibility</title>
		<link>http://jameskoster.co.uk/blog/project-effort-and-responsibility/</link>
		<comments>http://jameskoster.co.uk/blog/project-effort-and-responsibility/#comments</comments>
		<pubDate>Thu, 30 Jun 2011 23:14:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://jameskoster.co.uk/?p=492</guid>
		<description><![CDATA[A simple way to determine how much effort you&#8217;ve put...]]></description>
			<content:encoded><![CDATA[<p>A simple way to determine how much effort you&#8217;ve put in to a project individually is to ask your self what level of responsibility you&#8217;d accept if the project were to fail.</p>
]]></content:encoded>
			<wfw:commentRss>http://jameskoster.co.uk/blog/project-effort-and-responsibility/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

