<?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>SEOserpent &#187; News</title>
	<atom:link href="http://seoserpent.com/blog/news/feed" rel="self" type="application/rss+xml" />
	<link>http://seoserpent.com</link>
	<description>A search marketing company.</description>
	<lastBuildDate>Fri, 03 Feb 2012 19:01:20 +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>Gravity Forms – 5 Digit Zip Codes &amp; State Abbreviations</title>
		<link>http://seoserpent.com/news/gravity-forms-zip-codes-state-abbreviations</link>
		<comments>http://seoserpent.com/news/gravity-forms-zip-codes-state-abbreviations#comments</comments>
		<pubDate>Mon, 21 Mar 2011 17:02:44 +0000</pubDate>
		<dc:creator>Marty Martin</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Gravity Forms]]></category>
		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://seoserpent.com/?p=424</guid>
		<description><![CDATA[Originally based on the code by Matthew Connerton on the Gravity Forms support site, I have modified his original code to also trim the zip code into the first 5 digits. Currently with Gravity Forms, there is no (easy) way to change the input fields to only accept 5 digits (or any other number) and/or [...]]]></description>
			<content:encoded><![CDATA[<p>Originally based on <a href="http://www.gravityhelp.com/forums/topic/abbreviate-city-fields#post-4368" rel="nofollow" target="_blank">the code</a> by <a href="http://www.webbusinessfreedom.com/" target="_blank">Matthew Connerton</a> on the <a href="http://mear.is/gravity">Gravity Forms</a> support site, I have modified his original code to also trim the zip code into the first 5 digits. </p>
<p>Currently with Gravity Forms, there is no (easy) way to change the input fields to only accept 5 digits (or any other number) and/or change the submitted state selection to their USPS equivalents.  If you&#8217;re trying to use your data to generate mailing labels or anything similar, the way it is setup can be messy and/or problematic.</p>
<p>Hence, the solution Mr. Connerton, and now myself, have developed.  It is written as a plugin so all you have to do is download the file below, unzip it and put it in your WordPress plugins folder.  It will then modify the submitted entry prior to it being saved to your database, and BAM!  You&#8217;re a happy camper.</p>
<p>So what does this plugin do in short? &#8211; </p>
<ul>
<li>Trim submitted zip codes to 5 digits</li>
<li>Convert full state names to their USPS state abbreviations</li>
</ul>
<p>Enjoy! > <a class="downloadlink" href="http://seoserpent.com/downloads/State+and+Zip+Code+Modifier+for+Gravity+Forms" title="Version1.1 downloaded 407 times" >State and Zip Code Modifier for Gravity Forms (407)</a></p>
<p><small>Note: the link to Gravity Forms only works if you&#8217;re logged in to their support forums.</small></p>
]]></content:encoded>
			<wfw:commentRss>http://seoserpent.com/news/gravity-forms-zip-codes-state-abbreviations/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Weather Underground Plugin Expansion</title>
		<link>http://seoserpent.com/news/weather-plugin</link>
		<comments>http://seoserpent.com/news/weather-plugin#comments</comments>
		<pubDate>Tue, 05 Oct 2010 17:26:47 +0000</pubDate>
		<dc:creator>Marty Martin</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://seoserpent.com/?p=397</guid>
		<description><![CDATA[My favorite Denver SEO company Katz Web Services announced the release of their latest awesome plugin- WP Wunderground Plugin. It&#8217;s a well done, awesome plugin that allows you to use short codes to display the weather forecast in a widget or blog post. For one of my clients however, we wanted the weather to be [...]]]></description>
			<content:encoded><![CDATA[<p>My favorite <a href="http://www.seodenver.com/" target="_blank">Denver SEO</a> company Katz Web Services <a href="http://www.seodenver.com/wunderground/" target="_blank">announced</a> the release of their latest awesome plugin- <a href="http://wordpress.org/extend/plugins/wunderground/">WP Wunderground Plugin</a>.</p>
<p>It&#8217;s a well done, awesome plugin that allows you to use short codes to display the weather forecast in a widget or blog post.</p>
<p>For one of my clients however, we wanted the weather to be a part of the theme outside of a widget.</p>
<p>A small bit of code later, it&#8217;s done.  You can see the weather forecast for <a href="http://theroanoker.com/" target="_blank">Roanoke, VA</a> by clicking that link.</p>
<p>We installed the WP Wunderground Plugin and then added this bit of code to our theme file:</p>
<pre class="brush: php; title: ; notranslate">
&amp;lt;?php
if(class_exists(wp_wunderground)) :
	echo '&amp;lt;div id=&amp;quot;rkr_weather&amp;quot;&amp;gt;';
	$our_weather = new wp_wunderground;
	print $our_weather-&amp;gt;build_forecast('24012');
	echo '&amp;lt;/div&amp;gt;';
endif;
?&amp;gt;
</pre>
<p>Now, an explanation of what you see.</p>
<p>Line 2 is a conditional statement checking to see if the plugin is currently active by checking to see if the plugin&#8217;s class exists.  It wouldn&#8217;t exist if the plugin was active.  You could also use the WordPress function <code>is_plugin_active()</code> but I&#8217;ve run into a couple of instances where it returns an unknown function error.</p>
<p>Lines 3 &#038; 6 are simply creating a container <code>&laquo;div&raquo;</code> for styling purposes.</p>
<p>Lines 4 creates a new instance of the plugin class and Line 5 prints the result of the internal method <code>build_forecast()</code>.  The &#8217;24012&#8242; is the zip code I want the weather returned for and is also defined in the plugin settings.</p>
<p>Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://seoserpent.com/news/weather-plugin/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>ISP behavioral targeting v. You</title>
		<link>http://seoserpent.com/news/isp-behavioral-targeting</link>
		<comments>http://seoserpent.com/news/isp-behavioral-targeting#comments</comments>
		<pubDate>Fri, 26 Sep 2008 15:52:26 +0000</pubDate>
		<dc:creator>Marty Martin</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Behavioral Targeting]]></category>
		<category><![CDATA[Industry News]]></category>

		<guid isPermaLink="false">http://www.seoserpent.com/?p=20</guid>
		<description><![CDATA[The U.S. Congress has been investigating the use of behavioral targeting since protests raised awareness of large ISPs like Embarq, Verizon, AT&#38;T and Time Warner Cable using the targeted ad service from web tracking company NebuAd. The question at hand is whether the analyzing of deep packet Internet traffic violates federal wiretap laws by not [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.seoserpent.com/wp-content/uploads/2008/09/black-light-bulb.jpg" alt="It&#039;s darkest before the lights go completely out." align="right" />The <a href="http://www.washingtonpost.com/wp-dyn/content/article/2008/07/16/AR2008071602378_pf.html">U.S. Congress has been investigating</a> the use of behavioral targeting since protests raised awareness of large ISPs like Embarq, Verizon, AT&amp;T and Time Warner Cable using the targeted ad service from web tracking company NebuAd.</p>
<p>The question at hand is whether the analyzing of deep packet Internet traffic <a href="http://www.dslreports.com/shownews/94578" rel="nofollow">violates federal wiretap laws</a> by not gaining consent from the consumer to the gathering and use of their web communications.</p>
<p>The latest news is <a href="http://www.washingtonpost.com/wp-dyn/content/article/2008/09/25/AR2008092504135.html?hpid=sec-tech">AT&amp;T and Verizon have both pledged to refrain</a> from collecting and tracking the browsing behavior of their customers unless they receive explicit permission from the affected consumers.  It&#8217;s also rather interesting to note that they are <a href="http://blog.wired.com/business/2008/09/large-isps-endo.html" rel="nofollow">in support of self-regulating themselves</a>, if and <strong><em>when </em></strong>they do begin using this technology, because hey they can be <a href="http://blog.wired.com/27bstroke6/2008/07/under-pressure.html" rel="nofollow">trusted to tell us about it</a>, right?</p>
]]></content:encoded>
			<wfw:commentRss>http://seoserpent.com/news/isp-behavioral-targeting/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SEOmoz PRO Training Seminar</title>
		<link>http://seoserpent.com/news/seomoz-pro-training-seminar</link>
		<comments>http://seoserpent.com/news/seomoz-pro-training-seminar#comments</comments>
		<pubDate>Thu, 25 Sep 2008 19:06:02 +0000</pubDate>
		<dc:creator>Marty Martin</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Conferences]]></category>
		<category><![CDATA[Industry News]]></category>

		<guid isPermaLink="false">http://www.seoserpent.com/?p=6</guid>
		<description><![CDATA[In August our principal visited Seattle for a pro training seminar sponsored by the experts at SEOmoz.  It was an intense two days covering a variety of search engine optimization techniques, industry news, social media, question and answer and many other search topics. It was also a great opportunity to connect and network with other [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.seoserpent.com/wp-content/uploads/2008/09/seo-conference-1.jpg"><img align="right" title="SEOmoz conference speakers" src="http://www.seoserpent.com/wp-content/uploads/2008/09/seo-conference-1.jpg" alt="SEO conference" width="280" height="280" /></a>In August our principal visited Seattle for a pro training seminar sponsored by the experts at SEOmoz.  It was an intense two days covering a variety of search engine optimization techniques, industry news, social media, question and answer and many other search topics.</p>
<p>It was also a great opportunity to connect and network with other search engine professionals from around the world.  There were in-house SEO experts from companies like Microsoft and Best Buy and from as far away as Germany, England and New Zealand.  The broad array of experience and knowledge at the seminar became exceptionally apparent during the excellent question and answer session (see image on right).</p>
<p><span id="more-6"></span></p>
<h3>Day 1 topics</h3>
<ul>
<li>Elite website architecture</li>
<li>Thinking like a search engineer</li>
<li>Spam detection and false positives</li>
<li>Global search trends</li>
<li>Sitemaps and webmaster tools</li>
<li>Crawlability</li>
<li>Legal issues</li>
</ul>
<h3>Day 2 topics</h3>
<ul>
<li>Reputation management</li>
<li>Social networks for SEO</li>
<li>Opportunities/pitfalls of link buying</li>
<li>Enterprise link building</li>
<li>Vertical search inclusion</li>
<li>Future of search engines</li>
</ul>
<p>This fantastic conference featured expert SEO speakers from around the world including <a href="http://thirddoormedia.com/team.shtml#dsullivan" rel="nofollow">Danny Sullivan</a>, <a href="http://www.seomoz.org/team/randfish" rel="nofollow">Rand Fishkin</a>, <a href="http://www.stephanspencer.com/" rel="nofollow">Stephan Spencer</a>, <a href="http://www.seomoz.org/team/rebecca" rel="nofollow">Rebecca Kelley</a>, <a href="http://www.seomoz.org/users/view/35534" rel="nofollow">Nick Gerner</a>, <a href="http://www.distilled.co.uk/company/people/will-critchlow.html" rel="nofollow">Will Critchlow</a>, <a href="http://www.distilled.co.uk/company/people/duncan-morris.html" rel="nofollow">Duncan Morris</a>, <a href="http://www.seomoz.org/team/sarah" rel="nofollow">Sarah Bird</a>, <a href="http://www.seomoz.org/team/jeff" rel="nofollow">Jeff Pollard</a>, <a href="http://www.seomoz.org/team/jane" rel="nofollow">Jane Copland</a>, and <a href="http://www.conductor.com/about/management" rel="nofollow">Seth Besmertnik</a>.</p>
<p>SEOserpent believes strongly in the value of continuing education and keeping abreast of the latest trends in the search field.  New techniques evolve every week, new ideas, every day and of course the search engine algorithms change fairly frequently.  Keeping atop of all the latest requires continuous discipline and effort but the dividends our clients gain far outweights the time needed to stay afloat.</p>
]]></content:encoded>
			<wfw:commentRss>http://seoserpent.com/news/seomoz-pro-training-seminar/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

