<?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>Click Refresh</title>
	<atom:link href="http://www.click-refresh.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.click-refresh.com</link>
	<description>The Wordpress Experts</description>
	<lastBuildDate>Thu, 17 Jan 2013 19:43:22 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Control Widget Placement with Widget Logic</title>
		<link>http://www.click-refresh.com/control-widget-placement-with-widget-logic/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=control-widget-placement-with-widget-logic</link>
		<comments>http://www.click-refresh.com/control-widget-placement-with-widget-logic/#comments</comments>
		<pubDate>Thu, 17 Jan 2013 19:43:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Tutorials & How To's]]></category>

		<guid isPermaLink="false">http://www.click-refresh.com/?p=113</guid>
		<description><![CDATA[One of the easiest ways to control which WordPress Widgets display on a particular place, there is a great WordPress Plugin called Widget Logic. There used to be a more non-technical tool called Widget Logic Visual,  but of WordPress v3.5 the visual version no longer works. Step 1: Go to Appearance &#62; Widgets Step 2: [...]]]></description>
				<content:encoded><![CDATA[<p></p><p>One of the easiest ways to control which WordPress Widgets display on a particular place, there is a great WordPress Plugin called Widget Logic. There used to be a more non-technical tool called Widget Logic Visual,  but of WordPress v3.5 the visual version no longer works.<span id="more-113"></span></p>
<p><strong>Step 1: </strong> Go to Appearance &gt; Widgets</p>
<p><strong>Step 2:</strong> Add your new widget or open the widget you&#8217;d like to add logic to. Once the widget is opened look to the section at the bottom of the widget just above the SAVE button.</p>
<p><img class="aligncenter size-full wp-image-120" alt="Widget Logic" src="http://www.click-refresh.com/wp-content/uploads/2013/01/widget-logic.gif" width="496" height="716" /></p>
<h3>Step 3: Adding Logic</h3>
<p>Inside that widget logic space we can put some commands to set where this widget displays. The above example is using <code>is_page()</code> command&#8230; this is telling this widget to only display on pages, not single posts, categories etc, just pages.</p>
<h4>Examples</h4>
<p>Here is a short list of the commands that can be added to the widget logic box.</p>
<ul>
<li><code>is_home()</code> &#8212; just the main blog page</li>
<li><code>!is_page('about')</code> &#8212; everywhere EXCEPT this specific WP &#8216;page&#8217;</li>
<li><code>!is_user_logged_in()</code> &#8212; shown when a user is not logged in</li>
<li><code>is_category(array(5,9,10,11))</code> &#8212; category page of one of the given category IDs</li>
<li><code>is_page(array(7,12,18,24))</code> &#8211;  page of one of the given page IDs</li>
</ul>
<p>In the last 2 bullets you&#8217;ll notice a bunch of numbers separated by commas. Those are  ID #&#8217;s. If you only wanted a widget to display on a set of particular pages or categories you use the appropriate command and list the ID&#8217;s of the pages.  Now you are probably asking yourself how to find the ID, check out the following  tutorial which explains just how to  <a href="http://www.click-refresh.com/finding-the-wordpress-page-or-post-id/" target="_blank">Find a Page or Post ID in WordPress</a>.</p>
<p>For a more command examples visit the <a href="http://wordpress.org/extend/plugins/widget-logic/other_notes/" target="_blank">Widget Logic page</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.click-refresh.com/control-widget-placement-with-widget-logic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finding the WordPress Page or Post ID</title>
		<link>http://www.click-refresh.com/finding-the-wordpress-page-or-post-id/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=finding-the-wordpress-page-or-post-id</link>
		<comments>http://www.click-refresh.com/finding-the-wordpress-page-or-post-id/#comments</comments>
		<pubDate>Thu, 17 Jan 2013 19:36:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorials & How To's]]></category>

		<guid isPermaLink="false">http://www.click-refresh.com/?p=114</guid>
		<description><![CDATA[Finding the Page or Post ID for your WordPress content is pretty simple and can be done in one of 2 ways. 1. Via the Page / Post Editor To find the WP Page or Post ID via the Dashboard, simply click to a saved or published WP Page or Post and look up in [...]]]></description>
				<content:encoded><![CDATA[<p></p><p>Finding the Page or Post ID for your WordPress content is pretty simple and can be done in one of 2 ways.<span id="more-114"></span></p>
<h3>1. Via the Page / Post Editor</h3>
<p>To find the WP Page or Post ID via the Dashboard, simply click to a saved or published WP Page or Post and look up in the Address or URL bar at the top of your browser.  You are looking for something that looks like &#8230;post.php?post=113&amp;&#8230;.</p>
<p>Where it says post=113 is your ID #, so this particular post in the screenshot is id# 113.</p>
<p><img class="aligncenter size-full wp-image-117" alt="Finding a Worpdress Post ID" src="http://www.click-refresh.com/wp-content/uploads/2013/01/post-id-dashboard.gif" width="581" height="302" /></p>
<h3></h3>
<h3>2. From the Front End of the Website While Logged In</h3>
<p>Login to your WordPress dashboard, then go to your website hompage and navigate to the page you&#8217;d like to obtain the Post ID for. Role your mouse over the Edit Button in the WordPress Toolbar at the top of the webpage. While your mouse is hovering, look in the lower left corner (most browsers) of the page and you will see a URL pop-up. Just as in the above example you are looking for the part that says post= then the # that is assigned to the given page. In the below example the Page ID is 32.</p>
<p style="text-align: center;"><img class="aligncenter  wp-image-118" alt="WordPress Post ID Front EndWordPress Post ID Front End" src="http://www.click-refresh.com/wp-content/uploads/2013/01/post-id-front.gif" width="560" height="458" /></p>
<p>There you have it&#8230; two easy ways to find a WordPress Post or Page ID.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.click-refresh.com/finding-the-wordpress-page-or-post-id/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Plugin Conflict</title>
		<link>http://www.click-refresh.com/wordpress-plugin-conflict/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=wordpress-plugin-conflict</link>
		<comments>http://www.click-refresh.com/wordpress-plugin-conflict/#comments</comments>
		<pubDate>Wed, 16 Jan 2013 17:00:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorials & How To's]]></category>

		<guid isPermaLink="false">http://www.click-refresh.com/?p=106</guid>
		<description><![CDATA[From time to time one might run into an issue with their WordPress blog or CMS where stuff just stops working. Your visual editor disappears, the widget panel becomes inoperable or something just freaks out&#8230; you are most likely experiencing a plugin conflict. A plugin conflict is when the code or processing from one plugin [...]]]></description>
				<content:encoded><![CDATA[<p></p><p>From time to time one might run into an issue with their WordPress blog or CMS where stuff just stops working. Your visual editor disappears, the widget panel becomes inoperable or something just freaks out&#8230; you are most likely experiencing a plugin conflict.</p>
<p>A plugin conflict is when the code or processing from one plugin interferes with the processing of another plugin. The ultimate end is a stalemate and things start to lock up&#8230; like your widget panel or visual editor.<span id="more-106"></span></p>
<h3>Detecting Which WP Plugin In Conflicted</h3>
<p>To detect where the plugin conflict lies you have to go through a simple process of elimination. We start by deactivating all WP Plugins.</p>
<p><strong>Step 1:</strong> Go to the Plugins page in your WP Dashboard, toggle Active Plugins and check the box in the darker gray bar above the list of plugins to select all. Choose Deactivate from the drop menu and click Apply to deactivate all the plugins at once.</p>
<p style="text-align: center"><img class="aligncenter  wp-image-107" alt="deactivate-plugins" src="http://www.click-refresh.com/wp-content/uploads/2013/01/deactivate-plugins.gif" width="583" height="364" /></p>
<p><strong>Step 2:</strong> Reactivate each plugin one at time, testing the website as you reactivate. I tend to reactivate the most important plugins first, things like Cart66, Gravity Forms or any other plugin that is integral to your site.</p>
<p>Continue reactivating each plugin until you find the one that breaks your site. If you go through this process and you can&#8217;t get things working right please <a title="WordPress Technical Support" href="http://www.click-refresh.com/support/">submit a support ticket</a>.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.click-refresh.com/wordpress-plugin-conflict/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Five Steps to Creating a WordPress Photo Gallery</title>
		<link>http://www.click-refresh.com/five-steps-to-creating-a-wordpress-photo-gallery/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=five-steps-to-creating-a-wordpress-photo-gallery</link>
		<comments>http://www.click-refresh.com/five-steps-to-creating-a-wordpress-photo-gallery/#comments</comments>
		<pubDate>Tue, 15 Jan 2013 03:23:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorials & How To's]]></category>

		<guid isPermaLink="false">http://www.click-refresh.com/?p=94</guid>
		<description><![CDATA[With the release of WordPress 3.5, they added a new photo gallery function built into the Media Gallery Uploader. Here is a quick step-by-step tutorial to creating a photo gallery in WordPress. Five Steps to Creating a WordPress Photo Gallery Step 1: To add a gallery go to the page or post you want your [...]]]></description>
				<content:encoded><![CDATA[<p></p><p>With the release of WordPress 3.5, they added a new photo gallery function built into the Media Gallery Uploader. Here is a quick step-by-step tutorial to creating a photo gallery in WordPress.</p>
<h3>Five Steps to Creating a WordPress Photo Gallery</h3>
<p><strong>Step 1:</strong> To add a gallery go to the page or post you want your gallery to display on or simply add a new post. <span id="more-94"></span>Once on the page or post editor screen, click<strong> Add Media</strong> and a window will pop open.</p>
<p><img class="aligncenter  wp-image-95" title="Add Media to your page or post" alt="Add Media to your page or post" src="http://www.click-refresh.com/wp-content/uploads/2013/01/add-media.gif" width="514" height="323" /></p>
<p><strong>Step 2:</strong> Once on the Insert Media screen choose Create Gallery in upper left column of the screen and then click select files from the middle of the screen. Repeat the upload process 1 image at a time.</p>
<p style="text-align: center;"><img class="aligncenter  wp-image-97" alt="select-files" src="http://www.click-refresh.com/wp-content/uploads/2013/01/select-files.gif" width="553" height="394" /></p>
<p>&nbsp;</p>
<p><strong>Step 3:</strong>  Once all the images are uploaded, click to the Media Library screen where you now select the images you would like included in the gallery and drag them into the order you&#8217;d like.  Finish this step by clicking the Create Gallery button in the lower right corner of the media screen.</p>
<p style="text-align: center;"><img class="aligncenter  wp-image-98" alt="select images for gallery" src="http://www.click-refresh.com/wp-content/uploads/2013/01/check-images.gif" width="550" height="394" /></p>
<p style="text-align: left;"><strong>Step 4:  </strong>Adjust the gallery settings in the right column. You can choose to link each image to itself to display the full size image or link to the media file page it gets attached to upon upload. You can also set the # of columns to display your images and set random order if you are feeling spunky.</p>
<p style="text-align: center;"><img class="aligncenter  wp-image-99" alt="insert-gallery" src="http://www.click-refresh.com/wp-content/uploads/2013/01/insert-gallery.gif" width="586" height="402" /></p>
<p style="text-align: left;"><strong>Step 5:</strong> After clicking the Insert Gallery button in step 4,  your page or post editor should look something like the screenshot below in visual view.</p>
<p style="text-align: center;"><img class="aligncenter  wp-image-100" alt="gallery in post editor" src="http://www.click-refresh.com/wp-content/uploads/2013/01/gallery-in-post.gif" width="565" height="403" /></p>
<p style="text-align: left;">Finally, the finished gallery should look something like this&#8230;</p>

<a href='http://www.click-refresh.com/wp-content/uploads/2013/01/add-media.gif' rel='shadowbox[sbalbum-94];player=img;' title='Add Media to your page or post'><img width="150" height="150" src="http://www.click-refresh.com/wp-content/uploads/2013/01/add-media-150x150.gif" class="attachment-thumbnail" alt="Add Media to your page or post" /></a>
<a href='http://www.click-refresh.com/wp-content/uploads/2013/01/select-files.gif' rel='shadowbox[sbalbum-94];player=img;' title='select-files'><img width="150" height="150" src="http://www.click-refresh.com/wp-content/uploads/2013/01/select-files-150x150.gif" class="attachment-thumbnail" alt="select-files" /></a>
<a href='http://www.click-refresh.com/wp-content/uploads/2013/01/check-images.gif' rel='shadowbox[sbalbum-94];player=img;' title='select images for gallery'><img width="150" height="150" src="http://www.click-refresh.com/wp-content/uploads/2013/01/check-images-150x150.gif" class="attachment-thumbnail" alt="select images for gallery" /></a>
<a href='http://www.click-refresh.com/wp-content/uploads/2013/01/insert-gallery.gif' rel='shadowbox[sbalbum-94];player=img;' title='insert-gallery'><img width="150" height="150" src="http://www.click-refresh.com/wp-content/uploads/2013/01/insert-gallery-150x150.gif" class="attachment-thumbnail" alt="insert-gallery" /></a>
<a href='http://www.click-refresh.com/wp-content/uploads/2013/01/gallery-in-post.gif' rel='shadowbox[sbalbum-94];player=img;' title='gallery in post editor'><img width="150" height="150" src="http://www.click-refresh.com/wp-content/uploads/2013/01/gallery-in-post-150x150.gif" class="attachment-thumbnail" alt="gallery in post editor" /></a>

<h3 style="text-align: left;">Something I noticed&#8230;</h3>
<p style="text-align: left;">In the finished gallery when viewing from the webpage, If you click to an individual image you have to click the back button on the browser to get back to the gallery to click on the next image.  I&#8217;m a little surprised they did not add LightBox functionality to the gallery. If you&#8217;d like a more robust gallery I would suggest the <a title="NextGEN Gallery" href="http://wordpress.org/extend/plugins/nextgen-gallery/" target="_blank">NextGEN Gallery Plugin</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.click-refresh.com/five-steps-to-creating-a-wordpress-photo-gallery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Look and New Blog</title>
		<link>http://www.click-refresh.com/new-look-and-new-blog/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=new-look-and-new-blog</link>
		<comments>http://www.click-refresh.com/new-look-and-new-blog/#comments</comments>
		<pubDate>Mon, 14 Jan 2013 20:45:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Announcements]]></category>

		<guid isPermaLink="false">http://www.click-refresh.com/?p=77</guid>
		<description><![CDATA[I launched the Click Refresh website about a year and half ago and finally decided that the look and feel needed a little tweaking.  I added some navigational icons, updated the logo a bit, and modified the header section of the website. Hope you like it! I also decided it was time to add the [...]]]></description>
				<content:encoded><![CDATA[<p></p><p>I launched the Click Refresh website about a year and half ago and finally decided that the look and feel needed a little tweaking.  I added some navigational icons, updated the logo a bit, and modified the header section of the website. Hope you like it!<span id="more-77"></span></p>
<p>I also decided it was time to add the blog function into the website.  The blog will post announcements about upgrades, new tools available, tutorials and more.  Be sure to subscribe to our <a href="http://www.click-refresh.com/feed/">RSS Feed</a> to keep up to date. .</p>
<p>Here is a before and after of the website for a side by side comparison. I used the new <a title="Five Steps to Creating a WordPress Photo Gallery" href="http://www.click-refresh.com/five-steps-to-creating-a-wordpress-photo-gallery/">WordPress Photo Gallery</a> function built into WordPress 3.5.</p>

<a href='http://www.click-refresh.com/wp-content/uploads/2013/01/before.gif' rel='shadowbox[sbalbum-77];player=img;' title='Before'><img width="150" height="150" src="http://www.click-refresh.com/wp-content/uploads/2013/01/before-150x150.gif" class="attachment-thumbnail" alt="Before" /></a>
<a href='http://www.click-refresh.com/wp-content/uploads/2013/01/after.gif' rel='shadowbox[sbalbum-77];player=img;' title='After'><img width="150" height="150" src="http://www.click-refresh.com/wp-content/uploads/2013/01/after-150x150.gif" class="attachment-thumbnail" alt="After" /></a>

]]></content:encoded>
			<wfw:commentRss>http://www.click-refresh.com/new-look-and-new-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
