<?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>FreshClicks</title>
	<atom:link href="https://freshclicks.net/feed/" rel="self" type="application/rss+xml" />
	<link>https://freshclicks.net</link>
	<description>Marketing + Design + Development</description>
	<lastBuildDate>Wed, 18 Oct 2023 14:26:13 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.6.5</generator>
	<item>
		<title>Convert all your WordPress images to Webp without a plugin</title>
		<link>https://freshclicks.net/articles/search-engine-marketing/convert-all-your-wordpress-images-to-webp-without-a-plugin/</link>
					<comments>https://freshclicks.net/articles/search-engine-marketing/convert-all-your-wordpress-images-to-webp-without-a-plugin/#comments</comments>
		
		<dc:creator><![CDATA[Lary Stucker]]></dc:creator>
		<pubDate>Wed, 18 Oct 2023 14:21:16 +0000</pubDate>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Search Engine Marketing]]></category>
		<guid isPermaLink="false">https://freshclicks.net/?p=1407</guid>

					<description><![CDATA[Smaller images mean faster web experiences for your visitors. Google likes this and will typically reward you with an improvement in your search engine rankings. Tired of seeing &#8220;serve images in next generation format&#8221; on my Google pagespeed insights results, I decided to tackle this issue. WordPress plugins try to do too much All of<div class="text-center"> <a class="read-more" href="https://freshclicks.net/articles/search-engine-marketing/convert-all-your-wordpress-images-to-webp-without-a-plugin/">Read More</a></div>]]></description>
										<content:encoded><![CDATA[
<p>Smaller images mean faster web experiences for your visitors. Google likes this and will typically reward you with an improvement in your search engine rankings. Tired of seeing &#8220;serve images in next generation format&#8221; on my Google pagespeed insights results, I decided to tackle this issue.</p>



<h2 class="wp-block-heading">WordPress plugins try to do too much</h2>



<p>All of the WordPress plugins I could find for converting my jpeg and PNG images into WebP either added javascript bloat to my site, kept trying to upsell me, or potentially added one more plugin I had to monitor for potential vulnerabilities. So instead I decided to find a way to batch convert them myself.</p>



<p>These instructions assume you have commandline access to your server, you feel pretty comfortable with linux, MySQL, and you know how to back things up before you start messing around with your WordPress site. Please use at your own risk. Author assumes no responsibility!</p>



<h2 class="wp-block-heading">1. check if webp is installed on your server: </h2>



<pre class="wp-block-code"><code>cwebp -version</code></pre>



<h2 class="wp-block-heading">3. If not, install:</h2>



<pre class="wp-block-code"><code>sudo apt install webp</code></pre>



<h2 class="wp-block-heading">4. Run these three commands seperately to convert PNG, JPG, and JPEG to WEBP with 80% compression:</h2>



<pre class="wp-block-code"><code>for i in *.png; do cwebp -q 80 "$i" -o "${i%.png}.webp"; done</code></pre>



<pre class="wp-block-code"><code>for i in *.jpg; do cwebp -q 80 "$i" -o "${i%.jpg}.webp"; done</code></pre>



<pre class="wp-block-code"><code>for i in *.jpeg; do cwebp -q 80 "$i" -o "${i%.jpeg}.webp"; done</code></pre>



<h2 class="wp-block-heading">5. Login to your mysql database (back it up) then run these six commands:</h2>



<pre class="wp-block-code"><code>UPDATE wp_posts SET post_content = REPLACE(post_content, '.png', '.webp');<br>UPDATE wp_postmeta SET meta_value = REPLACE(meta_value, '.png', '.webp');</code></pre>



<pre class="wp-block-code"><code>UPDATE wp_posts SET post_content = REPLACE(post_content, '.jpeg', '.webp');<br>UPDATE wp_postmeta SET meta_value = REPLACE(meta_value, '.jpeg', '.webp');</code></pre>



<pre class="wp-block-code"><code>UPDATE wp_posts SET post_content = REPLACE(post_content, '.jpg', '.webp');<br>UPDATE wp_postmeta SET meta_value = REPLACE(meta_value, '.jpg', '.webp');</code></pre>



<h2 class="wp-block-heading">6. In WP install &#8220;regnerate thumbnails&#8221; plugin </h2>



<p>Either run from WP-admin or through the CLI. This will make sure all of the images and variations are all connected properly and will if your site is using srcset, it will restore srcset image function on the site.</p>



<pre class="wp-block-code"><code>sudo wp media regenerate</code></pre>



<h2 class="wp-block-heading">7. In wordpress admin, install &#8220;performance lab&#8221; plugin. This will automatically convert your images to webp format going forward.</h2>



<p>Clear your cache and you should be up and running!</p>
]]></content:encoded>
					
					<wfw:commentRss>https://freshclicks.net/articles/search-engine-marketing/convert-all-your-wordpress-images-to-webp-without-a-plugin/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>FFF Enterprises</title>
		<link>https://freshclicks.net/work/fff-enterprises/</link>
					<comments>https://freshclicks.net/work/fff-enterprises/#comments</comments>
		
		<dc:creator><![CDATA[Lary Stucker]]></dc:creator>
		<pubDate>Fri, 11 Mar 2016 23:34:22 +0000</pubDate>
				<category><![CDATA[Case Studies]]></category>
		<category><![CDATA[blue-bg]]></category>
		<guid isPermaLink="false">https://freshclicks.net/?p=1271</guid>

					<description><![CDATA[With more than one billion dollars in annual sales, FFF is the nation’s largest and most trusted distributor of critical-care biopharmaceuticals, plasma products and vaccines. FFF needed FreshClicks help updating their eCommerce and ERP integration to keep their “Helping Healthcare Care,” promise to the largest and most influential GPOs, specialty pharmacy and hospitals. Custom ERP<div class="text-center"> <a class="read-more" href="https://freshclicks.net/work/fff-enterprises/">Read More</a></div>]]></description>
										<content:encoded><![CDATA[<div class="lead">
With more than one billion dollars in annual sales, FFF is the nation’s largest and most trusted distributor of critical-care biopharmaceuticals, plasma products and vaccines. FFF needed FreshClicks help updating their eCommerce and ERP integration to keep their “Helping Healthcare Care,” promise to the largest and most influential GPOs, specialty pharmacy and hospitals.
</div>
<div class="gold-bg">
<div class="row feature">
<div class="col-sm-6 pull-right">
<h2>Custom ERP to CMS Sync</h2>
<p>Since FFF was using a complex ERP solution (Infor M3) they were not very happy with the available eCommerce solutions and the cost-prohibitive ERP sync tools available on the market. Instead, FreshClicks developed a PHP based synchronization system to keep their customer contract agreements and product offerings up to date.
</p></div>
<div class="col-sm-6">
<img fetchpriority="high" decoding="async" src="https://freshclicks.net/wp-content/uploads/m3_sync_sample_code.png" alt="m3_sync_sample_code" width="622" height="557" class="aligncenter size-full wp-image-1342 img-responsive" srcset="https://freshclicks.net/wp-content/uploads/m3_sync_sample_code.png 622w, https://freshclicks.net/wp-content/uploads/m3_sync_sample_code-150x134.png 150w, https://freshclicks.net/wp-content/uploads/m3_sync_sample_code-300x269.png 300w" sizes="(max-width: 709px) 85vw, (max-width: 909px) 67vw, (max-width: 984px) 61vw, (max-width: 1362px) 45vw, 100vw" />
</div>
</div>
</div>
<div class="grey-bg">
<div class="feature">
<img decoding="async" src="https://freshclicks.net/wp-content/uploads/fff_biosupply.png" alt="fff biosupply" width="1285" height="2150" class="aligncenter size-full wp-image-1302 img-responsive" srcset="https://freshclicks.net/wp-content/uploads/fff_biosupply.png 1285w, https://freshclicks.net/wp-content/uploads/fff_biosupply-150x251.png 150w, https://freshclicks.net/wp-content/uploads/fff_biosupply-300x502.png 300w, https://freshclicks.net/wp-content/uploads/fff_biosupply-768x1285.png 768w, https://freshclicks.net/wp-content/uploads/fff_biosupply-770x1288.png 770w" sizes="(max-width: 709px) 85vw, (max-width: 909px) 67vw, (max-width: 1362px) 62vw, 100vw" />
</div>
</div>
<div class="lt-blue-bg">
<div class="feature row">
<h2>Technology Implementation</h2>
<div class="col-sm-3">
<img decoding="async" src="https://freshclicks.net/wp-content/uploads/magento-logo-150x150.png" alt="magento-logo" width="150" height="150" class="aligncenter size-thumbnail wp-image-1290 img-responsive" srcset="https://freshclicks.net/wp-content/uploads/magento-logo-150x150.png 150w, https://freshclicks.net/wp-content/uploads/magento-logo-300x300.png 300w, https://freshclicks.net/wp-content/uploads/magento-logo.png 500w" sizes="(max-width: 150px) 85vw, 150px" /></p>
<h3>Open-source eCommerce</h3>
<p>After requirements gathering and risks assessments, FreshClicks recommended <strong>Magento Enterprise</strong> as it provided many required features, was open-source, and had a strong API.
</div>
<div class="col-sm-3">
<img loading="lazy" decoding="async" src="https://freshclicks.net/wp-content/uploads/git-logo-150x150.png" alt="git-logo" width="150" height="150" class="aligncenter size-thumbnail wp-image-1292 img-responsive" srcset="https://freshclicks.net/wp-content/uploads/git-logo-150x150.png 150w, https://freshclicks.net/wp-content/uploads/git-logo-300x300.png 300w, https://freshclicks.net/wp-content/uploads/git-logo.png 500w" sizes="(max-width: 150px) 85vw, 150px" /></p>
<h3>Continuous Integration</h3>
<p>with a team spread across many time zones it was important to have a decentralized version control system that integrated into our testing a deployment strategy.</p>
</div>
<div class="col-sm-3">
<img loading="lazy" decoding="async" src="https://freshclicks.net/wp-content/uploads/bootstrap-logo-150x150.png" alt="bootstrap-logo" width="150" height="150" class="aligncenter size-thumbnail wp-image-1307 img-responsive" srcset="https://freshclicks.net/wp-content/uploads/bootstrap-logo-150x150.png 150w, https://freshclicks.net/wp-content/uploads/bootstrap-logo-300x300.png 300w, https://freshclicks.net/wp-content/uploads/bootstrap-logo.png 500w" sizes="(max-width: 150px) 85vw, 150px" /></p>
<h3>Responsive Framework</h3>
<p>When building out the custom Magento theme, FreshClicks used Bootstrap classes so that implementing a mobile layout would be easier than FFF had anticipated. </p>
</div>
<div class="col-sm-3">
<img loading="lazy" decoding="async" src="https://freshclicks.net/wp-content/uploads/gear-logo-150x150.png" alt="gear-logo" width="150" height="150" class="aligncenter size-thumbnail wp-image-1309 img-responsive" srcset="https://freshclicks.net/wp-content/uploads/gear-logo-150x150.png 150w, https://freshclicks.net/wp-content/uploads/gear-logo-300x300.png 300w, https://freshclicks.net/wp-content/uploads/gear-logo.png 500w" sizes="(max-width: 150px) 85vw, 150px" /></p>
<h3>Custom ERP Intergration</h3>
<p>From product and customer data synchronization to dynamic product pricing and live quantity calls a complete ERP to eCommerce integration is a serious undertaking, which is why FFF chose FreshClicks for this project.</p>
</div>
</div>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://freshclicks.net/work/fff-enterprises/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>VentureDrones</title>
		<link>https://freshclicks.net/work/venturedrones/</link>
					<comments>https://freshclicks.net/work/venturedrones/#comments</comments>
		
		<dc:creator><![CDATA[Lary Stucker]]></dc:creator>
		<pubDate>Tue, 01 Mar 2016 22:51:02 +0000</pubDate>
				<category><![CDATA[Case Studies]]></category>
		<guid isPermaLink="false">https://freshclicks.net/?p=1323</guid>

					<description><![CDATA[At the cutting edge of Ariel photography the team at VentureDrones wanted a web presence that would push their medium and highlight the beauty of drone videography. Advancements in technology have made the ability for VentureDrones to film and shoot photos without the typical limitations and costs associated with aerial photography. New video formats (with<div class="text-center"> <a class="read-more" href="https://freshclicks.net/work/venturedrones/">Read More</a></div>]]></description>
										<content:encoded><![CDATA[<div class="lead">At the cutting edge of Ariel photography the team at VentureDrones wanted a web presence that would push their medium and highlight the beauty of drone videography.</div>
<div class="lt-blue-bg">
<div class="row feature">
<div class="col-sm-6 slide-left">
Advancements in technology have made the ability for VentureDrones to film and shoot photos without the typical limitations and costs associated with aerial photography.
</div>
<div class="col-sm-6 slide-right"><img loading="lazy" decoding="async" class="alignnone size-medium wp-image-1325 img-responsive" src="https://freshclicks.net/wp-content/uploads/p3_flying-300x196.png" alt="p3_flying" width="300" height="196" srcset="https://freshclicks.net/wp-content/uploads/p3_flying-300x196.png 300w, https://freshclicks.net/wp-content/uploads/p3_flying-150x98.png 150w, https://freshclicks.net/wp-content/uploads/p3_flying.png 532w" sizes="(max-width: 300px) 85vw, 300px" /></div>
</div>
</div>
<div class="feature">
<img loading="lazy" decoding="async" src="https://freshclicks.net/wp-content/uploads/venturedrones_mac_iphone.png" alt="venturedrones_mac_iphone" width="1254" height="1010" class="aligncenter size-full wp-image-1327 img-responsive" srcset="https://freshclicks.net/wp-content/uploads/venturedrones_mac_iphone.png 1254w, https://freshclicks.net/wp-content/uploads/venturedrones_mac_iphone-150x121.png 150w, https://freshclicks.net/wp-content/uploads/venturedrones_mac_iphone-300x242.png 300w, https://freshclicks.net/wp-content/uploads/venturedrones_mac_iphone-768x619.png 768w, https://freshclicks.net/wp-content/uploads/venturedrones_mac_iphone-770x620.png 770w" sizes="(max-width: 709px) 85vw, (max-width: 909px) 67vw, (max-width: 1362px) 62vw, 100vw" /><br />
New video formats (with fallback for older browsers) mean visitors can experience streaming video up to 4K resolution on large screens and mobile devices.
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://freshclicks.net/work/venturedrones/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>Roadtrip and Travel</title>
		<link>https://freshclicks.net/work/roadtrip-and-travel/</link>
					<comments>https://freshclicks.net/work/roadtrip-and-travel/#comments</comments>
		
		<dc:creator><![CDATA[Lary Stucker]]></dc:creator>
		<pubDate>Tue, 23 Feb 2016 18:31:37 +0000</pubDate>
				<category><![CDATA[Case Studies]]></category>
		<category><![CDATA[red-bg]]></category>
		<guid isPermaLink="false">https://freshclicks.net/?p=1351</guid>

					<description><![CDATA[Capturing the wonder and adventure of travel in a mobile experience was a primary goal of the new travel bloggers site at Roadtripandtravel.com. FreshClicks designed and implemented an experience that displays large, beautiful images that send just the right size image to the device. Having images that completely fill the screen, yet still load quickly<div class="text-center"> <a class="read-more" href="https://freshclicks.net/work/roadtrip-and-travel/">Read More</a></div>]]></description>
										<content:encoded><![CDATA[<div class="lead">
Capturing the wonder and adventure of travel in a mobile experience was a primary goal of the new travel bloggers site at <a href="http://roadtripandtravel.com">Roadtripandtravel.com</a>. FreshClicks designed and implemented an experience that displays large, beautiful images that send just the right size image to the device.
</div>
<div class="lt-blue-bg">
<div class="row feature">
<div class="col-sm-6 slide-left">
<blockquote><p>Having images that completely fill the screen, yet still load quickly is huge at drawing our readers deeper into our stories. The faster load times also had a great boost to our SEO rankings too!</p></blockquote>
<blockquote><p>
Site speed is one of the signals Google looks for when determining page rank.</p></blockquote>
<p>&#8211; Matt Cutts, Head of Google’s Webspam team
</p></div>
<div class="col-sm-6 slide-right">
<img loading="lazy" decoding="async" src="https://freshclicks.net/wp-content/uploads/scaling_images-770x510.png" alt="scaling_images" width="640" height="424" class="aligncenter size-large wp-image-1357 img-responsive" srcset="https://freshclicks.net/wp-content/uploads/scaling_images-770x510.png 770w, https://freshclicks.net/wp-content/uploads/scaling_images-150x99.png 150w, https://freshclicks.net/wp-content/uploads/scaling_images-300x199.png 300w, https://freshclicks.net/wp-content/uploads/scaling_images-768x508.png 768w, https://freshclicks.net/wp-content/uploads/scaling_images.png 1020w" sizes="(max-width: 709px) 85vw, (max-width: 909px) 67vw, (max-width: 984px) 61vw, (max-width: 1362px) 45vw, 100vw" />
</div>
</div>
</div>
<div class="row feature">
<div class="col-sm-3">
<img loading="lazy" decoding="async" src="https://freshclicks.net/wp-content/uploads/wp-logo-150x150.png" alt="wp-logo" width="300" height="300" class="alignnone size-medium wp-image-1291 img-responsive" srcset="https://freshclicks.net/wp-content/uploads/wp-logo-150x150.png 150w, https://freshclicks.net/wp-content/uploads/wp-logo-300x300.png 300w, https://freshclicks.net/wp-content/uploads/wp-logo.png 500w" sizes="(max-width: 300px) 85vw, 300px" /></p>
<h3>Built on WordPress</h3>
<p>FreshClicks utilized the WordPress Engine to take advantage of the simple editor and media handling capabilities so that non-technical writers could spend their time writing great articles and not worrying about how to write code.</p>
</div>
<div class="col-sm-3">
<img loading="lazy" decoding="async" src="https://freshclicks.net/wp-content/uploads/gear-logo-150x150.png" alt="gear-logo" width="300" height="300" class="alignnone size-medium wp-image-1309 img-responsive" srcset="https://freshclicks.net/wp-content/uploads/gear-logo-150x150.png 150w, https://freshclicks.net/wp-content/uploads/gear-logo-300x300.png 300w, https://freshclicks.net/wp-content/uploads/gear-logo.png 500w" sizes="(max-width: 300px) 85vw, 300px" /></p>
<h3>Custom Theme</h3>
<p>Since image sizing by device was an important key to the success of this site, FreshClicks implemented a custom function to utilize the built-in capabilities of the the latest WordPress release.
</p></div>
<div class="col-sm-3">
<img loading="lazy" decoding="async" src="https://freshclicks.net/wp-content/uploads/bootstrap-logo-150x150.png" alt="bootstrap-logo" width="300" height="300" class="alignnone size-medium wp-image-1307 img-responsive" srcset="https://freshclicks.net/wp-content/uploads/bootstrap-logo-150x150.png 150w, https://freshclicks.net/wp-content/uploads/bootstrap-logo-300x300.png 300w, https://freshclicks.net/wp-content/uploads/bootstrap-logo.png 500w" sizes="(max-width: 300px) 85vw, 300px" /></p>
<h3>Responsive Framework</h3>
<p>Designing with a &#8220;mobile first&#8221; mind-set allowed us to create a rock-solid user experience that scales well on mobile, tablets, and desktop devices.
</p></div>
<div class="col-sm-3">
<img loading="lazy" decoding="async" src="https://freshclicks.net/wp-content/uploads/nginx-logo-150x150.png" alt="nginx-logo" width="300" height="300" class="alignnone size-medium wp-image-1315 img-responsive" srcset="https://freshclicks.net/wp-content/uploads/nginx-logo-150x150.png 150w, https://freshclicks.net/wp-content/uploads/nginx-logo-300x300.png 300w, https://freshclicks.net/wp-content/uploads/nginx-logo.png 500w" sizes="(max-width: 300px) 85vw, 300px" /></p>
<h3>Faster servers</h3>
<p>With the need for speed and ability to handle lots of concurrent visitors, FreshClicks recommended an NGINX server with Varnish to boost performance by more than 50%.
</p></div>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://freshclicks.net/work/roadtrip-and-travel/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
			</item>
		<item>
		<title>JW Basketball</title>
		<link>https://freshclicks.net/work/jw-basketball/</link>
					<comments>https://freshclicks.net/work/jw-basketball/#comments</comments>
		
		<dc:creator><![CDATA[Lary Stucker]]></dc:creator>
		<pubDate>Thu, 12 Mar 2015 23:30:07 +0000</pubDate>
				<category><![CDATA[Case Studies]]></category>
		<category><![CDATA[gold-bg]]></category>
		<guid isPermaLink="false">https://freshclicks.net/?p=1277</guid>

					<description><![CDATA[Jason Wright is recognized as one of the finest basketball trainers in the United States. He brings discipline, creativity, and dedication to student athletes. His students are some of the most fundamentally sound AAU, high school, collegiate, and professional basketball players in the world. For four years, FreshClicks has provided design, branding, and marketing support<div class="text-center"> <a class="read-more" href="https://freshclicks.net/work/jw-basketball/">Read More</a></div>]]></description>
										<content:encoded><![CDATA[<div class="lead">
Jason Wright is recognized as one of the finest basketball trainers in the United States. He brings discipline, creativity, and dedication to student athletes. His students are some of the most fundamentally sound AAU, high school, collegiate, and professional basketball players in the world. For four years, FreshClicks has provided design, branding, and marketing support to help expand the franchise into a global brand of athletic trainers.
</div>
<div class="gold-bg">
<div class="row feature">
<div class="col-sm-6 slide-left">
<blockquote><p>At JW Basketball we needed to work with a team that really understands our market and mission. FreshClicks surpassed our expectations and was able to create an engaging site that helped share a lot of information, register athletes directly through the site, and improve our search engine results.</p></blockquote>
<p>&#8211; Jason Wright, Founder
</p></div>
<div class="col-sm-6 slide-right">
<img loading="lazy" decoding="async" src="https://freshclicks.net/wp-content/uploads/jwb_iphone.png" alt="jwb_iphone" width="298" height="600" class="aligncenter size-full wp-image-1284 img-responsive" srcset="https://freshclicks.net/wp-content/uploads/jwb_iphone.png 298w, https://freshclicks.net/wp-content/uploads/jwb_iphone-150x302.png 150w" sizes="(max-width: 298px) 85vw, 298px" />
</div>
</div>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://freshclicks.net/work/jw-basketball/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
			</item>
		<item>
		<title>AdWords: Target your audience without keywords</title>
		<link>https://freshclicks.net/articles/google-adwords/adwords-target-your-audience-without-keywords/</link>
					<comments>https://freshclicks.net/articles/google-adwords/adwords-target-your-audience-without-keywords/#comments</comments>
		
		<dc:creator><![CDATA[Lary Stucker]]></dc:creator>
		<pubDate>Mon, 24 Mar 2014 18:50:15 +0000</pubDate>
				<category><![CDATA[Google Adwords]]></category>
		<guid isPermaLink="false">https://freshclicks.net/?p=856</guid>

					<description><![CDATA[&#160; Google AdWords continues to introduce new tools and options to better target your market and their new &#8220;Interest Categories&#8221; feature is a welcomed addition. Instead of targeting websites or keywords that you think your target audience would be interested in, Interest Categories flip the process on its head and focus on the interests of<div class="text-center"> <a class="read-more" href="https://freshclicks.net/articles/google-adwords/adwords-target-your-audience-without-keywords/">Read More</a></div>]]></description>
										<content:encoded><![CDATA[<p>&nbsp;</p>
<p><img loading="lazy" decoding="async" class="img-responsive alignnone wp-image-1382 size-large" src="https://freshclicks.net/wp-content/uploads/google_adwords-770x289.png" alt="google_adwords" width="640" height="240" srcset="https://freshclicks.net/wp-content/uploads/google_adwords-770x289.png 770w, https://freshclicks.net/wp-content/uploads/google_adwords-150x56.png 150w, https://freshclicks.net/wp-content/uploads/google_adwords-300x113.png 300w, https://freshclicks.net/wp-content/uploads/google_adwords-768x288.png 768w, https://freshclicks.net/wp-content/uploads/google_adwords.png 1200w" sizes="(max-width: 709px) 85vw, (max-width: 909px) 67vw, (max-width: 984px) 61vw, (max-width: 1362px) 45vw, 100vw" /></p>
<p>Google AdWords continues to introduce new tools and options to better target your market and their new &#8220;<a href="http://adwords.google.com/support/aw/bin/answer.py?answer=140188" target="_blank">Interest Categories</a>&#8221; feature is a welcomed addition. Instead of targeting websites or keywords that you think your target audience would be interested in, Interest Categories flip the process on its head and focus on the interests of the audiences. For example, if you wanted to target young adults who ride dirt bikes.</p>
<h2><img loading="lazy" decoding="async" class="alignright size-medium wp-image-857" title="Interest Categories" src="https://freshclicks.net/wp-content/uploads/2011/10/InterestCategories-240x300.png" alt="" width="240" height="300" />Why is this beneficial?</h2>
<p>With interest categories you can place ads in front of highly customized audiences even when they are visiting websites that are not associated with the category you&#8217;ve selected. By reaching highly targeted people even when they are not visiting websites related to your interest category it allows you to increase the reach and frequency of your advertising. This is especially beneficial if your target audience belongs to a sub-set of many different interest groups.</p>
<h2>How it work</h2>
<p>When people visit any of the millions of websites that use Google AdSense to display ads, Google analyzes the content of the page and site to show ads that match the content. Google uses this information along with third-party cookies to analyze the visitor&#8217;s interests. It takes into account the types of sites, frequency of visits to infer gender, age group, and other demographics. For example, if you visit sites that have a majority of male visitors, it may associate you with a male demographic category.</p>
<h2>How to make use of AdWords Interest categories</h2>
<ul>
<li>I would recommend creating separate campaign just to handle your interest category campaigns.</li>
<li>Make sure that Display Network is selected under the &#8220;Networks&#8221; setting for the campaign.</li>
<li>Automatic bidding with a Max CPC. We suggest starting with automatic bidding &#8212; Google will automatically adjust your bids to get the most clicks possible from your budget. You can set a max CPC to control the cost of individual clicks. When you&#8217;re done, enter your daily interest categories budget in the Budget section.</li>
<li>Select or create a separate AdGroup for each interest category</li>
</ul>
<h3>Custom Combinations</h3>
<p>The work-horse of Interest Categories is the ability to use AND/OR/NOT options to create highly customized interest groups, you can create unique campaigns for a variety of customers.</p>
<p>Here are the following options</p>
<ul>
<li>all these audiences (AND relationship)</li>
<li>one or more of these audiences (OR relationship)</li>
<li>none of these audiences (NOT relationship)</li>
</ul>
<p>Using our previous dirt bike example, lets say <a href="http://www.foxhead.com/">Fox Head</a> has joined forces with <a href="http://www.atvsafety.gov/">atvsafety.gov</a> to promote proper safety gear that targets youth culture. You could create an interest group that targets this very specific audience:</p>
<ul>
<li>One or more of these categories:
<ul>
<li>Off-Road Vehicles</li>
<li>Motor Sports</li>
</ul>
</li>
<li>All of these categories
<ul>
<li>Hard Rock &amp; Progressive Music</li>
<li>Indie &amp; Alternative Music</li>
<li>Metal (Music)</li>
<li>Punk (Music)</li>
</ul>
</li>
<li>None of these audiences (These are categories kids are typically NOT interested in)
<ul>
<li>News</li>
<li>Laws &amp; Government</li>
<li>Real Estate</li>
<li>Home &amp; Garden</li>
<li>Business &amp; Industrial</li>
</ul>
</li>
</ul>
<p>This is a very narrow sampling of interest groups that would identify youth culture and give FOX and ATVsafety the ability to create targeted campaigns just for that group.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://freshclicks.net/articles/google-adwords/adwords-target-your-audience-without-keywords/feed/</wfw:commentRss>
			<slash:comments>6</slash:comments>
		
		
			</item>
		<item>
		<title>[Info Graphic] Corporate problem solving</title>
		<link>https://freshclicks.net/articles/marketing/corporate-problem-solving/</link>
					<comments>https://freshclicks.net/articles/marketing/corporate-problem-solving/#comments</comments>
		
		<dc:creator><![CDATA[Lary Stucker]]></dc:creator>
		<pubDate>Tue, 04 Mar 2014 22:30:51 +0000</pubDate>
				<category><![CDATA[Marketing]]></category>
		<guid isPermaLink="false">https://freshclicks.net?p=1149</guid>

					<description><![CDATA[]]></description>
										<content:encoded><![CDATA[<p><img loading="lazy" decoding="async" class="alignnone size-large wp-image-1197 img-responsive" src="https://freshclicks.net/wp-content/uploads/FreshClicks_problemSolving-770x2223.jpg" alt="FreshClicks_problemSolving" width="770" height="2223" srcset="https://freshclicks.net/wp-content/uploads/FreshClicks_problemSolving-770x2223.jpg 770w, https://freshclicks.net/wp-content/uploads/FreshClicks_problemSolving-150x433.jpg 150w, https://freshclicks.net/wp-content/uploads/FreshClicks_problemSolving-300x866.jpg 300w, https://freshclicks.net/wp-content/uploads/FreshClicks_problemSolving-768x2217.jpg 768w, https://freshclicks.net/wp-content/uploads/FreshClicks_problemSolving.jpg 1400w" sizes="(max-width: 709px) 85vw, (max-width: 909px) 67vw, (max-width: 984px) 61vw, (max-width: 1362px) 45vw, 100vw" /></p>
]]></content:encoded>
					
					<wfw:commentRss>https://freshclicks.net/articles/marketing/corporate-problem-solving/feed/</wfw:commentRss>
			<slash:comments>9</slash:comments>
		
		
			</item>
		<item>
		<title>Are HashBangs bad for AdWords?</title>
		<link>https://freshclicks.net/articles/google-adwords/hashbangs-bad-for-adwords/</link>
					<comments>https://freshclicks.net/articles/google-adwords/hashbangs-bad-for-adwords/#comments</comments>
		
		<dc:creator><![CDATA[Lary Stucker]]></dc:creator>
		<pubDate>Mon, 29 Jul 2013 23:00:24 +0000</pubDate>
				<category><![CDATA[Google Adwords]]></category>
		<category><![CDATA[adwords]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[featured]]></category>
		<category><![CDATA[hashbangs]]></category>
		<guid isPermaLink="false">https://freshclicks.net?p=965</guid>

					<description><![CDATA[I manage a site with lots of keyword specific content (+700 pages) that happens to be displayed using AJAX (Specifically JSON and JavaScript.) This was the preferred method because the client wanted to encourage visitors to be able to quickly browse through the content without having to wait for the browser to refresh. We understood<div class="text-center"> <a class="read-more" href="https://freshclicks.net/articles/google-adwords/hashbangs-bad-for-adwords/">Read More</a></div>]]></description>
										<content:encoded><![CDATA[<p><img loading="lazy" decoding="async" class="alignright size-medium wp-image-1207 img-responsive" src="https://freshclicks.net/wp-content/uploads/hashbangPow-300x150.gif" alt="hashbangPow" width="300" height="150" srcset="https://freshclicks.net/wp-content/uploads/hashbangPow-300x150.gif 300w, https://freshclicks.net/wp-content/uploads/hashbangPow-150x75.gif 150w" sizes="(max-width: 300px) 85vw, 300px" />I manage a site with lots of keyword specific content (+700 pages) that happens to be displayed using AJAX (Specifically JSON and JavaScript.) This was the preferred method because the client wanted to encourage visitors to be able to quickly browse through the content without having to wait for the browser to refresh. We understood the Search engine optimization dangers so made sure to follow <a title="crawlable AJAX application" href="https://developers.google.com/webmasters/ajax-crawling/docs/getting-started">Google&#8217;s recommendations for a crawlable AJAX application</a>. We implemented the JavaScript pages with HashBang(#!), the non-Javascript escaped fragments, and made sure to include them in our sitemap that we sent to Google. Everything appeared to be working as our pages skyrocketed up the organic search results.<span id="more-965"></span></p>
<h2>Great SEO ranking didn&#8217;t translated into great Quality Scores</h2>
<p>With the success we had with our organic SEO strategy it was time to implement our AdWords SEM campaigns. I picked a handful of important keywords and HashBang enabled landing pages and got started. I waited a few weeks so that the campaigns had a chance to be seasoned but with average quality scores around 3-4 I knew something wasn&#8217;t right and suspected that Google AdWords was not seeing our AJAX powered content. Doing my own research on the subject yielded zero results and a call to Google wasn&#8217;t helpful because the Google AdWords rep didn&#8217;t even know about the escaped fragment recommendations.</p>
<p>In case you didn&#8217;t know, quality score is how AdWords determines if you make it into the auction and the price you have to pay per click. A low quality score is going to cost you in both the amount of impressions you receive and the price you pay per click.</p>
<h2>Google AdWords Keyword planner</h2>
<p>Luckily, AdWords provides tools that suggest keywords based on the relevant content AdWords sees on a web page. Lets try their <a title="Keyword Planner" href="http://adwords.google.com/keywordplanner">Keyword planner</a> tool and see what results we get.</p>
<h3>Control</h3>
<p>All of the AJAX based content is in a web app we call &#8220;works with&#8221;, similar to the <a title="Google Apps Marketplace" href="https://www.google.com/enterprise/marketplace">Google Apps Marketplace</a>. So as a control, it makes sense to see what the keyword planner identifies as the top keywords for that page. First thing I noticed is those keywords are not very specific to the content of the web app. Also, in the right corner of the Google&#8217;s Keyword planner is an &#8220;Add all (306)&#8221; button which will be important when comparing the amount of keywords the tool finds on the other pages. <img loading="lazy" decoding="async" class="alignnone size-large wp-image-1204 img-responsive" src="https://freshclicks.net/wp-content/uploads/hashbanged_app-770x313.png" alt="hashbanged_app" width="770" height="313" srcset="https://freshclicks.net/wp-content/uploads/hashbanged_app-770x313.png 770w, https://freshclicks.net/wp-content/uploads/hashbanged_app-150x61.png 150w, https://freshclicks.net/wp-content/uploads/hashbanged_app-300x122.png 300w, https://freshclicks.net/wp-content/uploads/hashbanged_app-768x312.png 768w, https://freshclicks.net/wp-content/uploads/hashbanged_app.png 778w" sizes="(max-width: 709px) 85vw, (max-width: 909px) 67vw, (max-width: 984px) 61vw, (max-width: 1362px) 45vw, 100vw" /></p>
<h3>HashBanged content page</h3>
<p>One of our first landing pages has to do with Microsoft Word, so loading that into the Keyword planner tool I expect to see some keywords related to Microsoft Word show pretty high on the relevancy list. Instead, these are the same keywords that show up in our control and the &#8220;Add all&#8221; button is still 306! Clearly the keyword planner tool see these two pages as having the exact same content.</p>
<p><img loading="lazy" decoding="async" class="alignnone size-large wp-image-1206 img-responsive" src="https://freshclicks.net/wp-content/uploads/hashbanged-770x308.png" alt="hashbanged" width="770" height="308" srcset="https://freshclicks.net/wp-content/uploads/hashbanged-770x308.png 770w, https://freshclicks.net/wp-content/uploads/hashbanged-150x60.png 150w, https://freshclicks.net/wp-content/uploads/hashbanged-300x120.png 300w, https://freshclicks.net/wp-content/uploads/hashbanged-768x307.png 768w, https://freshclicks.net/wp-content/uploads/hashbanged.png 781w" sizes="(max-width: 709px) 85vw, (max-width: 909px) 67vw, (max-width: 984px) 61vw, (max-width: 1362px) 45vw, 100vw" /></p>
<h3>Escaped fragmented page</h3>
<p>As part of Google&#8217;s recommendation for crawlable AJAX pages we created these fragment pages that are supposed to be crawled by Google&#8217;s bots. Loading this page into the Keyword planner we finally get to see those Microsoft Word related keywords and our &#8220;Add all&#8221; button climbs to 866 keywords found in the page.</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-1205 img-responsive" src="https://freshclicks.net/wp-content/uploads/hashbanged_unfragmented.png" alt="hashbanged_unfragmented" width="769" height="314" srcset="https://freshclicks.net/wp-content/uploads/hashbanged_unfragmented.png 769w, https://freshclicks.net/wp-content/uploads/hashbanged_unfragmented-150x61.png 150w, https://freshclicks.net/wp-content/uploads/hashbanged_unfragmented-300x122.png 300w, https://freshclicks.net/wp-content/uploads/hashbanged_unfragmented-768x314.png 768w" sizes="(max-width: 709px) 85vw, (max-width: 909px) 67vw, (max-width: 984px) 61vw, (max-width: 1362px) 45vw, 100vw" /></p>
<h3>Keyword rich static page</h3>
<p>As a final test I decided to create a static page that closely resembles the AJAX version of the page. It has the same content, but doesn&#8217;t have the cool AJAX application that lets the visitor switch between products works with. As you can see in the screen grab below, the results are very similar to our escaped fragment page and more proof that AdWords can&#8217;t see the proper content in our AJAX page even though we followed their recommendations for crawlable pages.</p>
<p><img loading="lazy" decoding="async" class="alignnone size-large wp-image-1252 img-responsive" src="https://freshclicks.net/wp-content/uploads/non-hashbanged-770x313.png" alt="non-hashbanged" width="770" height="313" srcset="https://freshclicks.net/wp-content/uploads/non-hashbanged-770x313.png 770w, https://freshclicks.net/wp-content/uploads/non-hashbanged-150x61.png 150w, https://freshclicks.net/wp-content/uploads/non-hashbanged-300x122.png 300w, https://freshclicks.net/wp-content/uploads/non-hashbanged-768x313.png 768w, https://freshclicks.net/wp-content/uploads/non-hashbanged.png 774w" sizes="(max-width: 709px) 85vw, (max-width: 909px) 67vw, (max-width: 984px) 61vw, (max-width: 1362px) 45vw, 100vw" /></p>
<h2>Could Keyword planner just be lame?</h2>
<p>There is a possibility that keyword planner is just doing a simple scrap of the page you point it at and it may not be indicative of Google AdWords understanding of your page when assigning quality scores. What makes matters worse, is that Google AdWords doesn&#8217;t evaluate quality score whenever you change destination URIs even though pointing at relevant content is a major factor in a keywords quality score. The only way to get a reevaluation of a keywords Quality Score is to get enough impressions and clicks to trigger a reevaluation. For us, it means paying a much higher Max. PPC than we probably should, just to if the Quality Score improves over time.</p>
<p>Have you had a similar issue with HashBang web pages receiving poor quality scores, or waiting for reevaluations of keywords after you&#8217;ve improved the relevancy of your landing pages?</p>
<p>&nbsp;</p>
]]></content:encoded>
					
					<wfw:commentRss>https://freshclicks.net/articles/google-adwords/hashbangs-bad-for-adwords/feed/</wfw:commentRss>
			<slash:comments>4</slash:comments>
		
		
			</item>
		<item>
		<title>Introduction to responsive websites</title>
		<link>https://freshclicks.net/articles/mobile/introduction-to-responsive-websites/</link>
					<comments>https://freshclicks.net/articles/mobile/introduction-to-responsive-websites/#comments</comments>
		
		<dc:creator><![CDATA[Lary Stucker]]></dc:creator>
		<pubDate>Fri, 26 Jul 2013 03:26:02 +0000</pubDate>
				<category><![CDATA[Mobile]]></category>
		<category><![CDATA[responsive]]></category>
		<guid isPermaLink="false">https://freshclicks.net/?p=967</guid>

					<description><![CDATA[With the explosion in mobile and tablet usage, a website that works well on any devices isn&#8217;t a &#8220;nice to have&#8221; its a &#8220;must have.&#8221; However, you must have the proper strategy if you hope to make the most out of your visitors&#8217; experience on your website. In the past website attempted to address mobile<div class="text-center"> <a class="read-more" href="https://freshclicks.net/articles/mobile/introduction-to-responsive-websites/">Read More</a></div>]]></description>
										<content:encoded><![CDATA[<p><img loading="lazy" decoding="async" class="alignright size-medium wp-image-1221 img-responsive" src="https://freshclicks.net/wp-content/uploads/responsive-300x125.png" alt="responsive" width="300" height="125" srcset="https://freshclicks.net/wp-content/uploads/responsive-300x125.png 300w, https://freshclicks.net/wp-content/uploads/responsive-150x63.png 150w, https://freshclicks.net/wp-content/uploads/responsive-768x320.png 768w, https://freshclicks.net/wp-content/uploads/responsive-770x321.png 770w, https://freshclicks.net/wp-content/uploads/responsive.png 1200w" sizes="(max-width: 300px) 85vw, 300px" />With the explosion in mobile and tablet usage, a website that works well on any devices isn&#8217;t a &#8220;nice to have&#8221; its a &#8220;must have.&#8221; However, you must have the proper strategy if you hope to make the most out of your visitors&#8217; experience on your website.</p>
<p>In the past website attempted to address mobile by creating separate mobile sites with their own content, navigation, and site options. These mobile sites typically were expensive to maintain, updated less frequently, and didn&#8217;t have the same level of functionality as the regular website. This left the mobile visitor feeling like a second class citizen and frustrated by the experience. <span id="more-967"></span></p>
<h2>Building a responsive website</h2>
<p>The modern approach to supporting variable devices is to use a single website with CSS that adapts the look and feel of the website based on the browsers dimensions. This allows you to control the users experience for each device type all from a single source. I obviously glossing over some of the details, but the basic appraoch is as follows:</p>
<h3>Determine the best layout for each device class</h3>
<p>There are hundreds of devices out there, luckily you don&#8217;t have to create a design for each device. Instead you can classify most devices into 6 major classes:</p>
<ul>
<li>Mobile Portrait (320 x 480)</li>
<li>Mobile landscape (480 x 320)</li>
<li>Small tablet portrait (600&#215;800)</li>
<li>Small tablet landscape (800&#215;600)</li>
<li>Tablet portrait (768&#215;1024)</li>
<li>Tablet/ desktop landscape (1024&#215;768)</li>
</ul>
<p>Depending on your visitor type, you may want to include a 7th class for larger screens.</p>
<p>For each class you need to determine the best layout to maximize the customer experience. This might seem like a lot of work, but remember, once you&#8217;ve worked this out all of your content will seamlessly scale to your visitors devices.</p>
<h3>CSS format for handling various dimension classes</h3>
<p>The css code for handling screen dimensions is pretty straight forward. For example, the way to specify styles for Mobile device in portrait mode, looks like this.<br />
<code><br />
/* Max width of 480 pixels */<br />
@media screen and (max-width: 480px) {<br />
//Your CSS styles specific to this device<br />
}<br />
</code></p>
<p>Iterate this process for each device class and your site is ready to provide your visitors with the best user experience regardless of their device.</p>
<p>Even if you use a responsive framework, like <a title="Twitter Bootstrap" href="http://twitter.github.io/bootstrap/">Twitter&#8217;s Bootstrap</a>, its good to know how to customize the appearance using CSS in order to ensure that your visitors have the best possible experience.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://freshclicks.net/articles/mobile/introduction-to-responsive-websites/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
			</item>
		<item>
		<title>Does eBay&#8217;s AdWord study spell doom for paid search?</title>
		<link>https://freshclicks.net/articles/google-adwords/ebays-adwords-study/</link>
					<comments>https://freshclicks.net/articles/google-adwords/ebays-adwords-study/#comments</comments>
		
		<dc:creator><![CDATA[Lary Stucker]]></dc:creator>
		<pubDate>Tue, 19 Mar 2013 22:40:21 +0000</pubDate>
				<category><![CDATA[Google Adwords]]></category>
		<category><![CDATA[featured]]></category>
		<guid isPermaLink="false">https://freshclicks.net/?p=949</guid>

					<description><![CDATA[The short answer is &#8220;no&#8221;! The SEM industry is buzzing with the eBay Research Lab&#8217;s recent study (Consumer Heterogeneity and Paid Search Effectiveness: A Large Scale Field Experiment) which calls into question the effectiveness of paid search. I’ve read a few of the articles about the study and most focus on the doom-and-gloom and don’t<div class="text-center"> <a class="read-more" href="https://freshclicks.net/articles/google-adwords/ebays-adwords-study/">Read More</a></div>]]></description>
										<content:encoded><![CDATA[<p id="internal-source-marker_0.6767292487519552" dir="ltr"><em>The short answer is &#8220;no&#8221;!</em></p>
<p dir="ltr"><img loading="lazy" decoding="async" class="alignright size-full wp-image-1186 img-responsive" src="https://freshclicks.net/wp-content/uploads/ebay.jpg" alt="ebay" width="259" height="194" srcset="https://freshclicks.net/wp-content/uploads/ebay.jpg 259w, https://freshclicks.net/wp-content/uploads/ebay-150x112.jpg 150w" sizes="(max-width: 259px) 85vw, 259px" />The SEM industry is buzzing with the eBay Research Lab&#8217;s recent study (<a href="http://conference.nber.org/confer/2013/EoDs13/Tadelis.pdf" target="_blank">Consumer Heterogeneity and Paid Search Effectiveness: A Large Scale Field Experiment</a>) which calls into question the effectiveness of paid search. I’ve read a few of the articles about the study and most focus on the doom-and-gloom and don’t really look closely at the actual study. I want to cut through all of the hype and see what actionable information we can actually learn from their study. <span id="more-949"></span></p>
<h2>Branded Search Engine Campaigns</h2>
<p>A branded campaign is one where a search for your company’s brand results in paid ads at the top of the search results page directly above natural (also known as organic) unpaid links to the companies’ sites. Ebay&#8217;s study found that someone searching for your brand is likely to find their way to your website without the paid links. When they stopped their branded paid campaigns all traffic found their way through their natural search results.</p>
<h2>Non-branded Search Engine Campaigns</h2>
<p>Any campaign using keywords not owned by the company would be considered non-branded search campaigns, even if some of those keywords are brand names. For example, if someone does a search for &#8220;Gibson les Paul&#8221; it is clearly a brand name guitar, but not a brand name guitar owned by eBay.</p>
<p>Their non-branded search campaign experiments found that search advertising wasn’t effective on repeat customers for non-branded search advertising. When a frequent eBay shopper does a Google search for “Gibson les Paul” and an eBay ad for Gibson les Paul guitars shows up, it wasn’t effective at persuading the person to buy from eBay. The person was already familiar with eBay and would have eventually found their way to eBay as a resource for their search for a “Gibson les Paul&#8221; However, if a new or infrequent visitor to eBay saw the ad, there was a statistical significance to the persuasiveness of the ad. In other words, the ads had a positive ROI. The experiment reconfirmed the notion that advertising&#8217;s value comes from informing people about the existence of your product or services, not at persuading them to purchase. If the visitor is already familiar with your brand, then search advertising will have no additional benefit.</p>
<h2>Recommendations, based on the eBay study</h2>
<p>While the study makes it clear that eBay&#8217;s brand recognition puts them in a unique situation, there are some insights that apply to most online advertisers.</p>
<h3>Branded SEM campaign recommendations:</h3>
<ul>
<li>Use branded campaigns if competitors (or resellers) are targeting your brand name.</li>
<li>Use branded campaigns if you’d like to highlight a special offer or new feature/service that customers, already familiar with your brand, would not be aware of.</li>
<li>If neither of those above scenarios apply to your business, save your marketing dollars on something more meaningful.</li>
</ul>
<h3>Non-branded SEM campaign recommendations:</h3>
<p>The informative view of advertising implies that targeting uninformed users is a critical factor for successful advertising. Therefore ROI calculations should be based on new visitors and not total visitors. In other words, if you have calculated a per visit value for your campaigns you should only factor new visitors.</p>
<p>If you  would like <a href="https://freshclicks.net/contact/">help optimizing your existing Google Adwords campaigns</a>, or want to get started with AdWords and don’t know where to start, <a href="https://freshclicks.net/contact/">contact us</a>!</p>
]]></content:encoded>
					
					<wfw:commentRss>https://freshclicks.net/articles/google-adwords/ebays-adwords-study/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
	</channel>
</rss>
