<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: How to Create Custom Social Bookmark Links Widget in Thesis Theme</title>
	<atom:link href="http://fourblogger.com/how-to-create-custom-social-bookmark-links-widget-in-thesis-theme/feed/" rel="self" type="application/rss+xml" />
	<link>http://fourblogger.com/how-to-create-custom-social-bookmark-links-widget-in-thesis-theme/</link>
	<description>Thesis Theme Customization Tutorials and Wordpress Blogging Video Tutorials</description>
	<lastBuildDate>Fri, 11 May 2012 04:38:35 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: manu3l9816</title>
		<link>http://fourblogger.com/how-to-create-custom-social-bookmark-links-widget-in-thesis-theme/comment-page-1/#comment-6312</link>
		<dc:creator>manu3l9816</dc:creator>
		<pubDate>Sat, 04 Sep 2010 23:20:12 +0000</pubDate>
		<guid isPermaLink="false">http://fourblogger.com/?p=1363#comment-6312</guid>
		<description>Is there any way to hide certain icon if the field is empty? for example if i don&#039;t put my twitter username i don&#039;t want to display the twitter icon.

I hope you can help me with this.</description>
		<content:encoded><![CDATA[<p>Is there any way to hide certain icon if the field is empty? for example if i don&#8217;t put my twitter username i don&#8217;t want to display the twitter icon.</p>
<p>I hope you can help me with this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nina</title>
		<link>http://fourblogger.com/how-to-create-custom-social-bookmark-links-widget-in-thesis-theme/comment-page-1/#comment-5498</link>
		<dc:creator>nina</dc:creator>
		<pubDate>Wed, 26 May 2010 01:17:52 +0000</pubDate>
		<guid isPermaLink="false">http://fourblogger.com/?p=1363#comment-5498</guid>
		<description>Hi,

I can only get text links on the sidebar - not the icons. Is there something I am missing?</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I can only get text links on the sidebar &#8211; not the icons. Is there something I am missing?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: UAmin</title>
		<link>http://fourblogger.com/how-to-create-custom-social-bookmark-links-widget-in-thesis-theme/comment-page-1/#comment-5442</link>
		<dc:creator>UAmin</dc:creator>
		<pubDate>Sat, 22 May 2010 16:26:42 +0000</pubDate>
		<guid isPermaLink="false">http://fourblogger.com/?p=1363#comment-5442</guid>
		<description>excellent work and most helpful of all I&#039;ve found so far for thesis. 

I am running thesis 1.7 and used/ modified the above code for social networking links in my sidebar. the links works fine in firefox but does not apprear in IE or any other browser..

my code is as below:
/*create social bookmark widget***********/

class my_subscribe_widget extends WP_Widget {
function my_subscribe_widget() {
$widget_ops = array(&#039;classname&#039; =&gt; &#039;widget_bu_subscribe&#039;, &#039;description&#039; =&gt; &#039;Add an RSS and twitter link&#039; );
$this-&gt;WP_Widget(&#039;my_subscribe_widget&#039;, &#039;Social Bookmark Links&#039;, $widget_ops);
}

function widget($args, $instance) {
extract($args, EXTR_SKIP);
echo $before_widget;
$title = empty($instance[&#039;title&#039;]) ? &#039;&#160;&#039; : apply_filters(&#039;widget_title&#039;, $instance[&#039;title&#039;]);
$rss_link = empty($instance[&#039;rss_link&#039;]) ? &#039;&#160;&#039; : apply_filters(&#039;widget_rss_link&#039;, $instance[&#039;rss_link&#039;]);
$twitter_link = empty($instance[&#039;twitter_link&#039;]) ? &#039;&#160;&#039; : apply_filters(&#039;widget_twitter_link&#039;, $instance[&#039;twitter_link&#039;]);
$youtube_link = empty($instance[&#039;youtube_link&#039;]) ? &#039;&#160;&#039; : apply_filters(&#039;widget_youtube_link&#039;, $instance[&#039;youtube_link&#039;]);
$facebook_link = empty($instance[&#039;facebook_link&#039;]) ? &#039;&#160;&#039; : apply_filters(&#039;widget_facebook_link&#039;, $instance[&#039;facebook_link&#039;]);
$linkedin_link = empty($instance[&#039;linkedin_link&#039;]) ? &#039;&#160;&#039; : apply_filters(&#039;widget_linkedin_link&#039;, $instance[&#039;linkedin_link&#039;]);

if ( !empty( $title ) ) { echo $before_title . $title . $after_title; }; ?&gt;
&lt;a title=&quot;&quot; href=&quot;&quot; &lt;/a&gt;&lt;a title=&quot;&quot; href=&quot;&quot; &lt;/a&gt;&lt;a title=&quot;&quot; href=&quot;http://www.twitter.com/&quot; &lt;/a&gt;&lt;a title=&quot;&quot; href=&quot;&quot; &lt;/a&gt;&lt;a title=&quot;&quot; href=&quot;&quot; &lt;/a&gt;

 &#039;&#039;, &#039;rss_link&#039; =&gt; $rss_default, &#039;twitter_link&#039; =&gt; &#039;&#039;,&#039;youtube_link&#039; =&gt; &#039;&#039;,&#039;facebook_link&#039; =&gt; &#039;&#039;) );
$title = strip_tags($instance[&#039;title&#039;]);
$rss_link = strip_tags($instance[&#039;rss_link&#039;]);
$twitter_link = strip_tags($instance[&#039;twitter_link&#039;]);
$youtube_link = strip_tags($instance[&#039;youtube_link&#039;]);
$facebook_link = strip_tags($instance[&#039;facebook_link&#039;]);
$linkedin_link = strip_tags($instance[&#039;linkedin_link&#039;]);

?&gt;
&lt;label for=&quot;get_field_id(&#039;title&#039;); ?&gt;&quot;&gt;Title: &lt;input id=&quot;get_field_id(&#039;title&#039;); ?&gt;&quot; name=&quot;get_field_name(&#039;title&#039;); ?&gt;&quot; type=&quot;text&quot; value=&quot;&quot; /&gt;
&lt;label for=&quot;get_field_id(&#039;rss_link&#039;); ?&gt;&quot;&gt;RSS Feed Link: &lt;input id=&quot;get_field_id(&#039;rss_link&#039;); ?&gt;&quot; name=&quot;get_field_name(&#039;rss_link&#039;); ?&gt;&quot; type=&quot;text&quot; value=&quot;&quot; /&gt;
&lt;label for=&quot;get_field_id(&#039;twitter_link&#039;); ?&gt;&quot;&gt;Twitter Username: &lt;input id=&quot;get_field_id(&#039;twitter_link&#039;); ?&gt;&quot; name=&quot;get_field_name(&#039;twitter_link&#039;); ?&gt;&quot; type=&quot;text&quot; value=&quot;&quot; /&gt;
&lt;label for=&quot;get_field_id(&#039;youtube_link&#039;); ?&gt;&quot;&gt;Youtube Link: &lt;input id=&quot;get_field_id(&#039;youtube_link&#039;); ?&gt;&quot; name=&quot;get_field_name(&#039;youtube_link&#039;); ?&gt;&quot; type=&quot;text&quot; value=&quot;&quot; /&gt;
&lt;label for=&quot;get_field_id(&#039;facebook_link&#039;); ?&gt;&quot;&gt;Facebook Link: &lt;input id=&quot;get_field_id(&#039;facebook_link&#039;); ?&gt;&quot; name=&quot;get_field_name(&#039;facebook_link&#039;); ?&gt;&quot; type=&quot;text&quot; value=&quot;&quot; /&gt;
&lt;label for=&quot;get_field_id(&#039;linkedin_link&#039;); ?&gt;&quot;&gt;Linkedin Link: &lt;input id=&quot;get_field_id(&#039;linkedin_link&#039;); ?&gt;&quot; name=&quot;get_field_name(&#039;linkedin_link&#039;); ?&gt;&quot; type=&quot;text&quot; value=&quot;&quot; /&gt;
&lt;?php
}
}

register_widget(&#039;my_subscribe_widget&#039;);

could you help pls??</description>
		<content:encoded><![CDATA[<p>excellent work and most helpful of all I&#8217;ve found so far for thesis. </p>
<p>I am running thesis 1.7 and used/ modified the above code for social networking links in my sidebar. the links works fine in firefox but does not apprear in IE or any other browser..</p>
<p>my code is as below:<br />
/*create social bookmark widget***********/</p>
<p>class my_subscribe_widget extends WP_Widget {<br />
function my_subscribe_widget() {<br />
$widget_ops = array(&#8216;classname&#8217; =&gt; &#8216;widget_bu_subscribe&#8217;, &#8216;description&#8217; =&gt; &#8216;Add an RSS and twitter link&#8217; );<br />
$this-&gt;WP_Widget(&#8216;my_subscribe_widget&#8217;, &#8216;Social Bookmark Links&#8217;, $widget_ops);<br />
}</p>
<p>function widget($args, $instance) {<br />
extract($args, EXTR_SKIP);<br />
echo $before_widget;<br />
$title = empty($instance['title']) ? &#8216;&nbsp;&#8217; : apply_filters(&#8216;widget_title&#8217;, $instance['title']);<br />
$rss_link = empty($instance['rss_link']) ? &#8216;&nbsp;&#8217; : apply_filters(&#8216;widget_rss_link&#8217;, $instance['rss_link']);<br />
$twitter_link = empty($instance['twitter_link']) ? &#8216;&nbsp;&#8217; : apply_filters(&#8216;widget_twitter_link&#8217;, $instance['twitter_link']);<br />
$youtube_link = empty($instance['youtube_link']) ? &#8216;&nbsp;&#8217; : apply_filters(&#8216;widget_youtube_link&#8217;, $instance['youtube_link']);<br />
$facebook_link = empty($instance['facebook_link']) ? &#8216;&nbsp;&#8217; : apply_filters(&#8216;widget_facebook_link&#8217;, $instance['facebook_link']);<br />
$linkedin_link = empty($instance['linkedin_link']) ? &#8216;&nbsp;&#8217; : apply_filters(&#8216;widget_linkedin_link&#8217;, $instance['linkedin_link']);</p>
<p>if ( !empty( $title ) ) { echo $before_title . $title . $after_title; }; ?&gt;<br />
&lt;a title=&quot;&quot; href=&quot;&#8221; &lt;a title=&quot;&quot; href=&quot;&#8221; &lt;a title=&quot;&quot; href=&quot;<a href="http://www.twitter.com/" rel="nofollow">http://www.twitter.com/</a>&#8221; &lt;a title=&quot;&quot; href=&quot;&#8221; &lt;a title=&quot;&quot; href=&quot;&#8221; </p>
<p> &#8221;, &#8216;rss_link&#8217; =&gt; $rss_default, &#8216;twitter_link&#8217; =&gt; &#8221;,&#8217;youtube_link&#8217; =&gt; &#8221;,&#8217;facebook_link&#8217; =&gt; &#8221;) );<br />
$title = strip_tags($instance['title']);<br />
$rss_link = strip_tags($instance['rss_link']);<br />
$twitter_link = strip_tags($instance['twitter_link']);<br />
$youtube_link = strip_tags($instance['youtube_link']);<br />
$facebook_link = strip_tags($instance['facebook_link']);<br />
$linkedin_link = strip_tags($instance['linkedin_link']);</p>
<p>?&gt;<br />
&lt;label for=&quot;get_field_id(&#8216;title&#8217;); ?&gt;&#8221;&gt;Title: &lt;input id=&quot;get_field_id(&#8216;title&#8217;); ?&gt;&#8221; name=&#8221;get_field_name(&#8216;title&#8217;); ?&gt;&#8221; type=&#8221;text&#8221; value=&#8221;" /&gt;<br />
&lt;label for=&quot;get_field_id(&#8216;rss_link&#8217;); ?&gt;&#8221;&gt;RSS Feed Link: &lt;input id=&quot;get_field_id(&#8216;rss_link&#8217;); ?&gt;&#8221; name=&#8221;get_field_name(&#8216;rss_link&#8217;); ?&gt;&#8221; type=&#8221;text&#8221; value=&#8221;" /&gt;<br />
&lt;label for=&quot;get_field_id(&#8216;twitter_link&#8217;); ?&gt;&#8221;&gt;Twitter Username: &lt;input id=&quot;get_field_id(&#8216;twitter_link&#8217;); ?&gt;&#8221; name=&#8221;get_field_name(&#8216;twitter_link&#8217;); ?&gt;&#8221; type=&#8221;text&#8221; value=&#8221;" /&gt;<br />
&lt;label for=&quot;get_field_id(&#8216;youtube_link&#8217;); ?&gt;&#8221;&gt;Youtube Link: &lt;input id=&quot;get_field_id(&#8216;youtube_link&#8217;); ?&gt;&#8221; name=&#8221;get_field_name(&#8216;youtube_link&#8217;); ?&gt;&#8221; type=&#8221;text&#8221; value=&#8221;" /&gt;<br />
&lt;label for=&quot;get_field_id(&#8216;facebook_link&#8217;); ?&gt;&#8221;&gt;Facebook Link: &lt;input id=&quot;get_field_id(&#8216;facebook_link&#8217;); ?&gt;&#8221; name=&#8221;get_field_name(&#8216;facebook_link&#8217;); ?&gt;&#8221; type=&#8221;text&#8221; value=&#8221;" /&gt;<br />
&lt;label for=&quot;get_field_id(&#8216;linkedin_link&#8217;); ?&gt;&#8221;&gt;Linkedin Link: &lt;input id=&quot;get_field_id(&#8216;linkedin_link&#8217;); ?&gt;&#8221; name=&#8221;get_field_name(&#8216;linkedin_link&#8217;); ?&gt;&#8221; type=&#8221;text&#8221; value=&#8221;" /&gt;<br />
&lt;?php<br />
}<br />
}</p>
<p>register_widget(&#039;my_subscribe_widget&#039;);</p>
<p>could you help pls??</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pascal</title>
		<link>http://fourblogger.com/how-to-create-custom-social-bookmark-links-widget-in-thesis-theme/comment-page-1/#comment-2303</link>
		<dc:creator>Pascal</dc:creator>
		<pubDate>Wed, 17 Feb 2010 08:53:37 +0000</pubDate>
		<guid isPermaLink="false">http://fourblogger.com/?p=1363#comment-2303</guid>
		<description>ya its looking nice.</description>
		<content:encoded><![CDATA[<p>ya its looking nice.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tony M</title>
		<link>http://fourblogger.com/how-to-create-custom-social-bookmark-links-widget-in-thesis-theme/comment-page-1/#comment-2295</link>
		<dc:creator>Tony M</dc:creator>
		<pubDate>Wed, 17 Feb 2010 04:38:44 +0000</pubDate>
		<guid isPermaLink="false">http://fourblogger.com/?p=1363#comment-2295</guid>
		<description>Im designing a new client blog and am really debating on whether to use this widget idea, or use the image map like I did on my own blog.  The image map works really well and looks nice, Im torn :)</description>
		<content:encoded><![CDATA[<p>Im designing a new client blog and am really debating on whether to use this widget idea, or use the image map like I did on my own blog.  The image map works really well and looks nice, Im torn <img src='http://fourblogger.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pascal</title>
		<link>http://fourblogger.com/how-to-create-custom-social-bookmark-links-widget-in-thesis-theme/comment-page-1/#comment-2146</link>
		<dc:creator>Pascal</dc:creator>
		<pubDate>Sat, 13 Feb 2010 17:33:19 +0000</pubDate>
		<guid isPermaLink="false">http://fourblogger.com/?p=1363#comment-2146</guid>
		<description>First you have to give your site name, then only we can rectify that error.</description>
		<content:encoded><![CDATA[<p>First you have to give your site name, then only we can rectify that error.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris</title>
		<link>http://fourblogger.com/how-to-create-custom-social-bookmark-links-widget-in-thesis-theme/comment-page-1/#comment-2136</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Sat, 13 Feb 2010 10:06:00 +0000</pubDate>
		<guid isPermaLink="false">http://fourblogger.com/?p=1363#comment-2136</guid>
		<description>Hi
Just added the social bookmarks code to my Thesis theme and everyting works fine except for the Twitter link!  When you click on it in the sidebar you get page error as it seems to be adding the words &quot;twitter@&quot; to the link as you can see from the link below-
http://twitter.com/twitter@gapinsureinfo
Should just be http://twitter.com/gapinsureinfo

Wondered if you can help!

Bye the way, love th site here as your customization for Thesis is great!

Thanks

Chris</description>
		<content:encoded><![CDATA[<p>Hi<br />
Just added the social bookmarks code to my Thesis theme and everyting works fine except for the Twitter link!  When you click on it in the sidebar you get page error as it seems to be adding the words &#8220;twitter@&#8221; to the link as you can see from the link below-<br />
<a href="http://twitter.com/twitter@gapinsureinfo" rel="nofollow">http://twitter.com/twitter@gapinsureinfo</a><br />
Should just be <a href="http://twitter.com/gapinsureinfo" rel="nofollow">http://twitter.com/gapinsureinfo</a></p>
<p>Wondered if you can help!</p>
<p>Bye the way, love th site here as your customization for Thesis is great!</p>
<p>Thanks</p>
<p>Chris</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: aaslin</title>
		<link>http://fourblogger.com/how-to-create-custom-social-bookmark-links-widget-in-thesis-theme/comment-page-1/#comment-491</link>
		<dc:creator>aaslin</dc:creator>
		<pubDate>Mon, 11 Jan 2010 13:57:57 +0000</pubDate>
		<guid isPermaLink="false">http://fourblogger.com/?p=1363#comment-491</guid>
		<description>Thats fine pascal,I already know blogger to wordpress conversion with 301,im looking forward to create a tutorial</description>
		<content:encoded><![CDATA[<p>Thats fine pascal,I already know blogger to wordpress conversion with 301,im looking forward to create a tutorial</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pascal</title>
		<link>http://fourblogger.com/how-to-create-custom-social-bookmark-links-widget-in-thesis-theme/comment-page-1/#comment-484</link>
		<dc:creator>Pascal</dc:creator>
		<pubDate>Mon, 11 Jan 2010 13:01:03 +0000</pubDate>
		<guid isPermaLink="false">http://fourblogger.com/?p=1363#comment-484</guid>
		<description>Approved on gtalk.</description>
		<content:encoded><![CDATA[<p>Approved on gtalk.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced
Database Caching 6/26 queries in 0.014 seconds using disk: basic
Object Caching 954/968 objects using disk: basic

Served from: fourblogger.com @ 2012-05-14 06:25:44 -->
