<?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"
	>

<channel>
	<title>Henrie Media Inc</title>
	<atom:link href="http://www.henriemedia.com/feed/rss2/" rel="self" type="application/rss+xml" />
	<link>http://www.henriemedia.com</link>
	<description>Henrie Media Inc. specializes in providing innovative marketing solutions and services to our customers.</description>
	<pubDate>Mon, 18 Aug 2008 17:46:31 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.1</generator>
	<language>en</language>
			<item>
		<title>Exclude Category from the main page or RSS feed in Wordpress</title>
		<link>http://www.henriemedia.com/technical-support/exclude-category-from-the-main-page-or-rss-feed-in-wordpress/</link>
		<comments>http://www.henriemedia.com/technical-support/exclude-category-from-the-main-page-or-rss-feed-in-wordpress/#comments</comments>
		<pubDate>Wed, 06 Aug 2008 22:17:12 +0000</pubDate>
		<dc:creator>Kyle Henrie</dc:creator>
		
		<category><![CDATA[Technical Support]]></category>

		<category><![CDATA[Web Applications]]></category>

		<guid isPermaLink="false">http://www.henriemedia.com/?p=72</guid>
		<description><![CDATA[Have you ever wanted to exclude a category from the main page or the RSS feed of your Wordpress blog? This is the easiest way I have found to do this, without installing a plug-in.
Put the following code anywhere in your theme&#8217;s template functions.php file. For example, if your theme is called &#8220;travel&#8221; then you [...]<p><a href="http://sharethis.com/item?&#038;wp=2.6.1&#38;publisher=3b775478-62d7-47c2-a135-2bfc8c8c6dff&#38;title=Exclude+Category+from+the+main+page+or+RSS+feed+in+Wordpress&#38;url=http%3A%2F%2Fwww.henriemedia.com%2Ftechnical-support%2Fexclude-category-from-the-main-page-or-rss-feed-in-wordpress%2F">ShareThis</a></p>]]></description>
			<content:encoded><![CDATA[<p>Have you ever wanted to exclude a category from the main page or the RSS feed of your Wordpress blog? This is the easiest way I have found to do this, without installing a plug-in.</p>
<p>Put the following code anywhere in your theme&#8217;s template functions.php file. For example, if your theme is called &#8220;travel&#8221; then you would probably find this file here - wp-content/themes/travel/functions.php. If for some reason this file doe not exisit, just create it and save it in your theme&#8217;s folder.</p>
<p>Copy and paste the following into the functions.php file -</p>
<p>function exclude_category($query) {<br />
if ( $query-&gt;is_feed || $query-&gt;is_home ) {<br />
$query-&gt;set(&#8217;cat&#8217;, &#8216;-1&#8242;);<br />
}<br />
return $query;<br />
}<br />
add_filter(&#8217;pre_get_posts&#8217;, &#8216;exclude_category&#8217;);</p>
<p>The code above excludes the category with the id of &#8220;1&#8243; from both the RSS feed and from the main page of your blog. If you want to exclude multiple categories, simply add a comma ( , ) and a dash ( - ) followed by the category ID. For example: &#8216;-2, -3, -4&#8242;. You can locate the category id by logging into the Wordpress dashboard, clicking on manage, then categories.</p>
<p>If you just want to exclude a category from the main page and not the RSS feed, simply replace &#8220;( $query-&gt;is_feed || $query-&gt;is_home )&#8221; with &#8220;( $query-&gt;$query-&gt;is_home )&#8221; or to remove it from just the RSS feed &#8220;( $query-&gt;is_feed)&#8221;.</p>
<p>That&#8217;s all there is to it! Happy coding!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.henriemedia.com/technical-support/exclude-category-from-the-main-page-or-rss-feed-in-wordpress/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Dynamic Meta Code for Wordpress</title>
		<link>http://www.henriemedia.com/technical-support/dynamic-meta-code-for-wordpress/</link>
		<comments>http://www.henriemedia.com/technical-support/dynamic-meta-code-for-wordpress/#comments</comments>
		<pubDate>Tue, 05 Aug 2008 20:51:00 +0000</pubDate>
		<dc:creator>Kyle Henrie</dc:creator>
		
		<category><![CDATA[Technical Support]]></category>

		<category><![CDATA[Web Applications]]></category>

		<guid isPermaLink="false">http://www.henriemedia.com/?p=64</guid>
		<description><![CDATA[So I have wanted to have dynamically generated META Code (title, description, keywords) for my Wordpress blog for sometime now. I tried all of the plug-ins and frankly, they just didn&#8217;t get me where I wanted to go.  I also didn&#8217;t want to do all the extra work of maintaining separate text for the [...]<p><a href="http://sharethis.com/item?&#038;wp=2.6.1&#38;publisher=3b775478-62d7-47c2-a135-2bfc8c8c6dff&#38;title=Dynamic+Meta+Code+for+Wordpress&#38;url=http%3A%2F%2Fwww.henriemedia.com%2Ftechnical-support%2Fdynamic-meta-code-for-wordpress%2F">ShareThis</a></p>]]></description>
			<content:encoded><![CDATA[<p>So I have wanted to have dynamically generated META Code (title, description, keywords) for my Wordpress blog for sometime now. I tried all of the plug-ins and frankly, they just didn&#8217;t get me where I wanted to go.  I also didn&#8217;t want to do all the extra work of maintaining separate text for the META fields - I wanted them dynamically generated.</p>
<p>So I sat down and wrote the following code that I think you might find helpful to increase your blog&#8217;s SEO (Search Engine Optimization) value.</p>
<p>All of these changes should occur in your header.php file of your Wordpress blog&#8217;s template files.</p>
<p>First, I wanted to dynamically create the <strong>&lt;title&gt;</strong> tag with the blog&#8217;s name as the default, but include the category, archive or page title when I was browsing a category, archive or page. Here is the code to do that. Simply cut and paste this code, replacing your current &lt;title&gt;&lt;/title&gt; tag.</p>
<p>&lt;title&gt;&lt;?php if (is_home()): bloginfo(&#8217;name&#8217;); elseif (is_category()): bloginfo(&#8217;name&#8217;); print(&#8221; - &#8220;); single_cat_title(); elseif (is_day() || is_month() || is_year()): bloginfo(&#8217;name&#8217;); print(&#8221; - &#8220;); the_time(&#8217;F Y&#8217;); else: bloginfo(&#8217;name&#8217;); print(&#8221; - &#8220;); the_title(); endif; ?&gt;&lt;/title&gt;</p>
<p>Next, i wanted to dynamically create the <strong>&lt;META description&gt;</strong> tag to make it unique to each page of my blog. Specifically I wanted it to display the current category or archive I was browsing or if I was browsing a page I wanted it to dynamically create the description from the first 20 words of my  post. Here is the code to do that. Simply cut and paste this code, replacing the current &lt;META description=&#8221;" /&gt; tag.</p>
<p>&lt;meta name=&#8221;description&#8221; content=&#8221;&lt;?php if (have_posts()&amp;&amp; is_single()):while(have_posts()):the_post(); the_excerpt_rss(20,2); endwhile; elseif (is_category()): single_cat_title(); print(&#8221; category of the &#8220;); bloginfo(&#8217;name&#8217;); elseif (is_day() || is_month() || is_year()): the_time(&#8217;F Y&#8217;); print(&#8221; archive of the &#8220;); bloginfo(&#8217;name&#8217;); else: bloginfo(&#8217;description&#8217;); endif; ?&gt;&#8221; /&gt;</p>
<p>NOTE: You can change the number of words contained in the page description by changing the first number of the_excerpt_rss() function. So in my example, I have it set to 20 words - the_excerpt_rss(20,2). If I wanted 25 words, I would change it to this - the_excerpt_rss(25,2).</p>
<p>Finally, the <strong>&lt;META keywords&gt;</strong>. I wanted to keep the keywords consistent from category to archive to page, only adding additional category names or archive attributes.  Here is the code to do that. Simply cut and paste this code, replacing the current &lt;META keywords=&#8221;" /&gt; tag.</p>
<p>&lt;meta name=&#8221;keywords&#8221; content=&#8221;&lt;?php if (is_category()): single_cat_title(); print(&#8221;, &#8220;); elseif (is_day() || is_month() || is_year()): the_time(&#8217;F'); print(&#8221;, &#8220;); the_time(&#8217;Y'); print(&#8221;, &#8220;); endif;?&gt;travel, blog, destination, information, see, do, help, advice, reviews, save, savings, ideas, business, golf&#8221; /&gt;</p>
<p>That&#8217;s all there is to it! To make it easier for you, here is all of the change in once place so you just copy and paste once! Happy SEO!</p>
<p>&lt;title&gt;&lt;?php if (is_home()): bloginfo(&#8217;name&#8217;); elseif (is_category()): bloginfo(&#8217;name&#8217;); print(&#8221; - &#8220;); single_cat_title(); elseif (is_day() || is_month() || is_year()): bloginfo(&#8217;name&#8217;); print(&#8221; - &#8220;); the_time(&#8217;F Y&#8217;); else: bloginfo(&#8217;name&#8217;); print(&#8221; - &#8220;); the_title(); endif; ?&gt;&lt;/title&gt;<br />
&lt;meta name=&#8221;description&#8221; content=&#8221;&lt;?php if (have_posts()&amp;&amp; is_single()):while(have_posts()):the_post(); the_excerpt_rss(20,2); endwhile; elseif (is_category()): single_cat_title(); print(&#8221; category of the &#8220;); bloginfo(&#8217;name&#8217;); elseif (is_day() || is_month() || is_year()): the_time(&#8217;F Y&#8217;); print(&#8221; archive of the &#8220;); bloginfo(&#8217;name&#8217;); else: bloginfo(&#8217;description&#8217;); endif; ?&gt;&#8221; /&gt;<br />
&lt;meta name=&#8221;keywords&#8221; content=&#8221;&lt;?php if (is_category()): single_cat_title(); print(&#8221;, &#8220;); elseif (is_day() || is_month() || is_year()): the_time(&#8217;F'); print(&#8221;, &#8220;); the_time(&#8217;Y'); print(&#8221;, &#8220;); endif;?&gt;travel, blog, destination, information, see, do, help, advice, reviews, save, savings, ideas, business, golf&#8221; /&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.henriemedia.com/technical-support/dynamic-meta-code-for-wordpress/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Baby got back links?</title>
		<link>http://www.henriemedia.com/website-strategies/baby-got-back-links/</link>
		<comments>http://www.henriemedia.com/website-strategies/baby-got-back-links/#comments</comments>
		<pubDate>Wed, 30 Jul 2008 14:18:03 +0000</pubDate>
		<dc:creator>Kyle Henrie</dc:creator>
		
		<category><![CDATA[Backlinks]]></category>

		<category><![CDATA[SEO Tools]]></category>

		<category><![CDATA[Website Strategies]]></category>

		<guid isPermaLink="false">http://www.henriemedia.com/?p=59</guid>
		<description><![CDATA[Building quality backlinks is a great way to ensure search engine success.  With an emphasis on &#8220;quality&#8221;, a tool called the Backlink Builder can help you get backlinks in all the right places.
Backlink Builder asks you to supply a keyword or theme, and then returns relevant websites that contain phrases like &#8220;add link&#8221; or [...]<p><a href="http://sharethis.com/item?&#038;wp=2.6.1&#38;publisher=3b775478-62d7-47c2-a135-2bfc8c8c6dff&#38;title=Baby+got+back+links%3F&#38;url=http%3A%2F%2Fwww.henriemedia.com%2Fwebsite-strategies%2Fbaby-got-back-links%2F">ShareThis</a></p>]]></description>
			<content:encoded><![CDATA[<p>Building quality backlinks is a great way to ensure search engine success.  With an emphasis on <strong>&#8220;quality&#8221;</strong>, a tool called the <strong>Backlink Builder</strong> can help you get backlinks in all the right places.</p>
<p>Backlink Builder asks you to supply a keyword or theme, and then returns relevant websites that contain phrases like &#8220;add link&#8221; or &#8220;add site.&#8221; Make acquaintances with as many out as your heart desires, and know that you&#8217;ve given a huge boost to your online campaign.</p>
<table border=1 width=500px bordercolor='#808080' bgcolor='#F3F3F3' style='border-collapse: collapse' cellpadding="5" cellspacing="3" align="center">
<tr>
<td>
<form method="POST" action=http://www.webconfs.com/backlink-builder.php name="backlinkanalysis" target="_blank">
<p><center><font style='font-size: 11pt; font-family: "Verdana, Arial";'><b>Backlink Builder</b></font></center></p>
<p>  <font style='font-size: 11pt; font-family: "Verdana, Arial";'><b>Enter Keyword (Theme)</b></font></p>
<input type=text name="keyword" size=60>
<input type="submit" value="submit" name="submit">
</form>
</td>
</tr>
</table>
]]></content:encoded>
			<wfw:commentRss>http://www.henriemedia.com/website-strategies/baby-got-back-links/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Horde your business&#8217;s domain names</title>
		<link>http://www.henriemedia.com/website-strategies/horde-your-businesss-domain-names/</link>
		<comments>http://www.henriemedia.com/website-strategies/horde-your-businesss-domain-names/#comments</comments>
		<pubDate>Tue, 22 Jul 2008 19:12:43 +0000</pubDate>
		<dc:creator>Kyle Henrie</dc:creator>
		
		<category><![CDATA[Website Strategies]]></category>

		<guid isPermaLink="false">http://www.henriemedia.com/?p=57</guid>
		<description><![CDATA[Smart businesses don&#8217;t just own their company name as a &#8220;.com.&#8221; They purchase  several variations or related names to drive additional traffic to their primary  Web site. In fact, buying additional domains for your company can pay off in big  dividends—here&#8217;s why.
1. It cuts marketing costs. A memorable,  highly targeted and [...]<p><a href="http://sharethis.com/item?&#038;wp=2.6.1&#38;publisher=3b775478-62d7-47c2-a135-2bfc8c8c6dff&#38;title=Horde+your+business%26%238217%3Bs+domain+names&#38;url=http%3A%2F%2Fwww.henriemedia.com%2Fwebsite-strategies%2Fhorde-your-businesss-domain-names%2F">ShareThis</a></p>]]></description>
			<content:encoded><![CDATA[<p>Smart businesses don&#8217;t just own their company name as a &#8220;.com.&#8221; They purchase  several variations or related names to drive additional traffic to their primary  Web site. In fact, buying additional domains for your company can pay off in big  dividends—here&#8217;s why.</p>
<p><strong>1. It cuts marketing costs.</strong> A memorable,  highly targeted and keyword-rich domain name from the secondary market gets more  free, organic search engine traffic. As a result, you spend less money to build  traffic than by purchasing often-costly keyword search buys or print  advertising.</p>
<p><strong>2. It builds your brand.</strong> Owning domains related to  the products and services you offer sends a strong and consistent message to  your customers that you are the leader in your space. A photographer, for  example, could own domains related to cameras, weddings and  portraits.</p>
<p><strong>3. It cuts your competition.</strong> Owning several domains  prevents lost traffic and allows you to cut short the reach of your  competition.</p>
<p><strong>4. It gives you global reach.</strong> Although the &#8220;dot com&#8221;  is the most common—and valuable—extension, opportunities still exist to purchase  variations, such as country-specific domains like .co.uk, .it, .de, .hk and so  on. These have extensive recognition in their region and dramatically increase  your global reach.</p>
<p><strong>5. It builds a valuable portfolio of assets.</strong> Like fine wines, domain names appreciate in value over time, thanks to the  navigation traffic they acquire from prominent search engine positioning. By  acquiring and using multiple premium domain names, you create a number of  well-known and recognized secondary brand triggers associated with your  business.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.henriemedia.com/website-strategies/horde-your-businesss-domain-names/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Search Engine Keyword Position Tool</title>
		<link>http://www.henriemedia.com/website-strategies/search-engine-keyword-position-tool/</link>
		<comments>http://www.henriemedia.com/website-strategies/search-engine-keyword-position-tool/#comments</comments>
		<pubDate>Tue, 01 Jul 2008 08:00:26 +0000</pubDate>
		<dc:creator>Kyle Henrie</dc:creator>
		
		<category><![CDATA[Keywords]]></category>

		<category><![CDATA[SEO Tools]]></category>

		<category><![CDATA[Website Strategies]]></category>

		<guid isPermaLink="false">http://www.henriemedia.com/?p=56</guid>
		<description><![CDATA[Trying to keep track of your site&#8217;s ranking for every keyword or phrase can turn into a full time job. That&#8217;s even more true if you intend to keep tabs on multiple search engines. Shazam! The Search Engine Keyword Position tool to the rescue!
Just enter your site&#8217;s address and a key word or phrase, and [...]<p><a href="http://sharethis.com/item?&#038;wp=2.6.1&#38;publisher=3b775478-62d7-47c2-a135-2bfc8c8c6dff&#38;title=Search+Engine+Keyword+Position+Tool&#38;url=http%3A%2F%2Fwww.henriemedia.com%2Fwebsite-strategies%2Fsearch-engine-keyword-position-tool%2F">ShareThis</a></p>]]></description>
			<content:encoded><![CDATA[<p>Trying to keep track of your site&#8217;s ranking for every keyword or phrase can turn into a full time job. That&#8217;s even more true if you intend to keep tabs on multiple search engines. Shazam! The Search Engine Keyword Position tool to the rescue!</p>
<p>Just enter your site&#8217;s address and a key word or phrase, and it&#8217;ll determine where you stand with Google, Yahoo, and MSN.  You could hardly ask for a quicker or easier way to gauge your search engine success.</p>
<table border="0" cellspacing="0" cellpadding="0" align="center">
<tbody>
<tr>
<td valign="top">
<table border="0" cellspacing="0" cellpadding="0" width="300">
<tbody>
<tr>
<td width="16" height="16"><img src="http://images.devshed.com/sc/seotools/image_01.gif" alt="" width="16" height="16" /></td>
<td width="130" height="16" background="http://images.devshed.com/sc/seotools/bckg06.gif"><img src="http://images.devshed.com/sc/seotools/spacer.gif" alt="" width="130" height="16" /></td>
<td width="118" height="16" background="http://images.devshed.com/sc/seotools/bckg06.gif"><img src="http://images.devshed.com/sc/seotools/spacer.gif" alt="" width="150" height="16" /></td>
<td width="40" background="http://images.devshed.com/sc/seotools/bckg06.gif"><img src="http://images.devshed.com/sc/seotools/spacer.gif" alt="" width="40" height="16" /></td>
<td width="18" height="16"><img src="http://images.devshed.com/sc/seotools/image_02.gif" alt="" width="16" height="16" /></td>
</tr>
<tr>
<td height="30" background="http://images.devshed.com/sc/seotools/bckg07.gif"></td>
<td class="toolbox" colspan="2" width="*" valign="top" bgcolor="#cccccc"><strong><span style="font-size: xx-small;">Search Engine Keyword Position Tool</span></strong> © <a href="http://www.seochat.com">SEO Chat™</a></p>
<form action="http://www.seochat.com/" method="get"><span style="font-family: Courier New,Courier,mono; font-size: x-small;"></p>
<input name="go" type="hidden" value="1" />
<input name="option" type="hidden" value="com_seotools" />
<input name="tool" type="hidden" value="33" /> </span><span style="font-family: Courier New,Courier,mono; font-size: x-small;"><strong>URL</strong><br />
Enter URL</p>
<input name="url" size="32" type="text" />
<p></span></p>
<p><span style="font-family: Courier New,Courier,mono; font-size: x-small;"><strong>Keyword</strong><br />
Enter keyword/phrase</span></p>
<input name="keyword" size="32" type="text" /><span style="font-family: Courier New,Courier,mono; font-size: x-small;"><strong>Enter Captcha To Continue</strong><br />
To prevent spamming, please enter in the numbers and letters in the box below</span></p>
<input name="imageverify" size="32" type="text" />
<input name="timehsh" type="hidden" value="47446f67586a6f3d" /><span style="font-family: Courier New,Courier,mono; font-size: x-small;"><img src="http://www.seochat.com/includes/showcaptcha.php?bd=47446f67586a6f3d" border="1" alt="" /> </span></p>
<input id="toolsubmit" name="toolsubmit" type="submit" value="Submit" /><span style="font-family: Courier New,Courier,mono; font-size: x-small;"><a rel="nofollow" href="http://www.developershed.com/esupport/"><span style="color: #0000ff;"><strong>Report Problem with Tool.</strong></span></a></span></p>
</form>
<p><span style="font-family: Courier New,Courier,mono; font-size: x-small;"> </span></td>
<td width="40" valign="top" bgcolor="#cccccc"></td>
<td width="18" background="http://images.devshed.com/sc/seotools/bckg03.gif"></td>
</tr>
<tr>
<td width="16"><img src="http://images.devshed.com/sc/seotools/image_03.gif" alt="" width="16" height="16" /></td>
<td colspan="3" width="*" height="16" background="http://images.devshed.com/sc/seotools/bckg04.gif"><img src="http://images.devshed.com/sc/seotools/spacer.gif" alt="" width="16" height="16" /></td>
<td width="18"><img src="http://images.devshed.com/sc/seotools/image_04.gif" alt="" width="16" height="16" /></td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
<p><!-- END Developer Shed™ Network's Search Engine Keyword Position --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.henriemedia.com/website-strategies/search-engine-keyword-position-tool/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Loyalty Website Best Practices for Affiliate Marketers</title>
		<link>http://www.henriemedia.com/marketing-strategies/loyalty-website-best-practices-for-affiliate-marketers/</link>
		<comments>http://www.henriemedia.com/marketing-strategies/loyalty-website-best-practices-for-affiliate-marketers/#comments</comments>
		<pubDate>Thu, 26 Jun 2008 19:00:16 +0000</pubDate>
		<dc:creator>Kyle Henrie</dc:creator>
		
		<category><![CDATA[Affiliate Marketing]]></category>

		<category><![CDATA[Marketing Strategies]]></category>

		<guid isPermaLink="false">http://www.henriemedia.com/?p=49</guid>
		<description><![CDATA[Are you looking to build customer loyalty of your affiliate website by offering customer incentives to build long-term customer loyalty?  Here are some do’s and don’t to help you turn your browsing customer into a loyal customer while increasing your affiliate sales.
DO’S

Offer a competitive percentage back to your users.
Use reliable tracking to properly credit [...]<p><a href="http://sharethis.com/item?&#038;wp=2.6.1&#38;publisher=3b775478-62d7-47c2-a135-2bfc8c8c6dff&#38;title=Loyalty+Website+Best+Practices+for+Affiliate+Marketers&#38;url=http%3A%2F%2Fwww.henriemedia.com%2Fmarketing-strategies%2Floyalty-website-best-practices-for-affiliate-marketers%2F">ShareThis</a></p>]]></description>
			<content:encoded><![CDATA[<p>Are you looking to build customer loyalty of your affiliate website by offering customer incentives to build long-term customer loyalty?  Here are some do’s and don’t to help you turn your browsing customer into a loyal customer while increasing your affiliate sales.</p>
<p><strong>DO’S</strong></p>
<ul>
<li>Offer a competitive percentage back to your users.</li>
<li>Use reliable tracking to properly credit your users.</li>
<li>Make sure to remind users to click on your link before purchase is made to make sure it tracks properly.</li>
<li>Use offers when available (such as free shipping or coupons).</li>
<li>If a special offer is available, make the start and end dates known.</li>
<li>Watch for specific communication from your advertisers concerning your offer and upcoming promotions.</li>
<li>Offer well converting advertisers on your homepage for maximum commissions.</li>
<li>Notify advertisers of missed transactions for proper commissions to be paid.</li>
<li>Notify your specific users that they MUST click on your link before their purchase takes place, to avoid the above issue.</li>
<li>Work on strategies; E-mail, link, compensation and site layout.</li>
<li>Most loyalty publishers either do a 50/50 split or a 60/40 split. This means that depending on the commission offer from the advertiser, you will keep 50% of the commission and offer 50% back as a rebate to your member. Or, as in the case of 60/40, you’d keep 60% and offer 40% back as a rebate.</li>
</ul>
<p><strong>DON’TS</strong></p>
<ul>
<li>Do not use incorrect or expired coupon codes or offers such as free shipping.</li>
<li>Do not state incorrect start and end dates on offers and coupons.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.henriemedia.com/marketing-strategies/loyalty-website-best-practices-for-affiliate-marketers/feed/</wfw:commentRss>
		</item>
		<item>
		<title>SEO design guidlines even your mom will understand</title>
		<link>http://www.henriemedia.com/website-strategies/seo-design-guidlines-even-your-mom-will-understand/</link>
		<comments>http://www.henriemedia.com/website-strategies/seo-design-guidlines-even-your-mom-will-understand/#comments</comments>
		<pubDate>Sun, 22 Jun 2008 11:30:31 +0000</pubDate>
		<dc:creator>Kyle Henrie</dc:creator>
		
		<category><![CDATA[Website Strategies]]></category>

		<guid isPermaLink="false">http://www.henriemedia.com/?p=50</guid>
		<description><![CDATA[Whenever someone finds out that I am have a background in Internet marketing, it never fails that I am asked the exact same question over and over again - &#8220;What can I do to get my website more visible to search engines?&#8221;  I usually ask for their website address so I can take a [...]<p><a href="http://sharethis.com/item?&#038;wp=2.6.1&#38;publisher=3b775478-62d7-47c2-a135-2bfc8c8c6dff&#38;title=SEO+design+guidlines+even+your+mom+will+understand&#38;url=http%3A%2F%2Fwww.henriemedia.com%2Fwebsite-strategies%2Fseo-design-guidlines-even-your-mom-will-understand%2F">ShareThis</a></p>]]></description>
			<content:encoded><![CDATA[<p>Whenever someone finds out that I am have a background in Internet marketing, it never fails that I am asked the exact same question over and over again - &#8220;What can I do to get my website more visible to search engines?&#8221;  I usually ask for their website address so I can take a look at what they have done so far. 99% of all of the websites I see do NOT follow the simple guidelines for design and content development that search engines provide.</p>
<p>In an effort to make this as easy as possible for you, here are some of the more relevant design and content guidelines provided by Google, Yahoo or MSN that you should follow -</p>
<ul>
<li>Make a site with a clear hierarchy and text links. Every page should be reachable from at least one static text link.</li>
<li>Offer a site map to your users with links that point to the important parts of your site. If the site map is larger than 100 or so links, you may want to break the site map into separate pages.</li>
<li>Create a useful, information-rich site, and write pages that clearly and accurately describe your content.</li>
<li>Don&#8217;t overdo the use of graphics. Visitors can read the text on an image, but search engines can&#8217;t.</li>
<li>Think about the words users would type to find your pages, and make sure that your site actually includes those words within it.</li>
<li>Try to use text instead of images to display important names, content, or links.</li>
<li>Make sure that your TITLE and ALT tags are descriptive and accurate.</li>
<li>Check for broken links and correct HTML.</li>
<li>Use only well-formed HTML code in your pages. Ensure that all tags are closed, and that all links function properly. If your site contains broken links, search engines may not be able to index your site effectively, and people may not be able to reach all of your pages.</li>
<li>If you move a page, set up the page&#8217;s original URL to direct people to the new page, and tell them whether the move is permanent or temporary.</li>
<li>Keep your URLs simple and static. Complicated or frequently changed URLs are difficult to use as link destinations. For example, the URL www.example.com/mypage is easier for spiders to crawl and for people to type than a long URL with multiple extensions. Also, a URL that doesn&#8217;t change is easier for people to remember, which makes it a more likely link destination from other sites.</li>
<li>Make pages for users, not for search engines. Don&#8217;t deceive your users or present different content to search engines than you display to users, which is commonly referred to as &#8220;cloaking.&#8221;</li>
<li>Avoid tricks intended to improve search engine rankings. A good rule of thumb is whether you&#8217;d feel comfortable explaining what you&#8217;ve done to a website that competes with you. Another useful test is to ask, &#8220;Does this help my users? Would I do this if search engines didn&#8217;t exist?&#8221;</li>
<li>Limit all pages to a reasonable size. We recommend one topic per page. An HTML page with no pictures should be under 150 KB.</li>
</ul>
<p>This is a small list of the things you can do to improve your website design. To see a comprehensive list of guidelines provided by the big 3, click on their logo below to read their specific guidelines.</p>
<p><a href="http://www.google.com/support/webmasters/bin/answer.py?answer=35769&amp;topic=8522" target="_blank"><img class="alignnone size-medium wp-image-51" title="Google" src="http://www.henriemedia.com/wp-content/uploads/google.jpg" alt="Google" width="124" height="50" /></a> <a href="http://help.yahoo.com/l/us/yahoo/search/basics/basics-18.html" target="_blank"><img class="alignnone size-medium wp-image-52" title="yahoo" src="http://www.henriemedia.com/wp-content/uploads/yahoo.jpg" alt="Yahoo" width="198" height="38" /></a> <a href="http://help.live.com/Help.aspx?market=en-US&amp;project=WL_Webmasters&amp;querytype=topic&amp;query=WL_WEBMASTERS_REF_GuidelinesforSuccessfulIndexing.htm"><img class="alignnone size-medium wp-image-53" title="MSN" src="http://www.henriemedia.com/wp-content/uploads/msn.jpg" alt="MSN" width="126" height="50" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.henriemedia.com/website-strategies/seo-design-guidlines-even-your-mom-will-understand/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Monetize Your Blog</title>
		<link>http://www.henriemedia.com/marketing-strategies/monetize-your-blog/</link>
		<comments>http://www.henriemedia.com/marketing-strategies/monetize-your-blog/#comments</comments>
		<pubDate>Fri, 20 Jun 2008 07:00:46 +0000</pubDate>
		<dc:creator>Kyle Henrie</dc:creator>
		
		<category><![CDATA[Affiliate Marketing]]></category>

		<category><![CDATA[Marketing Strategies]]></category>

		<guid isPermaLink="false">http://www.henriemedia.com/?p=46</guid>
		<description><![CDATA[If you&#8217;ve read any press in the last year, the number of Internet users already reading blogs and blogging themselves may shock you. The blogging audience is definitely there, but what are they reading? Everything under the sun, from plastic surgery to biking across New Zealand. Closer to home, blogs track performance marketing strategies and [...]<p><a href="http://sharethis.com/item?&#038;wp=2.6.1&#38;publisher=3b775478-62d7-47c2-a135-2bfc8c8c6dff&#38;title=Monetize+Your+Blog&#38;url=http%3A%2F%2Fwww.henriemedia.com%2Fmarketing-strategies%2Fmonetize-your-blog%2F">ShareThis</a></p>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.henriemedia.com/wp-content/uploads/blog-b.gif"><img class="alignright alignnone size-medium wp-image-45" style="float: right;" title="blog b" src="http://www.henriemedia.com/wp-content/uploads/blog-b.gif" alt="blog b" width="150" height="150" /></a>If you&#8217;ve read any press in the last year, the number of Internet users already reading blogs and blogging themselves may shock you. The blogging audience is definitely there, but what are they reading? Everything under the sun, from plastic surgery to biking across New Zealand. Closer to home, blogs track performance marketing strategies and the opinions of a host of online marketing professionals. The point here is that you&#8217;ve got a great deal of people reading a great deal of highly-targeted content.</p>
<p>So now it makes sense to ask: can you effectively monetize one of the Web&#8217;s last vestiges of traditionally marketing-free content to reach these tantalizing audiences? Should you? We think blog advertising maybe a line worth crossing assuming that we can find ways to include contextually relevant ads that provide value to blog readers. After all, hosting and ISPs don&#8217;t pay for themselves.</p>
<p>Lawrence Lee, president of Zoundry.com, developer of a blog monetizing tool, shares his perspective below:<br />
&#8220;We&#8217;re seeing two types of bloggers.</p>
<ol>
<li>The first are bloggers who are writing for their friends and family. Given that they already have a trusted relationship, credibility around product recommendations is a non-issue. In a sense, friends and family can reward publishers for learning about new, often niche, products they wouldn&#8217;t have learned about otherwise.</li>
<li> The second [group] are people who don&#8217;t necessarily call themselves bloggers, or view themselves as journalists. They are just using the simple tools of blogging to publisher Web sites without having to learn HTML, so they don&#8217;t have credibility issues around monetizing their blogs either.&#8221;</li>
</ol>
<p>So let&#8217;s assume you fall into the categories above or that you&#8217;re on board with blogging. Now it&#8217;s Advertising 101: know your audience and target your ads accordingly. Beth Kirsch, senior marketing manager at Audible.com and affiliate marketing veteran, says &#8220;You have to be extremely strategic - matching the context of the blog to the product is the key. It&#8217;s tricky, but can be a wonderfully effective channel when done well.&#8221;</p>
<p>In other words, one can&#8217;t simply throw up an apparel advertiser&#8217;s banner in the middle of a blog about the experiences of tuning up your car’s engine and expect to generate commissions. However, placing a “Pickup this year’s hottest toy” ad when blogging about buying birthday gifts is both contextually relevant and valuable to readers.</p>
<p>If you&#8217;re already blogging, chances are there are plenty of you who match your content and audience. Take the lead of your competitors and implement your unique, lucrative take on blogs today!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.henriemedia.com/marketing-strategies/monetize-your-blog/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Combine your keywords to increase your effectiveness</title>
		<link>http://www.henriemedia.com/marketing-strategies/combine-your-keywords-to-increase-your-effectiveness/</link>
		<comments>http://www.henriemedia.com/marketing-strategies/combine-your-keywords-to-increase-your-effectiveness/#comments</comments>
		<pubDate>Wed, 18 Jun 2008 18:30:50 +0000</pubDate>
		<dc:creator>Kyle Henrie</dc:creator>
		
		<category><![CDATA[Marketing Strategies]]></category>

		<category><![CDATA[Search Engine Marketing]]></category>

		<guid isPermaLink="false">http://www.henriemedia.com/?p=54</guid>
		<description><![CDATA[Do you have multiple keyword lists that you are trying to use to optimize your website (SEO) or for your online campaigns (PPC, SEM)? We suggest you take the two lists and combine them to make your efforts even more relevent and targeted.
There is a tool available to help you do this quick and easy. [...]<p><a href="http://sharethis.com/item?&#038;wp=2.6.1&#38;publisher=3b775478-62d7-47c2-a135-2bfc8c8c6dff&#38;title=Combine+your+keywords+to+increase+your+effectiveness&#38;url=http%3A%2F%2Fwww.henriemedia.com%2Fmarketing-strategies%2Fcombine-your-keywords-to-increase-your-effectiveness%2F">ShareThis</a></p>]]></description>
			<content:encoded><![CDATA[<p>Do you have multiple keyword lists that you are trying to use to optimize your website (SEO) or for your online campaigns (PPC, SEM)? We suggest you take the two lists and combine them to make your efforts even more relevent and targeted.</p>
<p>There is a tool available to help you do this quick and easy. The<strong> <a href="http://www.webuildpages.com/search/" target="_blank">Search Combination Tool</a></strong> takes your key or main phrases with your secondary keywords.  <a href="http://www.webuildpages.com/search/" target="_blank">Try it</a>, you&#8217;ll like it - and all the time you save!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.henriemedia.com/marketing-strategies/combine-your-keywords-to-increase-your-effectiveness/feed/</wfw:commentRss>
		</item>
		<item>
		<title>KISS your website - you&#8217;ll thank me in the morning</title>
		<link>http://www.henriemedia.com/website-strategies/kiss-your-website-youll-thank-me-in-the-morning/</link>
		<comments>http://www.henriemedia.com/website-strategies/kiss-your-website-youll-thank-me-in-the-morning/#comments</comments>
		<pubDate>Mon, 16 Jun 2008 00:00:09 +0000</pubDate>
		<dc:creator>Kyle Henrie</dc:creator>
		
		<category><![CDATA[Website Strategies]]></category>

		<guid isPermaLink="false">http://www.henriemedia.com/?p=47</guid>
		<description><![CDATA[Companies create websites for a variety of reasons. Some are designed to be an online brochure, many try to generate leads and others focus on e-commerce. Nearly all are intended to favorably showcase a business&#8217;s credibility. Increasingly, companies are giving consideration to whether generating an organic presence within the search engines is a priority, i.e., [...]<p><a href="http://sharethis.com/item?&#038;wp=2.6.1&#38;publisher=3b775478-62d7-47c2-a135-2bfc8c8c6dff&#38;title=KISS+your+website+-+you%26%238217%3Bll+thank+me+in+the+morning&#38;url=http%3A%2F%2Fwww.henriemedia.com%2Fwebsite-strategies%2Fkiss-your-website-youll-thank-me-in-the-morning%2F">ShareThis</a></p>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.henriemedia.com/wp-content/uploads/kiss-your-website.jpg"><img class="alignright alignnone size-medium wp-image-48" style="float: right;" title="KISS your website" src="http://www.henriemedia.com/wp-content/uploads/kiss-your-website.jpg" alt="KISS your website" width="200" height="136" /></a>Companies create websites for a variety of reasons. Some are designed to be an online brochure, many try to generate leads and others focus on e-commerce. Nearly all are intended to favorably showcase a business&#8217;s credibility. Increasingly, companies are giving consideration to whether generating an organic presence within the search engines is a priority, i.e., incorporating search engine optimization (SEO) techniques into the design and structure. We believe it to be the most important aspect of creating a relevant website that gains visibility to the Internet world. Andrew Wetzler, of More Visibility, provides us with some good advice on this subject.</p>
<p>Andrew writes &#8220;If you haven&#8217;t written down the most important objectives for the site, then you should. It will help you to impartially assess whether your site is communicating the most appropriate message. Sometimes the priorities aren&#8217;t consistent with the realities of the site.</p>
<p>As I review websites, I am often struck by the degree to which they (those who are responsible for the site) create something that is considerably more difficult than they need to be or ignore the fundamentals of making a site appropriate for natural search.</p>
<p>One compelling reason to Keep It Simple is that Simple typically translates into Good from an SEO standpoint. Simple still allows for creativity and relevant content though.</p>
<p>From a user experience perspective, there are usually a number of sites that will show up in the search results or that people are aware of for any particular search, so there&#8217;s no reason to assume that you will be able to retain their viewership if your site is not sufficiently intelligent and compelling.</p>
<p>On the most fundamental level, a site should be easy to navigate and zeroed in on the top objective. A primary call to action should be central to the page&#8217;s design as should alternate contact methods. For example, if the goal is to complete a transaction, then the site should prominently display a telephone number that someone can call who doesn&#8217;t want (or isn&#8217;t ready) to fill out the form, but has a question.</p>
<p>When a site is being initially created or redesigned and an outside Web design firm is involved, there tends to be an emphasis on the sizzle instead of the substance. Web design firms, much like offline ad agencies, have a propensity to differentiate themselves by accentuating their artistic side. That is fine, until it gets in the way of an intelligently designed website. For instance, I reviewed a new real estate site recently that was very artsy, in the sense of beautiful pictures, which were intended to set an upscale impression of the property being developed. While it achieved that objective, I believe it was at the expense of other critical items; their Contact Us form was obscured behind a &#8220;menu&#8221; link. The initial results were modest. We have since created a landing page for their paid campaigns that is able to overcome many of the flaws of the site, and which is delivering a markedly higher conversion rate (into a lead).</p>
<p>Flash openings on home pages are probably the best example of a misguided technology today. Besides the fact that Flash is an impediment from a natural search perspective (impedes crawling by the engines), it delays and oftentimes confuses the site visitor&#8217;s experience. It&#8217;s fine to encourage a visitor to play a video on the site that accentuates the intended look and feel, but don&#8217;t make it the first thing someone encounters when coming to the site. This is particularly incompatible with attracting repeat visitors.</p>
<p>Websites don&#8217;t need to be fancy to be effective. Sites that are well-designed are straightforward and precise in their intentions. Everybody has looked at competitor sites to see what else is out there. Try looking at them as an objective critic. Ask a family member or someone whose Web acumen you admire for their opinion to rate your site versus theirs. Above all, commit to refining on a continual basis.&#8221;</p>
<p>Keep it Simple and Smart (KISS) and you will be a step ahead of many other businesses.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.henriemedia.com/website-strategies/kiss-your-website-youll-thank-me-in-the-morning/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
