<?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>www.rarescosma.com &#124; Hardboiled Frontend &#38; WordPress Developer</title>
	<atom:link href="http://www.rarescosma.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.rarescosma.com</link>
	<description>www.rarescosma.com &#124; Hardboiled Frontend &#38; WordPress Developer</description>
	<lastBuildDate>Wed, 20 Jul 2011 23:03:17 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>WordPress hooks: user_register</title>
		<link>http://www.rarescosma.com/2011/04/wordpress-hooks-user_register/</link>
		<comments>http://www.rarescosma.com/2011/04/wordpress-hooks-user_register/#comments</comments>
		<pubDate>Thu, 21 Apr 2011 20:38:49 +0000</pubDate>
		<dc:creator>Rares</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Hooks]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[linkedin]]></category>

		<guid isPermaLink="false">http://www.rarescosma.com/?p=334</guid>
		<description><![CDATA[Automatically alter WordPress user Display Name after registration. Very simple code snippet that shows how the 'user_register' hook works.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m gonna keep things short in this article and show you how you can automatically alter WordPress user data after registration.</p>
<h3>Use Case: Changing the user&#8217;s Display Name</h3>
<p>One of WordPress&#8217; present shortcomings is the lack of a configuration option to specify a default display name format for your users. The last sentence was long, so let me give you an example.</p>
<p><span id="more-334"></span></p>
<p>Let&#8217;s say you&#8217;ve allowed user registration on your WordPress website (<a title="Settings - General" href="http://codex.wordpress.org/Settings_General_SubPanel">Settings &#8211; General</a>) but instead of the plain username, you want to display their full name on the articles they submit.</p>
<p>You have two options. Either you independently edit each user and change the &#8216;Display Name&#8217; option or&#8230;</p>
<h3>Enter the &#8216;user_register&#8217; hook</h3>
<p>This action hook runs immediately after the successful registration of a new user on your website. It passes on the user ID to the callback function. For our purpose, the code is very simple:</p>
<pre class="brush:php">class myUsers {
	static function init() {
		// Change the user's display name after insertion
		add_action( 'user_register', array( __CLASS__, 'change_display_name' ) );
	}

	static function change_display_name( $user_id ) {
		$info = get_userdata( $user_id );

		$args = array(
			'ID' =&gt; $user_id,
			'display_name' =&gt; $info-&gt;first_name . ' ' . $info-&gt;last_name
		);

		wp_update_user( $args );
	}
}

myUsers::init();</pre>
<p>First, we grab the newly created user information with the <code>get_userdata()</code> function. Then, we concatenate the first name and the last name and feed it as an argument to <code>wp_update_user()</code>.</p>
<p>Just paste this into your <code>functions.php</code> file and you&#8217;re all set.</p>
<h3>References</h3>
<ul class="big">
<li>Codex: the <a href="http://codex.wordpress.org/Plugin_API/Action_Reference/user_register">&#8216;user_register&#8217;</a> action hook</li>
<li>Codex: <a href="http://codex.wordpress.org/Function_Reference/get_userdata">get_userdata()</a></li>
<li>Codex: <a href="http://codex.wordpress.org/Function_Reference/wp_update_user">wp_update_user()</a></li>
</ul>
<p>Thank you for <a href="http://twitter.com/?status=WordPress+hooks%3A+user_register+http%3A%2F%2Fwww.rarescosma.com%2F%3Fp%3D334" class="retweet-anywhere" title="Retweet This Article" rev="" rel="334">retweeting</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rarescosma.com/2011/04/wordpress-hooks-user_register/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Send out custom Tweets from WordPress using Twitter Tools</title>
		<link>http://www.rarescosma.com/2011/04/send-out-custom-tweets-from-wordpress-using-twitter-tools/</link>
		<comments>http://www.rarescosma.com/2011/04/send-out-custom-tweets-from-wordpress-using-twitter-tools/#comments</comments>
		<pubDate>Wed, 13 Apr 2011 17:17:01 +0000</pubDate>
		<dc:creator>Rares</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[linkedin]]></category>

		<guid isPermaLink="false">http://www.rarescosma.com/?p=329</guid>
		<description><![CDATA[In this post I will explain how you can send out custom tweets from WordPress. For this purpose, we will configure and use the functionality present in the WordPress Twitter Tools plug-in. Get Twitter Tools Head over to the WordPress plugin repository and grab the Twitter Tools zip file. Upload it to your /wp-content/plugins directory [...]]]></description>
			<content:encoded><![CDATA[<p>In this post I will explain how you can send out custom tweets from WordPress. For this purpose, we will configure and use the functionality present in the WordPress Twitter Tools plug-in. <span id="more-329"></span></p>
<h3>Get Twitter Tools</h3>
<p>Head over to the <a href="http://wordpress.org/extend/plugins/twitter-tools/" title="Twitter Tools for WordPress">WordPress plugin repository</a> and grab the Twitter Tools zip file. Upload it to your <code>/wp-content/plugins</code> directory and unzip. Next, go to the <strong>Plugins</strong> section of your WP admin and activate the plugin.</p>
<p>Twitter Tools bundles a set of complementary plugins. Make sure you activate <strong>Twitter Tools &#8211; Bit.ly URLs</strong> for the URL shortening ability. We&#8217;ll be using this plugin to send out custom tweets (triggered by any type of action), so we don&#8217;t need the other components (Exclude Category and Hashtags).</p>
<h3>Connect to Twitter</h3>
<p>Follow the instructions on the Twitter Tools settings page to connect your website to Twitter. First, you need to <a href="http://dev.twitter.com/apps/new" title="Twitter's app registration page">register your site as a Twitter application</a>. A couple of things to keep in mind:</p>
<ul>
<li>Your Application&#8217;s Name will be what shows up after &#8220;via&#8221; in your twitter stream</li>
<li>Application Type should be set on <strong>Browser</strong></li>
<li>The Callback URL should be your website URL</li>
<li>Default Access type should be set to <strong>Read &#038; Write</strong></li>
</ul>
<p>A screenshot is worth more than 1000 words, so here&#8217;s an example:</p>
<p><img src="http://www.rarescosma.com/wp-content/uploads/2011/04/register_your_app2.png" alt="" title="Register your Twitter Application" width="573" height="636" class="aligncenter size-full wp-image-332" /></p>
<p>A couple of special strings used for authentication and API access need to be copied over to Twitter Tools:</p>
<ul class="big">
<li>The Twitter Consumer Key and Consumer Secret</li>
<li>The application Access Token and Access Token Secret</li>
</ul>
<p>The latter can be found by going to &#8216;My Access Token&#8217; in the right menu:</p>
<p><img src="http://www.rarescosma.com/wp-content/uploads/2011/04/my_access_token.png" alt="" title="My Access Token" width="226" height="182" class="aligncenter size-full wp-image-330" /></p>
<h3>Configure Twitter Tools</h3>
<p>Remember that we only need this plugin as a support to send out our custom Tweets, so we&#8217;re gonna disable all the auto-tweeting functionality. Set the following options to <strong>&#8216;No&#8217;</strong>:</p>
<ul class="big">
<li>Enable option to create a tweet when you post in your blog?</li>
<li>Create tweets from your sidebar?</li>
<li>Create a daily digest blog post from your tweets?</li>
</ul>
<p>That&#8217;s it! Now let&#8217;s get down to some coding.</p>
<h3>Example code for a custom tweet</h3>
<p>Suppose your website uses a <a href="http://codex.wordpress.org/Post_Types" title="WordPress Codex - Post Types">Custom Post Type</a> called <strong>&#8216;product&#8217;</strong> and you want to send out a custom notification on Twitter each time a new <strong>&#8216;product&#8217;</strong> is added.</p>
<p>First let&#8217;s create a custom function that uses (or hijacks) the Twitter Tools objects to tweet out a text portion, a link and some hashtags:</p>
<pre class="brush:php">
function my_tweet( $args = array() ) {
	// Check reqs
	if( ! class_exists( 'aktt_tweet' ) )
		return;

	global $aktt;

	// Set up defaults
	$defaults = array(
		'text' => '',
		'url' => '',
		'tags' => array()
	);

	// Extract the arguments
	extract( wp_parse_args( $args, $defaults ) );

	// Sanity check
	if( empty( $text ) )
		return;

	// Add the URL, after shortening
	if( ! empty( $url ) )
		$text .= ' ' . aktt_bitly_shorten_url( $url );

	// Add the hashtags
	if( count( $tags ) )
		$separator = ' #';
		$text .= $separator . implode( $separator, $tags );

	// Initialize the aktt_tweet object
	$tweet = new aktt_tweet;
	$tweet->tw_text = @html_entity_decode( $text , ENT_COMPAT, 'UTF-8' );

	// And Tweet!
	return $aktt->do_tweet( $tweet );
}
</pre>
<p>Armed with this awesome function, we&#8217;ll use the <code>wp_insert_post</code> action hook to check when a new <strong>&#8216;product&#8217;</strong> is added:</p>
<pre class="brush:php">
add_action( 'wp_insert_post' , 'my_twitter_notifications' , 99 );
function my_twitter_notifications( $post_id ) {
	$post = get_post( $post_id );
	if( $post->post_status != 'publish' ) return;

	switch ( $post->post_type ) {
		case 'product':
			// Tweet it
			$args = array(
				'text' => 'New Product: ' . $post->post_title,
				'url' => get_permalink( $post_id ),
				'tags' => array( '#awesome', '#merchandise', '#fb' )
			);

			my_tweet( $args );
		break;
	}
}
</pre>
<p>This function checks the post type and calls the <code>my_tweet</code> function with the appropriate arguments.</p>
<p>That&#8217;s all folks. See you for my next WordPress tutorial (which will hopefully come sooner).</p>
<p>As always, thank you for <a href="http://twitter.com/?status=Send+out+custom+Tweets+from+WordPress+using+Twitter+Tools+http%3A%2F%2Fwww.rarescosma.com%2F%3Fp%3D329" class="retweet-anywhere" title="Retweet This Article" rev="" rel="329">retweeting</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rarescosma.com/2011/04/send-out-custom-tweets-from-wordpress-using-twitter-tools/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Add a class to wp_nav_menu() items with URLs included in the current URL</title>
		<link>http://www.rarescosma.com/2010/11/add-a-class-to-wp_nav_menu-items-with-urls-included-in-the-current-url/</link>
		<comments>http://www.rarescosma.com/2010/11/add-a-class-to-wp_nav_menu-items-with-urls-included-in-the-current-url/#comments</comments>
		<pubDate>Tue, 23 Nov 2010 14:16:38 +0000</pubDate>
		<dc:creator>Rares</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[User Interface]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[linkedin]]></category>

		<guid isPermaLink="false">http://www.rarescosma.com/?p=326</guid>
		<description><![CDATA[We're all enjoying the benefits and features of WordPress 3.0. Custom menus are awesome and custom post types shatter all capability and imagination limits. A small problem arises when these two features are used in conjunction: the classes applied to navigation menu items only reflect direct inheritance, and entities that have their URLs included in the current URL can't get highlighted.]]></description>
			<content:encoded><![CDATA[<h3>The Problem</h3>
<p>We&#8217;re all enjoying the benefits and features of WordPress 3.0. Custom menus are awesome and custom post types shatter all capability and imagination limits. A small problem arises when these two features are used in conjunction: the classes applied to navigation menu items only reflect direct inheritance, and entities that have their URLs included in the current URL can&#8217;t get highlighted.<span id="more-326"></span></p>
<p>Let me illustrate through a simple example:</p>
<p>Suppose you defined a &#8216;Services&#8217; page that lives at this URL: <code>http://example.com/services/</code>.<br />
This page has an entry in the main menu of your website. To further emphasize your services, you also defined a &#8216;services&#8217; custom post type with the slug <code>services</code>. The URL of a &#8216;service&#8217; post can be <code>http://example.com/services/branding/</code>. </p>
<p>When you browse the &#8216;Branding&#8217; post, however, no special class is applied to the menu entry of your &#8216;Services&#8217; page, and it&#8217;s impossible to style it as the current section of your website, even though the proposed URL structure is semantic.</p>
<h3>The Solution</h3>
<p>The solution is based on the <code>nav_menu_css_class</code> WordPress hook. This is a filter hook that allows us to alter an array containing CSS classes that will be applied to a menu item.</p>
<p>We also need a way to find the current URL, or the URL being browsed.</p>
<h3>The Code</h3>
<pre class="brush:php">
add_filter( 'nav_menu_css_class', 'add_parent_url_menu_class', 10, 2 );

function add_parent_url_menu_class( $classes = array(), $item = false ) {
	// Get current URL
	$current_url = current_url();

	// Get homepage URL
	$homepage_url = trailingslashit( get_bloginfo( 'url' ) );

	// Exclude 404 and homepage
	if( is_404() or $item->url == $homepage_url ) return $classes;

	if ( strstr( $current_url, $item->url) ) {
		// Add the 'parent_url' class
		$classes[] = 'parent_url';
	}

	return $classes;
}

function current_url() {
	// Protocol
	$url = ( 'on' == $_SERVER['HTTPS'] ) ? 'https://' : 'http://';

	$url .= $_SERVER['SERVER_NAME'];

	// Port
	$url .= ( '80' == $_SERVER['SERVER_PORT'] ) ? '' : ':' . $_SERVER['SERVER_PORT'];

	$url .= $_SERVER['REQUEST_URI'];

	return trailingslashit( $url );
}
</pre>
<p>In the hooked function, a check is first made to see if we&#8217;re on a 404 page. When an invalid URL is accessed, we don&#8217;t want to highlight anything.</p>
<p>The same holds if the menu item points to the domain root URL: all other URLs on the website include it.</p>
<p>The rest is pretty straightforward: add the class if the menu item URL is included in the current URL and return the <code>$classes</code> array.</p>
<p>Thank you for <a href="http://twitter.com/?status=Add+a+class+to+wp_nav_menu%28%29+items+with+URLs+included+in+the+current+URL+http%3A%2F%2Fwww.rarescosma.com%2F%3Fp%3D326" class="retweet-anywhere" title="Retweet This Article" rev="" rel="326">retweeting</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rarescosma.com/2010/11/add-a-class-to-wp_nav_menu-items-with-urls-included-in-the-current-url/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Very Sirius Productions</title>
		<link>http://www.rarescosma.com/2010/05/very-sirius-productions/</link>
		<comments>http://www.rarescosma.com/2010/05/very-sirius-productions/#comments</comments>
		<pubDate>Tue, 11 May 2010 14:39:13 +0000</pubDate>
		<dc:creator>Rares</dc:creator>
				<category><![CDATA[CMS Integration]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[featured]]></category>
		<category><![CDATA[linkedin]]></category>

		<guid isPermaLink="false">http://www.rarescosma.com/?p=94</guid>
		<description><![CDATA[Description Very Sirius Productions is the online identity of creative director David Mayne. The site features a heavily modified version of the Modularity WordPress theme. The main highlight is the HD Media Player used to present his extensive video portfolio. As a side-project, I also developed the &#8220;Creative Impulses&#8221; playground blog. Both websites are powered [...]]]></description>
			<content:encoded><![CDATA[<div class="grid_4 alpha">
<h2 class="swiss">Description</h2>
<p>Very Sirius Productions is the online identity of creative director David Mayne. The site features a heavily modified version of the Modularity WordPress theme.</p>
<p>The main highlight is the HD Media Player used to present his extensive video portfolio. As a side-project, I also developed the &#8220;Creative Impulses&#8221; playground blog.</p>
<p>Both websites are powered by WordPress</p>
</div>
<div class="grid_4 push_1 omega">
<h2 class="swiss">Features</h2>
<ul>
<li>Custom theme built on top of the Modularity Framework</li>
<li>Full screen High Definition Media player</li>
<li>Custom, media-rich Categories and Posts templates</li>
<li>Non-standard web fonts embedding (Cufón)</li>
<li>Back-end programming to accommodate all the new needed options</li>
</ul>
</div>
<div class="clear">&nbsp;</div>
]]></content:encoded>
			<wfw:commentRss>http://www.rarescosma.com/2010/05/very-sirius-productions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IE6 Memorabilia</title>
		<link>http://www.rarescosma.com/2010/04/ie6-memorabilia/</link>
		<comments>http://www.rarescosma.com/2010/04/ie6-memorabilia/#comments</comments>
		<pubDate>Wed, 14 Apr 2010 14:27:56 +0000</pubDate>
		<dc:creator>Rares</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Browsers]]></category>
		<category><![CDATA[linkedin]]></category>

		<guid isPermaLink="false">http://www.rarescosma.com/?p=223</guid>
		<description><![CDATA[In terms of standards-compliance and feature support, nothing causes more pain to a developer than Internet Explorer 6.

It caused hours of painful debugging to get the same look and feel for a website. It put brilliant minds at work to devise hacks and workarounds to make it more standards-compliant. It killed millions of web developer neurons just because a small percentage of people (including, maybe, your client's peers) have refused to upgrade.]]></description>
			<content:encoded><![CDATA[<p>In terms of standards-compliance and feature support, nothing causes more pain to a developer than Internet Explorer 6.</p>
<p>It caused hours of painful debugging to get the same look and feel for a website. It put brilliant minds at work to devise hacks and workarounds to make it more standards-compliant. It killed millions of web developer neurons just because a small percentage of people (including, maybe, your client&#8217;s peers) have refused to upgrade.</p>
<p><span id="more-223"></span></p>
<p>There used to be a time when on any given day you&#8217;d hear someone in the office say: &#8220;Oh man, I wish IE6 was dead already!&#8221; But after the outrage settled, the person responsible would sit down and respect the accessibility code by continuing the mind-numbing debugging process. The day IE6 died was a concept similar to the &#8220;light at the end of the tunnel&#8221; &#8211; a recognized reality situated somewhere in the future at a psychologically infinite distance.</p>
<p>But the future is promising. Things are definitely steering in the right direction with <a href="http://lifehacker.com/5460043/google-apps-drops-support-for-ie6">Google</a> and <a href="http://forabeautifulweb.com/blog/about/internet_explorer_6_no_longer_supported_by_amazon/">Amazon</a> joining the &#8216;kill-IE6&#8242; army last month. <a href="http://ie6funeral.com/">Some</a> have even gone so far as proclaiming the browser dead and organized an obituary and wake in its painful memory. I must say I sympathize with these people from all my heart as I proudly join them and refuse the total waste of resources called &#8216;developing for IE6&#8242;.</p>
<p><strong>As far as I&#8217;m concerned IE6 is </strong><em><strong>dead</strong></em><strong>.</strong></p>
<p>That&#8217;s why I&#8217;ll finally get to the point of this post: a small compilation of IE6-related <em>memorabilia</em>.</p>
<h3>1. What God does to kitten when you use IE6</h3>
<p><img class="aligncenter size-full wp-image-226" title="IE6, God and kittens" src="http://www.rarescosma.com/wp-content/uploads/ie6-1.jpg" alt="IE6, God and kittens" width="450" height="338" /></p>
<p class="aligncenter">Original source: <a href="http://antoniofarinha.com/blog/2009/08/06/every-time-you-use-ie6-god-kills-a-kitten/">António Farinha</a></p>
<h3>2. What retarded PNG support and CSS compliance does to fragile developers</h3>
<p><img class="aligncenter size-full wp-image-228" title="Hugs for Monsters 1" src="http://www.rarescosma.com/wp-content/uploads/ie6-2.jpg" alt="Hugs for Monsters 1" width="450" height="325" /></p>
<p><img class="aligncenter size-full wp-image-229" title="Hugs for Monsters 2" src="http://www.rarescosma.com/wp-content/uploads/ie6-3.jpg" alt="Hugs for Monsters 2" width="450" height="325" /></p>
<p class="aligncenter">Original source: <a href="http://laughingsquid.com/overly-judgemental-internet-explorer-6-splash-pages/">Laughing Squid</a></p>
<h3>3. A friendlier way of disposing IE6 users</h3>
<p><a href="http://www.flickr.com/photos/robotjohnny/3629069606/sizes/l/"><img class="aligncenter size-full wp-image-232" title="Browser Playground" src="http://www.rarescosma.com/wp-content/uploads/friendlier.jpg" alt="Browser Playground" width="570" height="399" /></a></p>
<p class="aligncenter">Original source: <a href="http://www.flickr.com/photos/robotjohnny/3629069606/sizes/l/">John Martz</a></p>
<h3>4. IE6 Standards compliance demonstrated on a human model</h3>
<p><a href="http://www.flickr.com/photos/atzu/4365152223/sizes/l/"><img class="aligncenter size-full wp-image-230" title="IE6 Standards compliance" src="http://www.rarescosma.com/wp-content/uploads/ie6-4.jpg" alt="IE6 Standards compliance" width="450" height="229" /></a></p>
<p class="aligncenter">Original source: <a href="http://www.flickr.com/photos/atzu/4365152223/sizes/l/">Atzu</a></p>
<h3>5. The life, times and death of IE6</h3>
<p><img class="aligncenter size-full wp-image-231" title="IE6 Comic Strip" src="http://www.rarescosma.com/wp-content/uploads/comic_strip.jpg" alt="IE6 Comic Strip" width="550" height="733" /><img class="aligncenter size-full wp-image-235" title="IE6 Comic Strip 2" src="http://www.rarescosma.com/wp-content/uploads/comic_strip2.jpg" alt="IE6 Comic Strip 2" width="550" height="832" /><img class="aligncenter size-full wp-image-236" title="IE6 Comic Strip 3" src="http://www.rarescosma.com/wp-content/uploads/comic_strip3.jpg" alt="IE6 Comic Strip 3" width="550" height="609" /><img class="aligncenter size-full wp-image-234" title="IE6 Comic Strip 4" src="http://www.rarescosma.com/wp-content/uploads/comic_strip4.jpg" alt="IE6 Comic Strip 4" width="550" height="743" /></p>
<p class="aligncenter">Original source: <a href="http://www.smashingmagazine.com/2010/02/11/the-life-times-and-death-of-internet-explorer-6-comic-strip/">Smashing Magazine</a></p>
<h3>Related Articles and resources:</h3>
<ul>
<li><a href="http://www.catswhocode.com/blog/15-amazing-anti-ie-resources">15+ Amazing Anti IE Resources</a></li>
<li><a href="http://dearie6.com/">Dear IE6</a></li>
<li><a href="http://www.end6.org/">End 6</a></li>
<li><a href="http://ie6funeral.com/">IE6 Funeral</a></li>
<li>&#8230;and my all time favorite: <a href="http://www.crashie.com/">Crash IE6 with one line of code</a></li>
</ul>
<p>Edit: <a title="Mark Kolich - Engineer, Entrepreneur, Consultant" href="http://twitter.com/markkolich/">@markkolich</a> suggested adding a link to the <a title="A neat jQuery plugin that crashes IE6" href="http://plugins.jquery.com/project/crash">crash IE6 jQuery plugin</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rarescosma.com/2010/04/ie6-memorabilia/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WordPress Default Settings</title>
		<link>http://www.rarescosma.com/2010/02/wordpress-default-settings/</link>
		<comments>http://www.rarescosma.com/2010/02/wordpress-default-settings/#comments</comments>
		<pubDate>Thu, 04 Feb 2010 12:17:16 +0000</pubDate>
		<dc:creator>Rares</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[linkedin]]></category>

		<guid isPermaLink="false">http://www.rarescosma.com/?p=163</guid>
		<description><![CDATA[WPEngineer has a great article promoting a very simple but ultra-effective plugin. The plugin was written by Thomas Scholz and addresses the problem of always having to do the same adjustments after a clean Wordpress install.]]></description>
			<content:encoded><![CDATA[<h3>Default WordPress Configuration Settings</h3>
<p>Do you often find yourself changing the default WordPress settings after a fresh install? Not anymore.</p>
<p><a href="http://wpengineer.com/wordpress-useful-default-configuration-settings-via-plugin/">WPEngineer</a> has a great article promoting a very simple but ultra-effective plugin.</p>
<p>The plugin was written by <a href="http://toscho.de">Thomas Scholz</a> and addresses the problem of always having to do the same adjustments after a clean WordPress install.<br />
<span id="more-163"></span><br />
Examples include setting the Permalink structure, deleting the default post, and basically altering any other default setting from the <code>wp_options</code> table. If you don&#8217;t have database access you can access an automatically generated overview of available options at <code>[your_base_URL]/wp-admin/options.php</code></p>
<h3>Instructions</h3>
<ol class="big">
<li><a href="http://f.toscho.de/php-skripte/toscho_basic_settings-0.2.zip">Download</a> the plugin by toscho</li>
<li>Upload the plugin into your <code>/wp-content/plugins/</code> directory</li>
<li>Activate the plugin</li>
<li>Deactivate the plugin</li>
<li>Delete the plugin</li>
</ol>
<h3>The Code</h3>
<pre class="brush:php">
&lt;?php
/*
Plugin Name: Toscho&#039;s basic settings
Plugin URI: http://toscho.de/2010/wordpress-grundeinstellungen-per-plugin-setzen/
Description: Some useful default configuration settings. See &#039;wp-admin/options.php&#039; for more options.
Version: 0.2
Author: Thomas Scholz
Author URI: http://toscho.de
*/
function set_toscho_defaults()
{
    $o = array(
        &#039;avatar_default&#039;            =&gt; &#039;'blank',
        'avatar_rating'             =&gt; 'G',
        'category_base'             =&gt; '/thema',
        'comment_max_links'         =&gt; 0,
        'comments_per_page'         =&gt; 0,
        'date_format'               =&gt; 'd.m.Y',
        'default_ping_status'       =&gt; 'closed',
        'default_post_edit_rows'    =&gt; 30,
        'links_updated_date_format' =&gt; 'j. F Y, H:i',
        'permalink_structure'       =&gt; '/%year%/%postname%/',
        'rss_language'              =&gt; 'de',
        'timezone_string'           =&gt; 'Etc/GMT-1',
        'use_smilies'               =&gt; 0,
    );
    foreach ( $o as $k =&gt; $v )
    {
        update_option($k, $v);
    }
    // Delete dummy post and comment.
    wp_delete_post(1, TRUE);
    wp_delete_comment(1);
    return;
}
register_activation_hook(__FILE__, 'set_toscho_defaults');
?&gt;
</pre>
<p>Update: Thomas has provided me with a link to a public repository on GitHub. Feel free to contribute.<br />
<a href="http://github.com/toscho/WordPress-Basic-Settings">http://github.com/toscho/WordPress-Basic-Settings</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.rarescosma.com/2010/02/wordpress-default-settings/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Link separator for wp_list_pages()</title>
		<link>http://www.rarescosma.com/2010/02/link-separator-for-wp_list_pages/</link>
		<comments>http://www.rarescosma.com/2010/02/link-separator-for-wp_list_pages/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 16:44:07 +0000</pubDate>
		<dc:creator>Rares</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[linkedin]]></category>

		<guid isPermaLink="false">http://www.rarescosma.com/?p=143</guid>
		<description><![CDATA[A common problem with the Wordpress built-in function for page navigation is the lack of anchor text separator support.]]></description>
			<content:encoded><![CDATA[<h3>The Problem</h3>
<p>A common problem with the WordPress built-in function for page navigation is the lack of anchor text separator support.</p>
<p>In version 2.7 two more arguments for <code>wp_list_pages()</code> were added to mitigate this inconvenience: <code>link_before</code> and <code>link_after</code>. When using these, the function prepends or appends the specified strings to the generated anchor text. This works well for styling vertical menus.<span id="more-143"></span></p>
<p>However, for horizontal menus like the one below, you want the separator to appear between consecutive links and both options become unsuitable:</p>
<ul class="big">
<li><code>link_before</code> would produce extra markup before the first link</li>
<li><code>link_after</code> would produce extra markup after the last link</li>
</ul>
<p><img class="aligncenter" title="Horizontal Navigation" src="http://www.rarescosma.com/wp-content/uploads/horizontal_navigation.png" alt="Horizontal Menu Example" width="483" height="58" alt="Horizontal Navigation" /></p>
<h3>The solution</h3>
<p>The solution I came up with for a recent project involves using regular expressions to inject the page separator. Basically, you want to alter the structure of all links except the last one. This can be accomplished by searching for all list elements that are followed by an extra list element.</p>
<p><!--more--></p>
<h3>The code</h3>
<pre class="brush:php">
$args = array(
  &#039;sort_column&#039; =&gt; &#039;menu_order&#039;,
  &#039;title_li&#039; =&gt; &#039;&#039;,
  &#039;depth&#039; =&gt; &#039;1&#039;,
  &#039;echo&#039; =&gt; 0
);
$separator = &#039; | &#039;;
$pattern = &#039;/(&lt;\\/a&gt;).*?(&lt;\\/li&gt;).*?(&lt;li)/is&#039;;
$replace = &#039;&lt;/a&gt;&#039; . $separator . &#039;&lt;/li&gt;&lt;li&#039;;
$subnav = preg_replace($pattern,$replace,wp_list_pages($args));
echo $subnav;
</pre>
<p>You can specify the separator string in the <code>$separator</code> variable and alter its appearance position by changing the <code>$replace</code> variable.</p>
<h3>Resources</h3>
<ul class="big">
<li>The <a href="http://codex.wordpress.org/Template_Tags/wp_list_pages">wp_list_pages()</a> codex reference page</li>
<li>The wonderful <a href="http://txt2re.com">http://txt2re.com</a> regular expression generator</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.rarescosma.com/2010/02/link-separator-for-wp_list_pages/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>Arthur Green</title>
		<link>http://www.rarescosma.com/2010/01/arthur-green/</link>
		<comments>http://www.rarescosma.com/2010/01/arthur-green/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 15:45:47 +0000</pubDate>
		<dc:creator>Rares</dc:creator>
				<category><![CDATA[CMS Integration]]></category>
		<category><![CDATA[HTML Coding]]></category>
		<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.rarescosma.com/?p=41</guid>
		<description><![CDATA[Description This website constitutes the online identity of public accountant and business adviser Arthur Green. The site content is easily manageable thanks to the WordPress CMS Integration services I provided. Other notable features include the integration of 3rd party log-in forms to simplify client access to valuable online accounting tools. Features True WordPress powered Content [...]]]></description>
			<content:encoded><![CDATA[<div class="grid_4 alpha">
<h2 class="swiss">Description</h2>
<p>This website constitutes the online identity of public accountant and business adviser Arthur Green. The site content is easily manageable thanks to the WordPress CMS Integration services I provided.</p>
<p>Other notable features include the integration of 3rd party log-in forms to simplify client access to valuable online accounting tools.</p>
</div>
<div class="grid_4 push_1 omega">
<h2 class="swiss">Features</h2>
<ul>
<li>True WordPress powered Content Management System</li>
<li>Non-standard web fonts embedding (Cufón)</li>
<li>3rd party forms integration: Quickbooks &amp; Sharefile</li>
<li>reCAPTCHA contact form</li>
</ul>
</div>
<div class="clear"></div>
]]></content:encoded>
			<wfw:commentRss>http://www.rarescosma.com/2010/01/arthur-green/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Downtown Wine &amp; Spirits</title>
		<link>http://www.rarescosma.com/2009/12/downtown-wine-and-spirits/</link>
		<comments>http://www.rarescosma.com/2009/12/downtown-wine-and-spirits/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 13:41:07 +0000</pubDate>
		<dc:creator>Rares</dc:creator>
				<category><![CDATA[CMS Integration]]></category>
		<category><![CDATA[HTML Coding]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[featured]]></category>
		<category><![CDATA[linkedin]]></category>

		<guid isPermaLink="false">http://rarescosma.com/?p=3</guid>
		<description><![CDATA[Description The main highlight of this project was the seamless integration of four separate blogs into a unified environment provided by WordPress MU. This solution allowed the authors to continue publishing on the same platform they were familiar with while also providing consistency to their web presence through the unified user interface. Features Five distinct [...]]]></description>
			<content:encoded><![CDATA[<div class="grid_4 alpha">
<h2 class="swiss">Description</h2>
<p>The main highlight of this project was the seamless integration of four separate blogs into a unified environment provided by WordPress MU.</p>
<p>This solution allowed the authors to continue publishing on the same platform they were familiar with while also providing consistency to their web presence through the unified user interface.</p>
</div>
<div class="grid_4 push_1 omega">
<h2 class="swiss">Features</h2>
<ul>
<li>Five distinct blogs integrated with WordPress MU</li>
<li>Custom content for the homepage Polaroids</li>
<li>Accessible typography through the use of sIFR</li>
<li>Integration of an awesome Flash tag cloud</li>
<li>Custom form development for E-mail sign-ups</li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.rarescosma.com/2009/12/downtown-wine-and-spirits/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>30 Delivery</title>
		<link>http://www.rarescosma.com/2009/12/30-delivery/</link>
		<comments>http://www.rarescosma.com/2009/12/30-delivery/#comments</comments>
		<pubDate>Mon, 07 Dec 2009 15:40:28 +0000</pubDate>
		<dc:creator>Rares</dc:creator>
				<category><![CDATA[CMS Integration]]></category>
		<category><![CDATA[eCommerce]]></category>
		<category><![CDATA[HTML Coding]]></category>
		<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.rarescosma.com/?p=36</guid>
		<description><![CDATA[Description Can a business be based entirely online? 30 Delivery successfully answered this question when they choose to base their web store on Magento &#8211; a revolutionary eCommerce platform. All content (products &#38; pages) is manageable through a comprehensive CMS, and, with the innovative one-page checkout process the client can have his order on the [...]]]></description>
			<content:encoded><![CDATA[<div class="grid_4 alpha">
<h2 class="swiss">Description</h2>
<p>Can a business be based entirely online? 30 Delivery successfully answered this question when they choose to base their web store on Magento &#8211; a revolutionary eCommerce platform.</p>
<p>All content (products &amp; pages) is manageable through a comprehensive CMS, and, with the innovative one-page checkout process the client can have his order on the way within seconds.</p>
<p>A custom module was developed as a way to alert customers that they could only deliver products during certain times. Also, a Firstdata Payment Gateway module was crafted specifically for this project.</p>
</div>
<div class="grid_4 push_1 omega">
<h2 class="swiss">Features</h2>
<ul>
<li>Fully functional Magento powered web store</li>
<li>Products, categories and pages manageable via the CMS</li>
<li>One-page checkout process</li>
<li>Customers can choose to register for even faster future order processing</li>
<li>Custom delivery intervals module</li>
<li>Custom payment gateway development (Firstdata)</li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.rarescosma.com/2009/12/30-delivery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Boston Unique Properties</title>
		<link>http://www.rarescosma.com/2009/11/boston-unique-properties/</link>
		<comments>http://www.rarescosma.com/2009/11/boston-unique-properties/#comments</comments>
		<pubDate>Sat, 14 Nov 2009 15:41:23 +0000</pubDate>
		<dc:creator>Rares</dc:creator>
				<category><![CDATA[CMS Integration]]></category>
		<category><![CDATA[HTML Coding]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[UE Programming]]></category>

		<guid isPermaLink="false">http://www.rarescosma.com/?p=38</guid>
		<description><![CDATA[Description Boston Unique Properties is a real estate listing website run by Lawrence Shevick, one of Boston&#8217;s top sales agent. The unique design was carefully coded and integrated into a WordPress powered Content Management System. On the back-end, custom field templates were developed for easier property data entry. On the front-end, the jQuery and Fancybox [...]]]></description>
			<content:encoded><![CDATA[<div class="grid_4 alpha">
<h2 class="swiss">Description</h2>
<p>Boston Unique Properties is a real estate listing website run by Lawrence Shevick, one of Boston&#8217;s top sales agent. The unique design was carefully coded and integrated into a WordPress powered Content Management System.</p>
<p>On the back-end, custom field templates were developed for easier property data entry. On the front-end, the jQuery and Fancybox powered image galleries provide an immersive user experience.</p>
</div>
<div class="grid_4 push_1 omega">
<h2 class="swiss">Features</h2>
<ul>
<li>Clean, semantic XHTML coding</li>
<li>WordPress powered real estate listings CMS</li>
<li>Custom field template for property data entry</li>
<li>Fancybox image gallery</li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.rarescosma.com/2009/11/boston-unique-properties/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sean Marshall Galleries</title>
		<link>http://www.rarescosma.com/2009/11/sean-marshall-galleries/</link>
		<comments>http://www.rarescosma.com/2009/11/sean-marshall-galleries/#comments</comments>
		<pubDate>Tue, 03 Nov 2009 15:39:07 +0000</pubDate>
		<dc:creator>Rares</dc:creator>
				<category><![CDATA[CMS Integration]]></category>
		<category><![CDATA[eCommerce]]></category>
		<category><![CDATA[HTML Coding]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[UE Programming]]></category>
		<category><![CDATA[featured]]></category>
		<category><![CDATA[linkedin]]></category>

		<guid isPermaLink="false">http://www.rarescosma.com/?p=34</guid>
		<description><![CDATA[Description Sean Marshall&#8217;s passion for photography makes him a perfectionist. Extreme care was needed during the development of his virtual gallery and print shop. The site matches the design to pixel precision and allows lovers of fine art to browse Sean&#8217;s galleries in a unique fashion and buy his prints in various sizes. Features Pixel [...]]]></description>
			<content:encoded><![CDATA[<div class="grid_4 alpha">
<h2 class="swiss">Description</h2>
<p>Sean Marshall&#8217;s passion for photography makes him a perfectionist. Extreme care was needed during the development of his virtual gallery and print shop.</p>
<p>The site matches the design to pixel precision and allows lovers of fine art to browse Sean&#8217;s galleries in a unique fashion and buy his prints in various sizes.</p>
</div>
<div class="grid_4 push_1 omega">
<h2 class="swiss">Features</h2>
<ul>
<li>Pixel precision hand-coded design</li>
<li>Filmstrip and Grid based view of photo galleries</li>
<li>WordPress eCommerce integration</li>
<li>Product details pop-up with AJAX shopping cart</li>
<li>Authorize.net payment gateway integration</li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.rarescosma.com/2009/11/sean-marshall-galleries/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Foods of Quebec</title>
		<link>http://www.rarescosma.com/2009/10/foods-of-quebec/</link>
		<comments>http://www.rarescosma.com/2009/10/foods-of-quebec/#comments</comments>
		<pubDate>Wed, 21 Oct 2009 16:14:44 +0000</pubDate>
		<dc:creator>Rares</dc:creator>
				<category><![CDATA[HTML Coding]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[featured]]></category>
		<category><![CDATA[linkedin]]></category>

		<guid isPermaLink="false">http://www.rarescosma.com/?p=47</guid>
		<description><![CDATA[Description The Government of Quebec established this online identity site to support the sustainable development of the Québec food industry. I provided my PSD to HTML coding services to produce clean, semantic and speed-optimized base code for their efforts. Features Highly semantic and clean HTML &#38; CSS code Speed optimized site structure composed entirely of [...]]]></description>
			<content:encoded><![CDATA[<div class="grid_4 alpha">
<h2 class="swiss">Description</h2>
<p>The Government of Quebec established this online identity site to support the sustainable development of the Québec food industry.</p>
<p>I provided my PSD to HTML coding services to produce clean, semantic and speed-optimized base code for their efforts.</p>
</div>
<div class="grid_4 push_1 omega">
<h2 class="swiss">Features</h2>
<ul>
<li>Highly semantic and clean HTML &amp; CSS code</li>
<li>Speed optimized site structure composed entirely of static HTML files</li>
<li>A Flash placeholder for the homepage</li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.rarescosma.com/2009/10/foods-of-quebec/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NCA Architects</title>
		<link>http://www.rarescosma.com/2009/10/nca-architects/</link>
		<comments>http://www.rarescosma.com/2009/10/nca-architects/#comments</comments>
		<pubDate>Sat, 17 Oct 2009 16:16:56 +0000</pubDate>
		<dc:creator>Rares</dc:creator>
				<category><![CDATA[HTML Coding]]></category>
		<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.rarescosma.com/?p=50</guid>
		<description><![CDATA[Description The New England based architecture firm refreshed its online identity in 2008. I provided design conversion services and delivered clean, semantic and speed-optimized HTML code. Features Highly semantic and clean HTML &#38; CSS code Flash placeholders for the homepage and several inner pages]]></description>
			<content:encoded><![CDATA[<div class="grid_4 alpha">
<h2 class="swiss">Description</h2>
<p>The New England based architecture firm refreshed its online identity in 2008.</p>
<p>I provided design conversion services and delivered clean, semantic and speed-optimized HTML code.</p>
</div>
<div class="grid_4 push_1 omega">
<h2 class="swiss">Features</h2>
<ul>
<li>Highly semantic and clean HTML &amp; CSS code</li>
<li>Flash placeholders for the homepage and several inner pages</li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.rarescosma.com/2009/10/nca-architects/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Terra Mamaliga</title>
		<link>http://www.rarescosma.com/2009/10/terra-mamaliga/</link>
		<comments>http://www.rarescosma.com/2009/10/terra-mamaliga/#comments</comments>
		<pubDate>Mon, 05 Oct 2009 16:24:49 +0000</pubDate>
		<dc:creator>Rares</dc:creator>
				<category><![CDATA[CMS Integration]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[UE Programming]]></category>

		<guid isPermaLink="false">http://www.rarescosma.com/?p=62</guid>
		<description><![CDATA[Description Terra Mamaliga is an event blog commissioned by the French Cultural Center in my hometown. It advertises a traditional food fair. For this project I customized an existing WordPress theme and added some neat User Interface effects to the producers list. Features WordPress powered CMS Theme customization: integration of client&#8217;s graphic elements and color [...]]]></description>
			<content:encoded><![CDATA[<div class="grid_4 alpha">
<h2 class="swiss">Description</h2>
<p>Terra Mamaliga is an event blog commissioned by the French Cultural Center in my hometown. It advertises a traditional food fair.</p>
<p>For this project I customized an existing WordPress theme and added some neat User Interface effects to the producers list.</p>
</div>
<div class="grid_4 push_1 omega">
<h2 class="swiss">Features</h2>
<ul>
<li>WordPress powered CMS</li>
<li>Theme customization: integration of client&#8217;s graphic elements and color theme</li>
<li>User Interface enhancements and effects</li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.rarescosma.com/2009/10/terra-mamaliga/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Shalrie Joseph Academy</title>
		<link>http://www.rarescosma.com/2009/09/shalrie-joseph-academy/</link>
		<comments>http://www.rarescosma.com/2009/09/shalrie-joseph-academy/#comments</comments>
		<pubDate>Thu, 24 Sep 2009 16:19:04 +0000</pubDate>
		<dc:creator>Rares</dc:creator>
				<category><![CDATA[HTML Coding]]></category>
		<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.rarescosma.com/?p=53</guid>
		<description><![CDATA[Description Shalrie Joseph is a fun player running soccer training programs for kids throughout Massachusetts. I helped bring his website to life offering my best PSD to HTML&#160;/&#160;CSS coding skills. Features Clean and highly semantic HTML code Speed optimized site structure composed entirely of static HTML files CSS-styled tables]]></description>
			<content:encoded><![CDATA[<div class="grid_4 alpha">
<h2 class="swiss">Description</h2>
<p>Shalrie Joseph is a fun player running soccer training programs for kids throughout Massachusetts.</p>
<p>I helped bring his website to life offering my best PSD to HTML&nbsp;/&nbsp;CSS coding skills.</p>
</div>
<div class="grid_4 push_1 omega">
<h2 class="swiss">Features</h2>
<ul>
<li>Clean and highly semantic HTML code</li>
<li>Speed optimized site structure composed entirely of static HTML files</li>
<li>CSS-styled tables</li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.rarescosma.com/2009/09/shalrie-joseph-academy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Casasolara.com</title>
		<link>http://www.rarescosma.com/2009/09/casasolara-com/</link>
		<comments>http://www.rarescosma.com/2009/09/casasolara-com/#comments</comments>
		<pubDate>Mon, 21 Sep 2009 16:26:11 +0000</pubDate>
		<dc:creator>Rares</dc:creator>
				<category><![CDATA[CMS Integration]]></category>
		<category><![CDATA[eCommerce]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[UE Programming]]></category>

		<guid isPermaLink="false">http://www.rarescosma.com/?p=64</guid>
		<description><![CDATA[Description Casasolara.com is a local business specializing in eco-friendly solar panel technology. The front-end features a slight variation of the WordPress default theme. The over-simplified design is balanced out by the website functionality: a fully operational eCommerce solution based on the WordPress Shopp plug-in. The checkout process was customized to allow the entering of business [...]]]></description>
			<content:encoded><![CDATA[<div class="grid_4 alpha">
<h2 class="swiss">Description</h2>
<p>Casasolara.com is a local business specializing in eco-friendly solar panel technology. The front-end features a slight variation of the WordPress default theme.</p>
<p>The over-simplified design is balanced out by the website functionality: a fully operational eCommerce solution based on the WordPress Shopp plug-in.</p>
<p>The checkout process was customized to allow the entering of business credentials specific to Romanian commerce practices.</p>
</div>
<div class="grid_4 push_1 omega">
<h2 class="swiss">Features</h2>
<ul>
<li>WordPress powered CMS</li>
<li>WordPress &amp; Shopp based eCommerce solution</li>
<li>Custom checkout fields and process</li>
<li>Intelligent category side menu</li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.rarescosma.com/2009/09/casasolara-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Burton’s Grill</title>
		<link>http://www.rarescosma.com/2009/09/burtons-grill/</link>
		<comments>http://www.rarescosma.com/2009/09/burtons-grill/#comments</comments>
		<pubDate>Mon, 14 Sep 2009 16:20:58 +0000</pubDate>
		<dc:creator>Rares</dc:creator>
				<category><![CDATA[HTML Coding]]></category>
		<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.rarescosma.com/?p=55</guid>
		<description><![CDATA[Description This New England based restaurant chain prides itself with its commitment to quality. It is the very same principle that governed my work when I coded their new design into clean, semantic and valid HTML&#160;/&#160;CSS. Features Semantic, clean and valid HTML &#38; CSS code Various Flash placeholders throughout the site Multipage forms programming]]></description>
			<content:encoded><![CDATA[<div class="grid_4 alpha">
<h2 class="swiss">Description</h2>
<p>This New England based restaurant chain prides itself with its commitment to quality. It is the very same principle that governed my work when I coded their new design into clean, semantic and valid HTML&nbsp;/&nbsp;CSS.</p>
</div>
<div class="grid_4 push_1 omega">
<h2 class="swiss">Features</h2>
<ul>
<li>Semantic, clean and valid HTML &amp; CSS code</li>
<li>Various Flash placeholders throughout the site</li>
<li>Multipage forms programming</li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.rarescosma.com/2009/09/burtons-grill/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Green Beacon Solutions</title>
		<link>http://www.rarescosma.com/2009/09/green-beacon-solutions/</link>
		<comments>http://www.rarescosma.com/2009/09/green-beacon-solutions/#comments</comments>
		<pubDate>Tue, 08 Sep 2009 16:13:47 +0000</pubDate>
		<dc:creator>Rares</dc:creator>
				<category><![CDATA[HTML Coding]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[UE Programming]]></category>

		<guid isPermaLink="false">http://www.rarescosma.com/?p=45</guid>
		<description><![CDATA[Description Green Beacon Solutions is a firm specializing in Business Management software. Their new website design was coded by me into skeleton HTML&#160;/&#160;CSS files they could later use to implement a CMS For the homepage user experience I programmed an animated banner that very much resembles Flash technology. It&#8217;s done entirely in Javascript to allow [...]]]></description>
			<content:encoded><![CDATA[<div class="grid_4 alpha">
<h2 class="swiss">Description</h2>
<p>Green Beacon Solutions is a firm specializing in Business Management software. Their new website design was coded by me into skeleton HTML&nbsp;/&nbsp;CSS files they could later use to implement a CMS</p>
<p>For the homepage user experience I programmed an animated banner that very much resembles Flash technology. It&#8217;s done entirely in Javascript to allow for easy content management.</p>
</div>
<div class="grid_4 push_1 omega">
<h2 class="swiss">Features</h2>
<ul>
<li>Clean and semantic PSD to HTML / CSS coding</li>
<li>Animated homepage banner developed with Mootools</li>
<li>Inner page transition effects</li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.rarescosma.com/2009/09/green-beacon-solutions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Box-o-box</title>
		<link>http://www.rarescosma.com/2009/09/box-o-box/</link>
		<comments>http://www.rarescosma.com/2009/09/box-o-box/#comments</comments>
		<pubDate>Thu, 03 Sep 2009 16:24:01 +0000</pubDate>
		<dc:creator>Rares</dc:creator>
				<category><![CDATA[CMS Integration]]></category>
		<category><![CDATA[eCommerce]]></category>
		<category><![CDATA[HTML Coding]]></category>
		<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.rarescosma.com/?p=60</guid>
		<description><![CDATA[Description Box-o-Box helps parents throughout the US support their student kids. The site went through a major face-lift in 2008. The main requirement was to keep their custom built eCommerce system. I coded their new design, integrated it into their old system and programmed additional features. Features PSD to HTML conversion of a difficult design [...]]]></description>
			<content:encoded><![CDATA[<div class="grid_4 alpha">
<h2 class="swiss">Description</h2>
<p>Box-o-Box helps parents throughout the US support their student kids. The site went through a major face-lift in 2008.</p>
<p>The main requirement was to keep their custom built eCommerce system. I coded their new design, integrated it into their old system and programmed additional features.</p>
</div>
<div class="grid_4 push_1 omega">
<h2 class="swiss">Features</h2>
<ul>
<li>PSD to HTML conversion of a difficult design</li>
<li>Custom built eCommerce system</li>
<li>Integrated Authorize.net Payment Gateway</li>
<li>AJAXed Zip code verification</li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.rarescosma.com/2009/09/box-o-box/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

