<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Dabbled Studios</title>
	
	<link>http://www.dabbledstudios.com</link>
	<description>Web Design, Photography, Illustration - Atlanta, Ga</description>
	<lastBuildDate>Thu, 12 Jan 2012 21:22:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/DabbledStudios" /><feedburner:info uri="dabbledstudios" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>DabbledStudios</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>Using the WordPress Media library to store images to be used in multiple posts.</title>
		<link>http://feedproxy.google.com/~r/DabbledStudios/~3/LwUfX8kUbTM/using-the-wordpress-media-library-to-store-images-to-be-used-in-multiple-posts</link>
		<comments>http://www.dabbledstudios.com/using-the-wordpress-media-library-to-store-images-to-be-used-in-multiple-posts#comments</comments>
		<pubDate>Thu, 12 Jan 2012 21:22:24 +0000</pubDate>
		<dc:creator>Nancy</dc:creator>
				<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://www.dabbledstudios.com/?p=442</guid>
		<description><![CDATA[One of my new years resolutions is to start sharing more WordPress code tips here, so here&#8217;s one! I&#8217;m working on a &#8220;Customer Portal&#8221; for a landscaper client.  One of the features is using the wordpress Media Library to store photos of various plants, including care information which would be stored in the Description field of the image. This way, a collection of plants could be displayed in a single<a href="http://www.dabbledstudios.com/using-the-wordpress-media-library-to-store-images-to-be-used-in-multiple-posts"> [Read More]</a>]]></description>
			<content:encoded><![CDATA[<p>One of my new years resolutions is to start sharing more WordPress code tips here, so here&#8217;s one!</p>
<p>I&#8217;m working on a &#8220;Customer Portal&#8221; for a landscaper client.  One of the features is using the wordpress Media Library to store photos of various plants, including care information which would be stored in the Description field of the image.</p>
<p>This way, a collection of plants could be displayed in a single post for the customers review, and she can use the plants over an over again in different communications with customers.</p>
<p>There were a couple of things I had to do to make this workable for her, and I thought sharing here would help others!</p>
<p>For one thing, reusing the images multiple times means you can&#8217;t easily use the built in WordPress Gallery functionality, since the images are NOT attached to the posts (they are just Inserted it them).</p>
<p>We also wanted to display the description in the image caption.</p>
<p>Finally, this needed to be very easy for the client to do, and fast.</p>
<h2>Improve Usability of the Image Insert functionality in WordPress</h2>
<p>Since we are using images that may or may not be attached to the posts (some may be uploaded at the time the post is created, but others will be pulled from the media library) we can&#8217;t easily use the Gallery function.*  So for each image you have to insert the image you want, then open the dialog up again to insert the next one, and so forth.</p>
<p>Also, I find that if there is one thing that will screw up the formatting of a wordpress post it&#8217;s using the Caption in the Visual Editor, so I generally steer non-techie clients away from it.</p>
<p>But in this case, we did want to use the Caption, and I foresaw support calls in my future if we didn&#8217;t make it super easy for the client.</p>
<h3>Solution: <a  href="http://wordpress.org/extend/plugins/faster-image-insert/" target="_blank">Faster Image Insert plugin</a></h3>
<p>This plugin adds checkboxes next to the images on the the Upload/Insert image dialog.  So to insert multiple images at a time from the Media Library, just confirm the settings (size, caption, etc) for each of the photos, click the checkboxes of the ones you want inserted, and insert them all at once!</p>
<p>So much easier than inserting them all individually, and less prone to errors because the user clicked in the wrong place and inserted his next image into a caption!</p>
<p>*If you wanted to use the Gallery functionality, you would have to specify the # of the attachment each time using the<em> gallery include =</em> syntax, but that was ruled out as too complicated for the user.  We needed a way to let her just choose the images she wanted and insert them.</p>
<h2>How to add the description to the image caption (WordPress)</h2>
<p>The next problem to solve was showing the description in the caption area.  She didn&#8217;t want the user to have to click on the image to get to the Attachment page to see the image description.</p>
<p>This one I found by a little Googling, and it works like a charm.  <a  href="http://www.webcitizenmag.com/2010/06/12/add-description-field-to-images-in-wordpress/" target="_blank">Thanks Web Citizen Mag!</a></p>
<blockquote><p>Recently for a project, we needed to utilize the description field to dump in additional photo information, while the caption field was used to provide the regular text caption.</p>
<p>To get WordPress to display the description inside the post we had to override the the default image shortcode function WordPress used to generate the final HTML output for the images inside posts.  Then we needed to make some changes to our stylesheet and we were set.</p>
<p><a  href="http://www.webcitizenmag.com/2010/06/12/add-description-field-to-images-in-wordpress/" target="_blank">Go there to read the how-to!</a></p></blockquote>
<p>Basically go to the link above and copy the code provided to your functions.php file.  The example provided is excellent.</p>
<p>The only change I made to the code was that I wanted to show the description under the caption, instead of on top, so I made the following change to the return:</p>
<pre>return '&lt;div ' . $id . 'class="wp-caption ' . esc_attr($align) .</pre>
<pre> '" style="width: ' . (10 + (int) $width) . 'px"&gt;'</pre>
<pre>. do_shortcode( $content ).'&lt;div class="wp-caption-text"&gt;' .</pre>
<pre>$caption . '&lt;/div&gt;'. $description . '&lt;/div&gt;';</pre>
<p>So now I just added some formatting to the css for the Description info, and we are good to go!</p>
<p>Easy peasy.</p>
<h2>Final Product &#8211; Media Library (non-attached) Images displaying Descriptions within a WordPress post!</h2>
<p><a  href="http://www.dabbledstudios.com/wp-content/uploads/2012/01/images-with-descriptions.png" class="thickbox no_icon" rel="gallery-442" title="images-with-descriptions"><img class="aligncenter size-large wp-image-447" title="images-with-descriptions" src="http://www.dabbledstudios.com/wp-content/uploads/2012/01/images-with-descriptions-500x346.png" alt="" width="500" height="346" /></a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/DabbledStudios?a=LwUfX8kUbTM:FRieuXs6SZ0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/DabbledStudios?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DabbledStudios?a=LwUfX8kUbTM:FRieuXs6SZ0:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/DabbledStudios?i=LwUfX8kUbTM:FRieuXs6SZ0:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DabbledStudios?a=LwUfX8kUbTM:FRieuXs6SZ0:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/DabbledStudios?d=qj6IDK7rITs" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.dabbledstudios.com/using-the-wordpress-media-library-to-store-images-to-be-used-in-multiple-posts/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.dabbledstudios.com/using-the-wordpress-media-library-to-store-images-to-be-used-in-multiple-posts</feedburner:origLink></item>
		<item>
		<title>A new look for an Orchestra Association</title>
		<link>http://feedproxy.google.com/~r/DabbledStudios/~3/H3Qk211gVIk/a-new-look-for-an-orchestra-association</link>
		<comments>http://www.dabbledstudios.com/a-new-look-for-an-orchestra-association#comments</comments>
		<pubDate>Fri, 16 Sep 2011 13:50:40 +0000</pubDate>
		<dc:creator>Nancy</dc:creator>
				<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://www.dabbledstudios.com/?p=433</guid>
		<description><![CDATA[The Lassiter High School Orchestra is one of the top high school orchestra&#8217;s in the country.  LHSOA.org needed to be able to keep the website updated with news, photos, videos, and other timely information, as well as collect payments, supply needed forms and documents, and allow for donations.  Their new website is bold and easy to use, with an updated logo.]]></description>
			<content:encoded><![CDATA[<p>The Lassiter High School Orchestra is one of the top high school orchestra&#8217;s in the country.  <a  href="http://lhsoa.org" target="_blank">LHSOA.org</a> needed to be able to keep the website updated with news, photos, videos, and other timely information, as well as collect payments, supply needed forms and documents, and allow for donations.  Their new website is bold and easy to use, with an updated logo.</p>
<p><a  href="http://www.dabbledstudios.com/wp-content/uploads/2011/09/lassiterorchestra-website.png" class="thickbox no_icon" rel="gallery-433" title="lassiterorchestra-website"><img class="aligncenter size-large wp-image-434" title="lassiterorchestra-website" src="http://www.dabbledstudios.com/wp-content/uploads/2011/09/lassiterorchestra-website-500x417.png" alt="" width="500" height="417" /></a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/DabbledStudios?a=H3Qk211gVIk:F0UUWVsbHyY:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/DabbledStudios?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DabbledStudios?a=H3Qk211gVIk:F0UUWVsbHyY:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/DabbledStudios?i=H3Qk211gVIk:F0UUWVsbHyY:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DabbledStudios?a=H3Qk211gVIk:F0UUWVsbHyY:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/DabbledStudios?d=qj6IDK7rITs" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.dabbledstudios.com/a-new-look-for-an-orchestra-association/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.dabbledstudios.com/a-new-look-for-an-orchestra-association</feedburner:origLink></item>
		<item>
		<title>Artist Portfolio Website</title>
		<link>http://feedproxy.google.com/~r/DabbledStudios/~3/KXaXNPgdv5w/artist-portfolio-website</link>
		<comments>http://www.dabbledstudios.com/artist-portfolio-website#comments</comments>
		<pubDate>Fri, 16 Sep 2011 13:36:31 +0000</pubDate>
		<dc:creator>Nancy</dc:creator>
				<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://www.dabbledstudios.com/?p=431</guid>
		<description><![CDATA[Another recent project that I hadn&#8217;t gotten around to blogging about&#8230;  David Joel of One Eye Opens is a wonderful Seattle artist who needed a website that showcased his work professionally and flexibly.  His works are large scale pieces, so presenting them on the small scale of a website was challenging.  This portfolio site is simple to keep updated with new work, and allows him to announce upcoming shows and<a href="http://www.dabbledstudios.com/artist-portfolio-website"> [Read More]</a>]]></description>
			<content:encoded><![CDATA[<p>Another recent project that I hadn&#8217;t gotten around to blogging about&#8230;  David Joel of <a  href="http://oneeyeopens.com" target="_blank">One Eye Opens </a>is a wonderful Seattle artist who needed a website that showcased his work professionally and flexibly.  His works are large scale pieces, so presenting them on the small scale of a website was challenging.  This portfolio site is simple to keep updated with new work, and allows him to announce upcoming shows and connect with his fans easily.</p>
<p><a  href="http://www.dabbledstudios.com/wp-content/uploads/2009/08/oneeyeopens.jpg" class="thickbox no_icon" rel="gallery-431" title="OneEyeOpens - Art Portfolio Website for David Joel"><img class="aligncenter size-large wp-image-404" title="OneEyeOpens - Art Portfolio Website for David Joel" src="http://www.dabbledstudios.com/wp-content/uploads/2009/08/oneeyeopens-500x331.jpg" alt="OneEyeOpens - Art Portfolio Website for David Joel" width="500" height="331" /></a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/DabbledStudios?a=KXaXNPgdv5w:T3EY4PKQU6I:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/DabbledStudios?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DabbledStudios?a=KXaXNPgdv5w:T3EY4PKQU6I:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/DabbledStudios?i=KXaXNPgdv5w:T3EY4PKQU6I:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DabbledStudios?a=KXaXNPgdv5w:T3EY4PKQU6I:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/DabbledStudios?d=qj6IDK7rITs" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.dabbledstudios.com/artist-portfolio-website/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.dabbledstudios.com/artist-portfolio-website</feedburner:origLink></item>
		<item>
		<title>A fresh approach to an Architect website</title>
		<link>http://feedproxy.google.com/~r/DabbledStudios/~3/qjTJ2V9aLgE/a-fresh-approach-to-an-architect-website</link>
		<comments>http://www.dabbledstudios.com/a-fresh-approach-to-an-architect-website#comments</comments>
		<pubDate>Fri, 16 Sep 2011 13:24:19 +0000</pubDate>
		<dc:creator>Nancy</dc:creator>
				<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://www.dabbledstudios.com/?p=424</guid>
		<description><![CDATA[Just finished up a design for a local architect &#8211; TME Designs.  The architect wanted a design that reflected both an &#8216;eco/green&#8217; focus, as well as the fact that it is a woman owned business, but not too typically green or girly.  We used elements from her previous branding, but gave it an updated look, with better structure and functionality.  A quick case study, showing the before and after, is<a href="http://www.dabbledstudios.com/a-fresh-approach-to-an-architect-website"> [Read More]</a>]]></description>
			<content:encoded><![CDATA[<p>Just finished up a design for a local architect &#8211; <a  href="http://tmedesignsllc.com/" target="_blank">TME Designs</a>.  The architect wanted a design that reflected both an &#8216;eco/green&#8217; focus, as well as the fact that it is a woman owned business, but not too typically green or girly.  We used elements from her previous branding, but gave it an updated look, with better structure and functionality.  <a  href="http://www.dabbledstudios.com/wp-content/uploads/2011/09/CaseStudyTMEDESIGNS.pdf">A quick case study, showing the before and after, is here.</a><br />
<a  href="http://www.dabbledstudios.com/wp-content/uploads/2011/09/architech-website-design.png" class="thickbox no_icon" rel="gallery-424" title="architech-website-design"><img class="aligncenter size-large wp-image-425" title="architech-website-design" src="http://www.dabbledstudios.com/wp-content/uploads/2011/09/architech-website-design-500x395.png" alt="" width="500" height="395" /></a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/DabbledStudios?a=qjTJ2V9aLgE:jMCWxBjkoKo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/DabbledStudios?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DabbledStudios?a=qjTJ2V9aLgE:jMCWxBjkoKo:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/DabbledStudios?i=qjTJ2V9aLgE:jMCWxBjkoKo:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DabbledStudios?a=qjTJ2V9aLgE:jMCWxBjkoKo:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/DabbledStudios?d=qj6IDK7rITs" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.dabbledstudios.com/a-fresh-approach-to-an-architect-website/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.dabbledstudios.com/a-fresh-approach-to-an-architect-website</feedburner:origLink></item>
		<item>
		<title>Logo &amp; Branding: Harmony Refugee Services</title>
		<link>http://feedproxy.google.com/~r/DabbledStudios/~3/3zFbtiRg1lI/logo-branding-harmony-refugee-services</link>
		<comments>http://www.dabbledstudios.com/logo-branding-harmony-refugee-services#comments</comments>
		<pubDate>Wed, 10 Aug 2011 15:17:17 +0000</pubDate>
		<dc:creator>Nancy</dc:creator>
				<category><![CDATA[Logos/Illustrations]]></category>

		<guid isPermaLink="false">http://www.dabbledstudios.com/?p=413</guid>
		<description><![CDATA[A new name and a new logo for a Clarkston, Ga non-profit which provides mental health and other services to refugees from all over the world. &#160;]]></description>
			<content:encoded><![CDATA[<p><a  href="http://www.dabbledstudios.com/wp-content/uploads/2011/08/w-med900.jpg" class="thickbox no_icon" rel="gallery-413" title="Harmony Refugee Services Logo"><img class="alignnone size-large wp-image-415" title="Harmony Refugee Services Logo" src="http://www.dabbledstudios.com/wp-content/uploads/2011/08/w-med900-500x138.jpg" alt="Harmony Refugee Services Logo" width="500" height="138" /></a></p>
<p>A new name and a new logo for a Clarkston, Ga non-profit which provides mental health and other services to refugees from all over the world.</p>
<p>&nbsp;</p>
<p><a  href="http://www.dabbledstudios.com/wp-content/uploads/2011/08/sq-med.jpg" class="thickbox no_icon" rel="gallery-413" title="Harmony Refugee Services"><img class="alignnone size-medium wp-image-414" title="Harmony Refugee Services" src="http://www.dabbledstudios.com/wp-content/uploads/2011/08/sq-med-300x300.jpg" alt="Harmony Refugee Services" width="300" height="300" /></a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/DabbledStudios?a=3zFbtiRg1lI:6RV0SaUn3M0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/DabbledStudios?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DabbledStudios?a=3zFbtiRg1lI:6RV0SaUn3M0:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/DabbledStudios?i=3zFbtiRg1lI:6RV0SaUn3M0:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DabbledStudios?a=3zFbtiRg1lI:6RV0SaUn3M0:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/DabbledStudios?d=qj6IDK7rITs" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.dabbledstudios.com/logo-branding-harmony-refugee-services/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.dabbledstudios.com/logo-branding-harmony-refugee-services</feedburner:origLink></item>
		<item>
		<title>New Look for a Food Blog: “Talk of Tomatoes”</title>
		<link>http://feedproxy.google.com/~r/DabbledStudios/~3/cmXOZOpn9S8/new-look-for-a-food-blog-talk-of-tomatoes</link>
		<comments>http://www.dabbledstudios.com/new-look-for-a-food-blog-talk-of-tomatoes#comments</comments>
		<pubDate>Wed, 10 Aug 2011 15:08:21 +0000</pubDate>
		<dc:creator>Nancy</dc:creator>
				<category><![CDATA[Websites]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[food blog]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://www.dabbledstudios.com/?p=407</guid>
		<description><![CDATA[Talk of Tomatoes is a favorite blog of mine, so it was a lot of fun to help it&#8217;s proprietress, Janelle, create a new look for her site. &#160;]]></description>
			<content:encoded><![CDATA[<p><a  href="http://www.dabbledstudios.com/wp-content/uploads/2011/08/talkoftomatoessite.png" class="thickbox no_icon" rel="gallery-407" title="talkoftomatoessite"><img class="alignnone size-large wp-image-408" title="talkoftomatoessite" src="http://www.dabbledstudios.com/wp-content/uploads/2011/08/talkoftomatoessite-500x383.png" alt="" width="500" height="383" /></a></p>
<p><a  href="http://talkoftomatoes.com" target="_blank">Talk of Tomatoes</a> is a favorite blog of mine, so it was a lot of fun to help it&#8217;s proprietress, Janelle, create a new look for her site.</p>
<p>&nbsp;</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/DabbledStudios?a=cmXOZOpn9S8:Jrrb7eiJ9j0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/DabbledStudios?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DabbledStudios?a=cmXOZOpn9S8:Jrrb7eiJ9j0:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/DabbledStudios?i=cmXOZOpn9S8:Jrrb7eiJ9j0:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DabbledStudios?a=cmXOZOpn9S8:Jrrb7eiJ9j0:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/DabbledStudios?d=qj6IDK7rITs" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.dabbledstudios.com/new-look-for-a-food-blog-talk-of-tomatoes/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.dabbledstudios.com/new-look-for-a-food-blog-talk-of-tomatoes</feedburner:origLink></item>
		<item>
		<title>Playing Ground: New website, facebook, and twitter</title>
		<link>http://feedproxy.google.com/~r/DabbledStudios/~3/sKB4lySONgI/playing-ground-new-website-facebook-and-twitter</link>
		<comments>http://www.dabbledstudios.com/playing-ground-new-website-facebook-and-twitter#comments</comments>
		<pubDate>Mon, 13 Jun 2011 18:52:45 +0000</pubDate>
		<dc:creator>Nancy</dc:creator>
				<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://www.dabbledstudios.com/?p=394</guid>
		<description><![CDATA[We&#8217;ve just finished up phase 1 of our latest project &#8211; A website for Playing Ground &#8211; a website devoted to awakening your passion and aliveness through the art of play and sensual rejuvenation. They offer classes and workshops, and other opportunities to just &#8216;play&#8217;! This website includes multiple blogs, as well as extensive event registration functionality. We also created a fancy facebook landing page for them, and an attractive twitter<a href="http://www.dabbledstudios.com/playing-ground-new-website-facebook-and-twitter"> [Read More]</a>]]></description>
			<content:encoded><![CDATA[<p>We&#8217;ve just finished up phase 1 of our latest project &#8211; A website for <a  title="playing ground website link" href="http://Playingground.com" target="_blank">Playing Ground</a> &#8211; a website devoted to awakening your passion and aliveness through the art of play and sensual rejuvenation. They offer classes and workshops, and other opportunities to just &#8216;play&#8217;!</p>
<p><a  href="http://www.dabbledstudios.com/wp-content/uploads/2011/06/playingg.jpg" class="thickbox no_icon" rel="gallery-394" title="playingg"><img class="alignnone size-large wp-image-395" title="playingg" src="http://www.dabbledstudios.com/wp-content/uploads/2011/06/playingg-500x328.jpg" alt="" width="500" height="328" /></a></p>
<p>This website includes multiple blogs, as well as extensive event registration functionality.<br />
We also created a fancy facebook landing page for them, and an attractive twitter layout, matching the site branding, for social networking.</p>
<p><a  href="http://www.dabbledstudios.com/wp-content/uploads/2011/06/pgfb.jpg" class="thickbox no_icon" rel="gallery-394" title=""><img src="http://www.dabbledstudios.com/wp-content/uploads/2011/06/pgfb-500x342.jpg" alt="" title="pgfb" width="500" height="342" class="alignnone size-large wp-image-396" /></a></p>
<p><a  href="http://www.dabbledstudios.com/wp-content/uploads/2011/06/pgtwit.jpg" class="thickbox no_icon" rel="gallery-394" title=""><img src="http://www.dabbledstudios.com/wp-content/uploads/2011/06/pgtwit-500x256.jpg" alt="" title="pgtwit" width="500" height="256" class="alignnone size-large wp-image-397" /></a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/DabbledStudios?a=sKB4lySONgI:QKAJCim0S7U:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/DabbledStudios?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DabbledStudios?a=sKB4lySONgI:QKAJCim0S7U:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/DabbledStudios?i=sKB4lySONgI:QKAJCim0S7U:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DabbledStudios?a=sKB4lySONgI:QKAJCim0S7U:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/DabbledStudios?d=qj6IDK7rITs" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.dabbledstudios.com/playing-ground-new-website-facebook-and-twitter/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.dabbledstudios.com/playing-ground-new-website-facebook-and-twitter</feedburner:origLink></item>
		<item>
		<title>Email send stops working on a WordPress site: Troubleshooting</title>
		<link>http://feedproxy.google.com/~r/DabbledStudios/~3/zj_it3BLH5w/email-send-stops-working-on-a-wordpress-site-troubleshooting</link>
		<comments>http://www.dabbledstudios.com/email-send-stops-working-on-a-wordpress-site-troubleshooting#comments</comments>
		<pubDate>Fri, 20 May 2011 12:58:50 +0000</pubDate>
		<dc:creator>Nancy</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[contact form 7]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[event espresso]]></category>
		<category><![CDATA[php mail]]></category>
		<category><![CDATA[troubleshooting]]></category>

		<guid isPermaLink="false">http://www.dabbledstudios.com/?p=389</guid>
		<description><![CDATA[The other day we had an issue where emails just stopped working on one site.  Emails from Contact Form 7, Event Espresso, and even standard WordPress functionality like notification email for new user sign up. We finally got it fixed &#8211; turned out to be a problem on the host side &#8211; but I thought I&#8217;d share the troubleshooting we did, because it really helped to narrow down the possible<a href="http://www.dabbledstudios.com/email-send-stops-working-on-a-wordpress-site-troubleshooting"> [Read More]</a>]]></description>
			<content:encoded><![CDATA[<p>The other day we had an issue where emails just stopped working on one site.  Emails from Contact Form 7, Event Espresso, and even standard WordPress functionality like notification email for new user sign up.</p>
<p>We finally got it fixed &#8211; turned out to be a problem on the host side &#8211; but I thought I&#8217;d share the troubleshooting we did, because it really helped to narrow down the possible problem and save us some time.</p>
<p>The first thing to do in troubleshooting is to narrow down the possible causes of the problem.</p>
<p>First, is it happening throughout all mail functionality on the site?  If you aren&#8217;t receiving emails from, for example, Contact Form 7, is it a problem with your contact form, or is it ALL mail functionality on the site.   Try testing other mail functionality &#8211; like new user signup, comment notifications, etc.  In our case, it was first reported as a problem with our Event Confirmation emails in the Event Espresso plugin, but a quick test revealed that our contact form wasn&#8217;t working either.</p>
<p>Obviously, if you&#8217;ve just installed something, like a new plugin, that would be the first place to look.  Plugins can conflict with each other and cause problems.  Or, if you&#8217;ve just done an upgrade of WP.  But in this case, we hadn&#8217;t made any significant site changes in the previous few days.   And we checked to make sure the emails for the site were functional (eg you can send/receive emails at @yoursite.com email addresses, particularly your admin email) . <em> [As an aside, I did run across info that some servers (GoDaddy?) are picky about what your admin email is -- one thing to try when you're having problems is to set your admin email to something like info@yoursite.com, and set up that email address to forward to your yahoo or gmail type email address]</em> But in our case, our emails were functioning correctly, so that wasn&#8217;t the problem.</p>
<p>Most  WordPress mail funtionality uses php mail() as the way to send messages, so if you&#8217;re unable to receive emails sent from the site, a good test is to see if php mail is working on your server, outside of WordPress.   If you can&#8217;t get php mail to work outside of WordPress, you can pretty much rule out WordPress or any plugins as your problem, and go straight to technical support at your host with that info.</p>
<p>To test php mail is really simple, you don&#8217;t need to be able to code to do this, just know how to create a file, copy/paste, and ftp the file to your site.</p>
<p>1. Create a new file (use Notepad if you don&#8217;t have a better text editor) and call it emailtest.php.<br />
2. In the file, minimally you&#8217;ll need something like this (obviously replacing the email address below with YOUR email address):</p>
<pre>&lt;?php
if ( mail("<em>youractualemail@whatever.com</em>","test","test")){
echo "email sent";
}else{
 echo "email fail";
}
?&gt;</pre>
<p>If you want even more information it&#8217;s a good idea to add something like this, which will echo back the from and to, and also allows you to specify the &#8220;from&#8221; . (Again, replace the email and the from email with actual emails-a good  test is to use your personal email as the $email, and your site admin  email as the $fromemail)  :</p>
<pre>&lt;?php
$email = 'yourpersonalemail@mysitedomain.com';
$fromemail = 'youradminemail@mysitedomain.com';
$subject = $_POST['subject'];
$msg = 'This is a test';
$headers = "From: ".$fromemail;
if( !mail($email, $subject, $msg, $headers) ){
 echo "Problem sending email....";
 echo $email;
 echo $headers;

}else{
 echo "Email successfully sent";
 echo $email;
 echo $headers;
}
?&gt;</pre>
<p>For my test file, I actually included both of the above, plus the second test again with different emails that were not from my site&#8217;s domain&#8211;I changed the email to my gmail account, for example.</p>
<p>Save the file and place it on your server, in the same location as your wp-config.php  file for your site.</p>
<p>Then in your browser, go to http://whateveryoursite.com/emailtest.php</p>
<p>When you load the page, it will attempt to send your emails.  If it works, you should get success messages for all 3 tests, and receive 3 emails to the specified accounts.</p>
<p>If everything succeeds, then your problem is likely to be within WordPress, so return to troubleshooting there, looking for conflicting plugins and such.</p>
<p>If everything fails, or even more interestingly, parts of it fail, then you have more information to work with, and to take to your host&#8217;s support folks.</p>
<p>In our case, we had the bizarre situation where the simple case (no from specified) failed, and the only way the more complex test would pass was if we sent to an email address on our domain. This definitely looked like a host issue, so we passed our results on to support, including pointing them to the test file we&#8217;d created, and they fixed it very quickly (kudos Bluehost!).</p>
<p>But having this information up front helped to get us to the right people in support and avoided any pushback that it was something within our control that we had broken.</p>
<p><em>Source for the basis of this script: <a  href="http://wordpress.org/support/topic/sign-up-not-working-properly-on-my-site" target="_blank">http://wordpress.org/support/topic/sign-up-not-working-properly-on-my-site</a> and also support on the Bluehost forums</em></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/DabbledStudios?a=zj_it3BLH5w:eOkKnHBq5nY:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/DabbledStudios?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DabbledStudios?a=zj_it3BLH5w:eOkKnHBq5nY:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/DabbledStudios?i=zj_it3BLH5w:eOkKnHBq5nY:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DabbledStudios?a=zj_it3BLH5w:eOkKnHBq5nY:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/DabbledStudios?d=qj6IDK7rITs" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.dabbledstudios.com/email-send-stops-working-on-a-wordpress-site-troubleshooting/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.dabbledstudios.com/email-send-stops-working-on-a-wordpress-site-troubleshooting</feedburner:origLink></item>
		<item>
		<title>Search bar results different in Firefox 4</title>
		<link>http://feedproxy.google.com/~r/DabbledStudios/~3/4bLUBUW_0mQ/search-bar-results-different-in-firefox-4</link>
		<comments>http://www.dabbledstudios.com/search-bar-results-different-in-firefox-4#comments</comments>
		<pubDate>Fri, 13 May 2011 12:19:13 +0000</pubDate>
		<dc:creator>Nancy</dc:creator>
				<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://www.dabbledstudios.com/?p=385</guid>
		<description><![CDATA[I just upgraded to FF 4, and I noticed that I no longer get google results (or google &#8216;i feel lucky&#8217; results) when I type something in my address bar that isn&#8217;t a full web address.  Like I might type just sluggy and that would go straight to sluggy.com.  I basically use my address bar as an extra search bar, and have forever, so it&#8217;s a hard habit to break.<a href="http://www.dabbledstudios.com/search-bar-results-different-in-firefox-4"> [Read More]</a>]]></description>
			<content:encoded><![CDATA[<p>I just upgraded to FF 4, and I noticed that I no longer get google results (or google &#8216;i feel lucky&#8217; results) when I type something in my address bar that isn&#8217;t a full web address.  Like I might type just sluggy and that would go straight to sluggy.com.  I basically use my address bar as an extra search bar, and have forever, so it&#8217;s a hard habit to break.</p>
<p>But it&#8217;s an easy fix to get it back to that functionality.</p>
<p>Just type about:config in your address bar.</p>
<p>It will give you an &#8216;are you sure&#8217; warning.  Say you are sure.</p>
<p>Then find Keyword.URL, and double click on it.</p>
<p>Set it to <tt>http://www.google.com/search?ie=UTF-8&amp;oe=utf-8&amp;q= </tt></p>
<p>if you just want it to return google results.</p>
<p>Set it to</p>
<p><tt>http://www.google.com/search?btnI=I%27m+Feeling+Lucky&amp;ie=UTF-8&amp;oe=UTF-8&amp;q=</tt></p>
<p>if you want it to try to go to the most likely site.</p>
<p>More here: <a  href="http://kb.mozillazine.org/Keyword.URL" target="_blank">http://kb.mozillazine.org/Keyword.URL</a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/DabbledStudios?a=4bLUBUW_0mQ:AYrfqgGfKnM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/DabbledStudios?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DabbledStudios?a=4bLUBUW_0mQ:AYrfqgGfKnM:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/DabbledStudios?i=4bLUBUW_0mQ:AYrfqgGfKnM:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DabbledStudios?a=4bLUBUW_0mQ:AYrfqgGfKnM:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/DabbledStudios?d=qj6IDK7rITs" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.dabbledstudios.com/search-bar-results-different-in-firefox-4/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.dabbledstudios.com/search-bar-results-different-in-firefox-4</feedburner:origLink></item>
		<item>
		<title>Why don’t my blog photos show up on Facebook when someone Likes a post?</title>
		<link>http://feedproxy.google.com/~r/DabbledStudios/~3/NirCNcNfrtw/why-dont-my-blog-photos-show-up-on-facebook-when-someone-likes-a-post</link>
		<comments>http://www.dabbledstudios.com/why-dont-my-blog-photos-show-up-on-facebook-when-someone-likes-a-post#comments</comments>
		<pubDate>Thu, 12 May 2011 14:55:23 +0000</pubDate>
		<dc:creator>Nancy</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[Like Button]]></category>
		<category><![CDATA[open graph]]></category>

		<guid isPermaLink="false">http://www.dabbledstudios.com/?p=380</guid>
		<description><![CDATA[..and other amazing  facebook mysteries&#8230;. REVEALED! It&#8217;s amazing to me how often you&#8217;ll get a bad image when you try to link to a particular blog post or website page on facebook, even from major sites. I&#8217;ve been researching the ins and outs of this for the last few websites I worked on&#8211;both setting up the facebook Like button, and also testing what happens when a user links to a<a href="http://www.dabbledstudios.com/why-dont-my-blog-photos-show-up-on-facebook-when-someone-likes-a-post"> [Read More]</a>]]></description>
			<content:encoded><![CDATA[<p>..and other amazing  facebook mysteries&#8230;. REVEALED!</p>
<p>It&#8217;s amazing to me how often you&#8217;ll get a bad image when you try to link to a particular blog post or website page on facebook, even from major sites.</p>
<p>I&#8217;ve been researching the ins and outs of this for the last few websites I worked on&#8211;both setting up the facebook Like button, and also testing what happens when a user links to a page&#8211;, and so I thought I&#8217;d share some of my findings, in the hopes of helping others.  Please feel free to add to or correct anything, in the comments.</p>
<p>Facebook uses something called Open Graph protocol to get all the information to display.  And if there are multiple images to pull on a page, many times it will just pick the last one (which might be your twitter icon, or something else totally random)  Not the actual image you were wanting to display next to the link on facebook.  The same process happens when you are Linking to a page from facebook, or when you click a facebook Like button on the page.</p>
<p>To test what facebook will read off your page, you can paste the url for your overall site, or a specific webpage, here:  <a  href="https://developers.facebook.com/tools/linter" target="_blank">Facebook URL Linter</a>.  It&#8217;s a more reliable way to test your link than just by posting on your facebook, as facebook will cache things.</p>
<p>For more about this, with examples, see: <a  href="http://dabbled.org/2011/05/blogger-question-how-to-get-the-right-images-when-liking-on-facebook.html" target="_blank">How to get the right images when Liking on Facebook</a></p>
<h2>How to get the right image to show up when a page is linked or Liked in Facebook:</h2>
<p>There are a few different options, depending on what type of site you have, and your level of technical expertise.</p>
<h4>Simple Answer (specifically for WP bloggers):</h4>
<p>If you&#8217;re a WordPress blogger:</p>
<ul>
<li>Try this plugin:  <a  href="http://wordpress.org/extend/plugins/fetenweb-image-src-metatag/">FetenWeb image_src Metatag.</a><br />
I&#8217;ve used this one on a few sites, and it will pull the featured image (if you&#8217;re using that functionality) or the image attached to the post for facebook links.  You can also set a default image.  It&#8217;s simple, and seems to work quite well.</li>
</ul>
<p>If you have a basic wordpress blog, that may be all you need.</p>
<h4>Sort of Advanced answer &#8211; Setting Open Graph in your header:</h4>
<p>As I said before, facebook reads the Open Graph tags on a page.  If it can&#8217;t find them, it tries to figure them out from the other information on the page.  To test what facebook will read off your page, you can paste the url for your overall site, or a specific webpage, here:  <a  href="https://developers.facebook.com/tools/linter" target="_blank">Facebook URL Linter</a>.</p>
<p>So if what you see in the Linter is not what you want the user to see, you can set the<a  href="https://developers.facebook.com/docs/opengraph/"> Open Graph </a>tags by adding them to the head section of your website.</p>
<p>To start off, Facebook has a tool here (&#8220;<a  href="https://developers.facebook.com/docs/reference/plugins/like/">Step 2</a>&#8220;) that will generate basic OG tags for your site.  (if you&#8217;re logged on to facebook when you use it, it will pull in the right Admin ID for you).</p>
<p>You&#8217;ll need to paste your tags in the &lt;head&gt; section of your website.  (In WordPress, that would be in header.php, before the end of the head section (before the &lt;/head&gt; tag)</p>
<p>Note that you may not want to set all the open graph tags &#8211; you may want some of them to be generated based on the page content.<em><br />
</em></p>
<p>Note the difference between &#8220;article&#8221; and &#8220;website&#8221; for the<code> og:type</code> property.  For blogs you should use &#8216;article&#8217; not &#8216;website&#8217;.  From the Open Graph site: <em>Use <code>article</code> for any URL that represents transient content &#8211; such as a news article, blog post, photo, video, etc. Do not use <code>website</code> for this purpose. <code>website</code> and <code>blog</code> are designed to represent an entire site, an <code>og:type</code> tag with types <code>website</code> or <code>blog</code> should usually only appear on the root of a domain.</em></p>
<p>Since the big thing we are talking about here is images, if you want a standard image to appear on any page linked from your site, like your logo for example, you&#8217;ll need to set it in the image tags.  Create a jpg file of your image (a square image works best for facebook)<em>, </em>and (for simplicity&#8217;s sake) store it in the main directory for your site<em> (the www directory, generally)</em>.  {If you&#8217;re on WordPress, this would be the directory where your wp-admin and wp-content directories are located.}</p>
<p>Then we set the <strong>og:image</strong> tag to that file:</p>
<pre>&lt;meta property="og:image" content="http://<em>mysiteurl.com</em>/<em>mylogofile.jpg</em>" /&gt;</pre>
<p>There are more tags you can set<em> (list here: </em><a  href="https://developers.facebook.com/docs/opengraph/"> Open Graph</a>) too.</p>
<h4>Advanced Answer: using conditional tags</h4>
<p>So, for many sites you may want to have different open graph tags appear depending on what page you&#8217;re on.</p>
<p>Take for example a website which includes a home page, multiple content pages, and also an integrated blog.</p>
<p>For my home page, I may want to set the description, rather than have it generated based on the page content.  And on my content pages, I may want to show just my logo, or I might want facebook to pull an image from the page.  On blog pages, I probably want to show the image attached to a post.  So I need different rules:</p>
<p>Here is an example from company website, with integrated blogs, developed in WordPress.  I use something like this in conjunction with the Fetenweb plugin above to get the appropriate results.</p>
<p>The first section is for the home page, where I&#8217;m setting specific text I want to appear as the description.  The second part is for single (blog) pages, so if someone links to the article on facebook it pulls up the article specific information.  The third is pretty much like the first, it just doesn&#8217;t set the description (and if I removed the image tag, it wouldn&#8217;t set the image.)</p>
<pre>&lt;?php if ( is_home() || is_front_page() ) {
?&gt;
&lt;meta property="og:type" content="website" /&gt;
&lt;meta property="og:image" content="http://sample.com/logo.png" /&gt;
&lt;meta property="og:site_name" content="The Sample Company" /&gt;
&lt;meta property="fb:admins" content="123456789" /&gt;
&lt;meta property="og:description"
 content="Some clever content about what the entire website is about.
This will show up when someone clicks the like button on the main page."/&gt;

&lt;?php
} elseif ( is_single() )  {   
 ?&gt;   
&lt;meta property="og:type" content="article" /&gt;
&lt;meta property="fb:admins" content="123456789" /&gt;   
&lt;?php
} else {   
 ?&gt;   
&lt;meta property="og:type" content="website" /&gt;
&lt;meta property="og:image" content="http://sample.com/logo.png" /&gt;
&lt;meta property="og:site_name" content="The Sample Company" /&gt;
&lt;meta property="fb:admins" content="1223456789" /&gt;

&lt;?php
}
?&gt;</pre>
<p>You can see the effects:<br />
Here is my results for linking to the homepage: https://graph.facebook.com/?id=http://dabbledstudios.com/<br />
Here is my results for linking to a blog post: https://graph.facebook.com/?id=http://www.dabbledstudios.com/a-fun-and-retro-kids-salon-website</p>
<p>Hope this helps!</p>
<p>Nancy</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/DabbledStudios?a=NirCNcNfrtw:1eKBcnYK9bE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/DabbledStudios?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DabbledStudios?a=NirCNcNfrtw:1eKBcnYK9bE:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/DabbledStudios?i=NirCNcNfrtw:1eKBcnYK9bE:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/DabbledStudios?a=NirCNcNfrtw:1eKBcnYK9bE:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/DabbledStudios?d=qj6IDK7rITs" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.dabbledstudios.com/why-dont-my-blog-photos-show-up-on-facebook-when-someone-likes-a-post/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://www.dabbledstudios.com/why-dont-my-blog-photos-show-up-on-facebook-when-someone-likes-a-post</feedburner:origLink></item>
	</channel>
</rss>

