<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule" version="2.0">

<channel>
	<title>Bluelime Media Vancouver Web Development</title>
	
	<link>http://www.bluelimemedia.com</link>
	<description>Interactive Solutions with a Twist</description>
	<lastBuildDate>Mon, 22 Jun 2009 22:20:16 +0000</lastBuildDate>
	
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<creativeCommons:license>http://creativecommons.org/licenses/by-sa/2.0/</creativeCommons:license><image><link>http://creativecommons.org/licenses/by-sa/2.0/</link><url>http://creativecommons.org/images/public/somerights20.gif</url><title>Some Rights Reserved</title></image><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/BluelimeMediaWeblog" type="application/rss+xml" /><feedburner:emailServiceId xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">BluelimeMediaWeblog</feedburner:emailServiceId><feedburner:feedburnerHostname xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">http://feedburner.google.com</feedburner:feedburnerHostname><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
		<title>Enhance your website with Custom Fields</title>
		<link>http://www.bluelimemedia.com/2009/06/22/enhance-your-website-with-custom-fields/</link>
		<comments>http://www.bluelimemedia.com/2009/06/22/enhance-your-website-with-custom-fields/#comments</comments>
		<pubDate>Mon, 22 Jun 2009 22:20:16 +0000</pubDate>
		<dc:creator>Christine</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.bluelimemedia.com/?p=807</guid>
		<description><![CDATA[Over the years of converting other graphic designer&#8217;s design into WordPress templates, I&#8217;ve had to think of ways to keep the code simple and easy for clients to maintain the site once live. Working on a few challenging design lately has given me the opportunity to look at using custom fields.
You&#8217;ll find custom fields in [...]]]></description>
			<content:encoded><![CDATA[<p>Over the years of converting other graphic designer&#8217;s design into WordPress templates, I&#8217;ve had to think of ways to keep the code simple and easy for clients to maintain the site once live. Working on a few challenging design lately has given me the opportunity to look at using <a href="http://codex.wordpress.org/Using_Custom_Fields">custom fields</a>.</p>
<p>You&#8217;ll find custom fields in your admin panel under all post and page text areas. These custom fields allow you to add extra information, technically termed meta-data, and allows you to add jazz up your posts or pages. Here are a few examples of how custom fields can be used:</p>
<p><span id="more-807"></span></p>
<h4>Add a style to your header</h4>
<p>Navigating through the various topic of one of our latest projects, &#8220;<a href="http://www.thechallengeseries.ca">The Challenge Series</a>&#8221; you&#8217;ll notice that the <a href="http://www.thechallengeseries.ca/chapter-01/sustainable-communities/">sustainability</a> section has a green title, while <a href="http://www.thechallengeseries.ca/chapter-01/history/">history</a> is orange, <a href="http://www.thechallengeseries.ca/chapter-01/policy/">policy</a> red and <a href="http://www.thechallengeseries.ca/chapter-01/design-concepts/">design concepts</a> blue.</p>
<p>This was achieved by doing the following:<br />
1. Adding a custom field called Colour and assigning it a value of green, orange, red of blue.<br />
<img class="alignnone size-full wp-image-808" title="Custom Field" src="http://www.bluelimemedia.com/blog/wp-content/uploads/custom-field.gif" alt="Custom Field" width="580" height="110" /></p>
<p>2. Editing the code in my index.php as follows:<br />
<code>&lt;h1Colour"; echo get_post_meta($post-&gt;ID, $key, true); ?&gt;"&gt;&lt;?php the_title(); ?&gt;&lt;/h1&gt;</code></p>
<p>3. Setting up the appropriate styles in my CSS as follows:<br />
<code>h1.orange {background:#F26F21 }<br />
h1.green {background:#5D9632}<br />
h1.red {background:#B22217}<br />
h1.blue {background:#00728E}</code></p>
<h4>Insert an image outside your content area</h4>
<p>During the build of the latest version of the <a href="http://www.crisiscentre.bc.ca/about-us/">Crisis Centre</a> website, the design required that a unique image be inserted in the top right hand corner of each page. Inserting the image within the main content entry would have required me to fiddle with the padding of my paragraph tags. Instead I opted to use a custom field and added this piece of code to my index.php template:</p>
<p><code>&lt;div id="photo"&gt;&lt;img src="&lt;?php bloginfo('template_directory'); ?&gt;/images/photos/&lt;?php $key="photo"; echo get_post_meta($post-&gt;ID, $key, true); ?&gt;" alt="" border="0" /&gt;&lt;/div&gt;</code></p>
<p>This line of code, simply pulls the image specified in the custom field and inserts in a div tag which has its own unique style.</p>
<p>Although custom fields, can get a bit tricky, especially when using more than one per entry, they allow you to enhance your site and give you much more design freedom.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bluelimemedia.com/2009/06/22/enhance-your-website-with-custom-fields/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fairly Painless WordPress 2.8 upgrades</title>
		<link>http://www.bluelimemedia.com/2009/06/17/wordpress-2-8-upgrade/</link>
		<comments>http://www.bluelimemedia.com/2009/06/17/wordpress-2-8-upgrade/#comments</comments>
		<pubDate>Thu, 18 Jun 2009 02:49:29 +0000</pubDate>
		<dc:creator>Christine</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.bluelimemedia.com/?p=795</guid>
		<description><![CDATA[I had the &#8220;privilege&#8221; of updating 47 websites today to the new WordPress 2.8 version. All of these sites were updated from version 2.7 or 2.71 so as you can imagine, there were no major issues. While taking care of these updates, I also took a look at all of the plugin upgrades and discovered [...]]]></description>
			<content:encoded><![CDATA[<p>I had the &#8220;privilege&#8221; of updating 47 websites today to the new WordPress 2.8 version. All of these sites were updated from version 2.7 or 2.71 so as you can imagine, there were no major issues. While taking care of these updates, I also took a look at all of the plugin upgrades and discovered only three plugins that were slightly problematic.</p>
<p>Following the upgrade and applying the latest patch <a href="http://www.deliciousdays.com/cforms-plugin">CForms</a> failed to work properly and the following error popped up:</p>
<p><code>Fatal error: Cannot redeclare class cf_mail in .../public_html/wp-content/plugins/cforms/lib_email.php on line 3</code></p>
<p><span id="more-795"></span><br />
I did a quick search on Google, deleted and re-installed the plugin, but because I was in a hurry and didn&#8217;t want to leave the site without a working form, I simply decided to ditch the plugin and opted for <a href="http://wordpress.org/extend/plugins/contact-form-7/">Contact Form 7</a> instead. CForms has worked very well for me in the past, but I&#8217;m a bit uneasy and confused with the fact that they are no longer in the WordPress.org plugin repository, so I think that I&#8217;ll just stick to Contact Form 7 from now on.</p>
<p>When upgrading other websites that use CForm, I opted not to go through the plugin upgrade and will deal with those some other time.</p>
<p>Both <a href="http://wordpress.org/extend/plugins/my-category-order/">My Category Order</a> and <a href="http://wordpress.org/extend/plugins/nextgen-gallery/">NextGEN Gallery</a> required an additional step once the update was applied. Following the My Category Order upgrade, I noticed that the categories were gone from the sidebar. I simply went to the Posts &gt; My Category Order tab in the admin and clicked the button to re-order the categories and bingo, that did the trick.</p>
<p>Similarly, with the NextGEN Gallery, following the upgrade, I noticed that my slideshows no longer worked. Navigating to the Gallery section in the admin revealed a final step. Once the upgrade complete, the slideshows reappeared.</p>
<p>When building websites I try to minimize my use of plugins and always delete unactivated ones, but once live who knows what plugins will be installed by the client. Having said that, when looking at the list of plugins used on 47 sites, I&#8217;ve been impressed with their compatibility so far. All of the following plugins work perfectly:</p>
<ul>
<li>Add to Any: Share/Bookmark/Email Button</li>
<li>Akismet</li>
<li>All in One SEO Pack</li>
<li>Audio player</li>
<li>Blubrry PowerPress</li>
<li>Custom Query String</li>
<li>Digg This</li>
<li>Email Immunizer</li>
<li>FeedBurner FeedSmith</li>
<li>Fuzzy Recent Posts</li>
<li>GD Star Rating</li>
<li>Get Recent Comments</li>
<li>Google XML Sitemaps</li>
<li>is_child</li>
<li>Kimili Flash Embed</li>
<li>My Page Order</li>
<li>Ozh&#8217; Better Feed</li>
<li>pb-embedFlash</li>
<li>Post Content Filter</li>
<li>Quotes Collection</li>
<li>Redirection</li>
<li>Revision Control</li>
<li>Robots Meta</li>
<li>Secure WordPress</li>
<li>SlideShare</li>
<li>SEO Slugs</li>
<li>SEO Title Tag</li>
<li>ShareThis</li>
<li>TinyMCE Advanced</li>
<li>Transpose Email</li>
<li>What Would Seth Godin Do</li>
<li>WordPress Database Backup</li>
<li>WP Audio Player</li>
<li>wp-cache</li>
<li>wp supercache</li>
<li>WP-FLV</li>
<li>WP-PostViews</li>
<li>WP-SpamFree</li>
<li>Yet Another Related Posts Plugin</li>
<li>ZenphotoPress</li>
</ul>
<p>All in all this was a good day.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bluelimemedia.com/2009/06/17/wordpress-2-8-upgrade/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Open Web Vancouver opens with a Pirate Party and a look at Women in Open Source</title>
		<link>http://www.bluelimemedia.com/2009/06/11/open-web-vancouver/</link>
		<comments>http://www.bluelimemedia.com/2009/06/11/open-web-vancouver/#comments</comments>
		<pubDate>Fri, 12 Jun 2009 04:06:52 +0000</pubDate>
		<dc:creator>Christine</dc:creator>
				<category><![CDATA[Bluelime News]]></category>
		<category><![CDATA[Content Writing]]></category>
		<category><![CDATA[Cool Stuff]]></category>
		<category><![CDATA[Marketing]]></category>

		<guid isPermaLink="false">http://www.bluelimemedia.com/?p=784</guid>
		<description><![CDATA[I must confess, I wasn&#8217;t expecting much from the Open Web Vancouver conference. I read the schedule, and perhaps the strong emphasis on Drupal turned me off, but I didn&#8217;t find myself salivating like I do when I go to An Event Apart&#8217;s website. And as the saying goes, you pay for what you get; [...]]]></description>
			<content:encoded><![CDATA[<p>I must confess, I wasn&#8217;t expecting much from the <a href="http://www.openwebvancouver.ca">Open Web Vancouver</a> conference. I read the schedule, and perhaps the strong emphasis on Drupal turned me off, but I didn&#8217;t find myself salivating like I do when I go to <a href="http://aneventapart.com/">An Event Apart</a>&#8217;s website. And as the saying goes, you pay for what you get; so how good can a $150 conference be? <strong>Today&#8217;s conference proved me wrong.</strong></p>
<p>This morning&#8217;s session was opened by two keynote speakers and left me inspired and eager to learn more about the Open Source community.</p>
<p>The first keynote was given by <a href="http://www.openwebvancouver.ca/node/81">Rick Falkvinge</a> on one of Sweden&#8217;s political party, <a href="http://en.wikipedia.org/wiki/Pirate_Party">the Pirate Party,</a> whose platform is to reform laws regarding copyrights and patents and other civil liberties issues. The Pirate Party succeeded in gaining popularity and attention simply by using the Internet and very little money. In fact their campaign budget during the last election consisted of only $50K. As a result of the communication tools and methods they&#8217;ve used, they are now the political party with the largest percentage of voters 30 years old and younger. This of course as alarmed other politicians who have never been able to reach out to this age group.</p>
<p>Now that the Pirate Party has secured a seat in the European Parliament, it will be interesting to see if other political parties start discussing issues such as privacy and file sharing. Just like Al Gore has put Global Warming on everyone&#8217;s mind, Rick Falvinge is spreading the word about what needs to be done to create a better online world for all of us and he deserved the standing ovation which followed his presentation.</p>
<p>Following this great keynote, came <a href="http://www.openwebvancouver.ca/node/34">Angie Byron</a> who spoke about <a href="http://www.openwebvancouver.ca/node/98">Women in Open Source</a> or rather lack of. I was a bit surprised that this topic was chosen and discussed. I&#8217;ve been working as a so called &#8220;geek&#8221; for a over a decade and never experienced any sexism at work or conference and Angie admitted herself that until she started researching the numbers, didn&#8217;t think there was a problem either. Turns out the percentage of women in Open Source is staggeringly low. The reasons and solutions that were discussed were obvious and applicable to all minorities, not just women. At least they felt obvious to me, but a few hours later, I read about <a href="http://www.geekgirlsguide.com/blog/2009/06/11/98/prude_or_professional_by_courtney_remes">the incident</a> at <a href="http://www.flashbelt.com/">Flashbelt</a>&#8217;s conference just a few days ago. It seems like a lot of boys think that the saying <em>boys will be boys</em> still stands and should simply be accepted.</p>
<p>Angie provided great advice on how to create a safe and inviting community and how to stop tolerating bullshit. The gem, for me, were her views on contribution to Open Source. Having worked with Open Source during all of my coding years, I&#8217;ve realised that I&#8217;ve used the stuff, but never really contributed. Providing contribution whether it be marketing, documenting, designing and of course coding, is a great way to empower yourself and feel like you are part of the team.</p>
<p>I look forward to learn more during tomorrow&#8217;s event.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bluelimemedia.com/2009/06/11/open-web-vancouver/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The Challenge Series built on WordPress</title>
		<link>http://www.bluelimemedia.com/2009/06/07/the-challenge-series-built-on-wordpress/</link>
		<comments>http://www.bluelimemedia.com/2009/06/07/the-challenge-series-built-on-wordpress/#comments</comments>
		<pubDate>Sun, 07 Jun 2009 17:22:51 +0000</pubDate>
		<dc:creator>Christine</dc:creator>
				<category><![CDATA[Bluelime News]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.bluelimemedia.com/?p=776</guid>
		<description><![CDATA[I was very pleased to read a recent article on the WordPress blog about Ford choosing the WordPress platform for their new website: &#8220;The Ford Story&#8220;. This new website aims to show Ford&#8217;s commitment towards getting new, high-quality, fuel-efficient cars and trucks on the road and uses WordPress as a CMS to deliver a wide [...]]]></description>
			<content:encoded><![CDATA[<p>I was very pleased to read a recent article on the <a href="http://publisherblog.automattic.com/2009/06/04/the-ford-story/">WordPress blog</a> about Ford choosing the WordPress platform for their new website: &#8220;<a href="http://www.thefordstory.com/">The Ford Story</a>&#8220;. This new website aims to show Ford&#8217;s commitment towards getting new, high-quality, fuel-efficient cars and trucks on the road and uses WordPress as a CMS to deliver a wide variety of static content, videos, photos, and dynamic updates.</p>
<p>I recently came to the same decision when building a website for the <a href="http://www.thechallengeseries.ca">Challenge Series</a> which is a celebration of the planning, design and building of Vancouver’s first sustainable neighbourhood – Millennium Water: The Southeast False Creek Olympic Village.</p>
<p><a href="http://www.thechallengeseries.ca"><img class="alignnone size-full wp-image-779" title="Screenshot of the Challenge Series website homepage" src="http://www.bluelimemedia.com/blog/wp-content/uploads/cs1.gif" alt="Screenshot of the Challenge Series website homepage" width="580" height="385" /></a></p>
<p>Published as an online book, the first of eight chapters was recently launched and, just like The Ford Story, uses WordPress as a CMS to deliver a wide variety of static content, downloadable documents and photos. Future issues will also include videos. When I was first introduced to this project, I instantly thought of WordPress as the CMS for this website, but wondered if perhaps Drupal or some other CMS might be a better platform. The design of the home page alone proved somewhat challenging and uses a large number of custom fields, but with proper training and the use of simple HTML, I think that the website is fairly easy to maintain and look forward to seeing how it progresses and develops. Finding out that companies like Ford also choose WordPress has convinced me that I&#8217;ve made a good decision.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bluelimemedia.com/2009/06/07/the-challenge-series-built-on-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ask the Experts</title>
		<link>http://www.bluelimemedia.com/2009/05/23/ask-the-expert/</link>
		<comments>http://www.bluelimemedia.com/2009/05/23/ask-the-expert/#comments</comments>
		<pubDate>Sat, 23 May 2009 23:37:52 +0000</pubDate>
		<dc:creator>Christine</dc:creator>
				<category><![CDATA[Bluelime News]]></category>
		<category><![CDATA[Business]]></category>

		<guid isPermaLink="false">http://www.bluelimemedia.com/?p=758</guid>
		<description><![CDATA[Have you ever had a marketing, branding or web strategy question but were afraid to ask? We&#8217;ll be hosting our next &#8220;Ask the Experts&#8221; panel on June 3rd at the YWCA on Beatty Street, where you can come along and ask anything you want.

Liz Gaige from Market Navigators will address marketing inquiries
Mhairi Petrovic from Out-smarts [...]]]></description>
			<content:encoded><![CDATA[<p>Have you ever had a marketing, branding or web strategy question but were afraid to ask? We&#8217;ll be hosting our next &#8220;Ask the Experts&#8221; panel on June 3rd at the <a href="http://maps.google.ca/maps?oe=utf-8&amp;rls=org.mozilla:en-US:official&amp;client=firefox-a&amp;um=1&amp;ie=UTF-8&amp;q=YWCA+Hotel+Vancouver&amp;fb=1&amp;split=1&amp;gl=ca&amp;cid=0,0,10954086257042734248&amp;ei=Iyj7ScPQFJbItAPl8-XOAQ&amp;sa=X&amp;oi=local_result&amp;ct=image&amp;resnum=1">YWCA on Beatty Street</a>, where you can come along and ask anything you want.</p>
<ul>
<li>Liz Gaige from <a href="http://www.marketnavigators.ca">Market Navigators</a> will address marketing inquiries</li>
<li>Mhairi Petrovic from <a href="http://www.out-smarts.com">Out-smarts</a> will be on-hand to speak about social networking</li>
<li>Ryan Thompson from <a href="http://www.twinfishcreative.com">Twin Fish Creative</a> will provide answers about branding</li>
<li>while I&#8217;ll be discussing web design and development.</li>
</ul>
<p>These panels are casual and informal. Simply <a href="http://www.marketnavigators.ca/index.php/what-we-do/the-tool/experts-panels/registration/">register</a>, show up and join the conversation. Organized as round-tables, we like to keep these small, so that you have the chance to ask your questions and hear what others have to say. These are ideal for budding entrepreneurs, individuals wanting to launch themselves in a new venture or existing companies who may be stuck and not sure where to go next.</p>
<p>We are currently holding a <a href="http://www.marketnavigators.ca/index.php/what-we-do/the-tool/experts-panels/registration/">2-for-1 promo</a>, so bring a friend or colleague along. Hope to see you there.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bluelimemedia.com/2009/05/23/ask-the-expert/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
