<?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>José Pardilla</title>
	
	<link>http://josepardilla.com</link>
	<description>Portfolio and Blog of José Pardilla</description>
	<lastBuildDate>Wed, 14 Dec 2011 08:55:53 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/JosePardilla" /><feedburner:info uri="josepardilla" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>JosePardilla</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>How to disable Jetpack modules</title>
		<link>http://feedproxy.google.com/~r/JosePardilla/~3/n_4LHAyN5Xk/</link>
		<comments>http://josepardilla.com/how-to-disable-jetpack-modules/#comments</comments>
		<pubDate>Wed, 14 Dec 2011 08:55:53 +0000</pubDate>
		<dc:creator>José Pardilla</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[comments]]></category>
		<category><![CDATA[Jetpack]]></category>

		<guid isPermaLink="false">http://josepardilla.com/?p=168</guid>
		<description><![CDATA[Recently Jetpack version 1.2.1 added a subscription module that shows two checkboxes at the bottom of the comments form in your blog&#8217;s posts and pages. Today i wanted to get ...]]></description>
			<content:encoded><![CDATA[<p>Recently Jetpack version 1.2.1 added a subscription module that shows two checkboxes at the bottom of the comments form in your blog&#8217;s posts and pages. Today i wanted to get rid of that because as many others i already use a plugin for thisin many of my sites, so I tried to find a way to disable this subscription module looking at my WordPress panel comment settings.</p>
<p>Some of the modules do have several options and have a setting page from themselves as the Sharing module, and some are integrated in normal settings pages like the Gravatar hovercard module. With the Subscription module neither of these is the case and for a moment i thought there actually was no way to disable it, so i started googling about it and didn&#8217;t find much help at first, but eventually found this fortunate comment with the answer.</p>
<blockquote><p>You can deactivate specific Jetpack “modules” by clicking the “Learn More” button for that module then the “Deactivate” button that magically appears. Hard to find, we know.</p>
<p><cite>— <a title="Boost your self-hosted WordPress with Jetpack (comment)" href="http://en.blog.wordpress.com/2011/03/09/jetpack-boost/#comment-120817">mdawaffe</a></cite></p></blockquote>
<p>Said and done, as soon as I <em>revealed</em> and then clicked on the elusive Deactivate button, the checkboxes on the comments form went away.</p>
<p>This post was written with the hope to help anyone out there who is also wondering how to disable these modules.</p>
]]></content:encoded>
			<wfw:commentRss>http://josepardilla.com/how-to-disable-jetpack-modules/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		<feedburner:origLink>http://josepardilla.com/how-to-disable-jetpack-modules/</feedburner:origLink></item>
		<item>
		<title>Customize the WordPress 3.1 Admin Bar</title>
		<link>http://feedproxy.google.com/~r/JosePardilla/~3/OzvY-szjywA/</link>
		<comments>http://josepardilla.com/customizing-the-wordpress-3-1-admin-bar/#comments</comments>
		<pubDate>Sat, 26 Feb 2011 21:21:25 +0000</pubDate>
		<dc:creator>José Pardilla</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Admin Bar]]></category>
		<category><![CDATA[WordPress 3.1]]></category>

		<guid isPermaLink="false">http://josepardilla.com/?p=133</guid>
		<description><![CDATA[If you have been searching on Google you&#8217;ll know there&#8217;s a lot of blogs explaining how to remove the new Admin Bar that WordPress 3.1 displays on the blog&#8217;s frontend. ...]]></description>
			<content:encoded><![CDATA[<p>If you have been searching on Google you&#8217;ll know there&#8217;s a lot of blogs explaining <a href="http://yoast.com/disable-wp-admin-bar/">how to remove the new Admin Bar</a> that WordPress 3.1 displays on the blog&#8217;s frontend. But what if what we want to do is customize it and only remove part of it, or add new links? Well, luckily WordPress provides us with some hooks to edit the Admin Bar in any way we want.</p>
<h3>Adding menu &amp; sub-menu items</h3>
<p>Let&#8217;s say we want to add a new sub menu item for our theme&#8217;s custom Options Page. Most premium themes have one of these, and it might be handy to have a link to it&#8230;</p>
<pre class="brush: php; title: ; notranslate">function my_wp_admin_bar_theme_options() {
 global $wp_admin_bar;

 $wp_admin_bar-&gt;add_menu( array(
  'parent' =&gt; 'appearance',
  'id' =&gt; 'zillaframework',
  'title' =&gt; 'Classica Options',
  'href' =&gt; admin_url('themes.php?page=zillaframework')
 ) );
}
add_action( 'admin_bar_menu', 'my_wp_admin_bar_theme_options', 61 );</pre>
<p>Here we have a simple hook that adds our new &#8220;Theme Options&#8221; link at the end of the Appearance menu. In the array of options we define the parent menu, an ID for our link, the title that will show in the link and it&#8217;s href value.  In the last line we hook our function to the <code>admin_bar_menu</code> action. The last number determines the position of our menu, but since we are already adding it to the Appearance sub-menu, this will not affect its position.</p>
<p>However it&#8217;s important not to use one of the numbers WordPress already uses, or our hook will be completely ignored. The magic numbers we can&#8217;t use are 10, 20, 30, 40, 50,60, 70 &amp; 80. They correspond to the following default items:</p>
<ul>
<li><strong>Account Menu</strong> (<code>wp_admin_bar_my_account_menu</code>): 10</li>
<li> <strong>My Sites Menu</strong> (<code>wp_admin_bar_my_sites_menu</code>): 20</li>
<li><strong>Edit Link</strong> (<code>wp_admin_bar_edit_menu</code>): 30</li>
<li><strong>New Content Menu</strong> (<code>wp_admin_bar_new_content_menu</code>): 40</li>
<li><strong>Comments Link</strong> (<code>wp_admin_bar_comments_menu</code>): 50</li>
<li><strong>Appearance Menu</strong> (<code>wp_admin_bar_appearance_menu</code>): 60</li>
<li><strong>Updates Link</strong> (<code>wp_admin_bar_updates_menu</code>): 70</li>
<li><strong>Shortlink</strong> (<code>wp_admin_bar_shortlink_menu</code>): 80</li>
</ul>
<p>As you can see only multiples of ten are used by WordPress. This makes it easy for us to add links exactly where we want. For example, if we want to <strong>add a link</strong> after the content Edit link, we can use a number from 31 to 39, like this:</p>
<pre class="brush: php; title: ; notranslate">function my_wp_admin_bar_google() {
 global $wp_admin_bar;

 $wp_admin_bar-&gt;add_menu( array(
  'id' =&gt; 'google',
  'title' =&gt; 'Google',
  'href' =&gt; 'http://www.google.com/'
 ) );
}
add_action( 'admin_bar_menu', 'my_wp_admin_bar_google', 35 );</pre>
<h3>Removing default items</h3>
<p>Finally if we want to simply remove some of the current links or menus, we will use the <code>remove_action()</code> function (see list above for the names of each item), like this:</p>
<pre class="brush: php; title: ; notranslate">function remove_admin_bar_menus() {
 remove_action( 'admin_bar_menu', 'wp_admin_bar_my_account_menu' );
}
add_action( 'wp_footer', 'remove_admin_bar_menus' );</pre>
<p>Notice that we are putting the remove_action inside a <code>wp_footer</code> hook so that it is loaded last, and not overwritten by WordPress core stuff.</p>
]]></content:encoded>
			<wfw:commentRss>http://josepardilla.com/customizing-the-wordpress-3-1-admin-bar/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		<feedburner:origLink>http://josepardilla.com/customizing-the-wordpress-3-1-admin-bar/</feedburner:origLink></item>
		<item>
		<title>New Freebie: Fire Text Style</title>
		<link>http://feedproxy.google.com/~r/JosePardilla/~3/gu0pMrWXCw8/</link>
		<comments>http://josepardilla.com/new-freebie-fire-text-style/#comments</comments>
		<pubDate>Fri, 18 Feb 2011 09:24:56 +0000</pubDate>
		<dc:creator>José Pardilla</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Fire]]></category>
		<category><![CDATA[Text Styles]]></category>

		<guid isPermaLink="false">http://josepardilla.com/?p=121</guid>
		<description><![CDATA[A new freebie is available that includes to text styles designed to make headings look like fire.]]></description>
			<content:encoded><![CDATA[<p>A new freebie is available that includes two text styles designed to make headings look like fire.</p>
<p>Don&#8217;t miss it!</p>
<p style="text-align: center;"><a href="http://josepardilla.com/freebies/firetext/"><img class="size-medium wp-image-118  aligncenter" title="Fire Text Style" src="http://josepardilla.com/wp/wp-content/uploads/2011/01/firetext700-250x111.jpg" alt="" width="250" height="111" /></a></p>
<p style="text-align: center;"><a href="http://josepardilla.com/freebies/firetext/"></a></p>
]]></content:encoded>
			<wfw:commentRss>http://josepardilla.com/new-freebie-fire-text-style/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://josepardilla.com/new-freebie-fire-text-style/</feedburner:origLink></item>
		<item>
		<title>Moskis Gems Social Pack #1 Released</title>
		<link>http://feedproxy.google.com/~r/JosePardilla/~3/zEMxNhelIdc/</link>
		<comments>http://josepardilla.com/moskis-gems-social-pack-1-released/#comments</comments>
		<pubDate>Wed, 16 Feb 2011 14:43:30 +0000</pubDate>
		<dc:creator>José Pardilla</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Icons]]></category>
		<category><![CDATA[Moskis Social Gems]]></category>

		<guid isPermaLink="false">http://josepardilla.com/?p=109</guid>
		<description><![CDATA[My first Social Icon Pack has been released.]]></description>
			<content:encoded><![CDATA[<p>My first Social Icon Pack has been released. You can <a href="http://josepardilla.com/freebies/moskis-gems-social-pack-1/">grab it</a> from the <a href="http://josepardilla.com/freebies/">Freebies section</a>.</p>
<p>Also, i&#8217;m glad to say that i have planned some <strong>exciting freebies</strong> for the following days,<strong> including PSD and CSS3 stuff</strong>, so don&#8217;t forget to check back regularly or even better, <a href="http://josepardilla.com/feed">subscribe via RSS</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://josepardilla.com/moskis-gems-social-pack-1-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://josepardilla.com/moskis-gems-social-pack-1-released/</feedburner:origLink></item>
		<item>
		<title>Opening</title>
		<link>http://feedproxy.google.com/~r/JosePardilla/~3/8bnK9ll3cBc/</link>
		<comments>http://josepardilla.com/hello-world/#comments</comments>
		<pubDate>Tue, 25 Jan 2011 12:52:03 +0000</pubDate>
		<dc:creator>José Pardilla</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Freebies]]></category>
		<category><![CDATA[José Pardilla]]></category>
		<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://josepardilla.com/wp/?p=1</guid>
		<description><![CDATA[Today is the day I open my new website. Until now i had a simpler little website that showed my basic contact information and some social links, but i needed ...]]></description>
			<content:encoded><![CDATA[<p>Today is the day I open my new website.</p>
<p>Until now i had a simpler little website that showed my basic contact information and some social links, but i needed something bigger to show my <a href="http://josepardilla.com/portfolio">Portfolio</a> which i will be updating with more work as soon as possible.</p>
<p>But the portfolio is not the only section i needed to add. There&#8217;s a lot of stuff i do either to practice or for fun that could be used by others, so to make use of that, and thank my visitors, I have decided to create a section called <a href="http://josepardilla.com/freebies">Freebies</a> which will include many <strong>PSD and HTML resources</strong>, as well as <strong>WordPress plugins</strong>.</p>
<p>There&#8217;s already a few items in the Portfolio and Freebies sections so be sure to take a look, and if you like them, don&#8217;t forget to <a href="http://josepardilla.com/feed">subscribe</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://josepardilla.com/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://josepardilla.com/hello-world/</feedburner:origLink></item>
	</channel>
</rss><!-- Dynamic page generated in 0.783 seconds. --><!-- Cached page generated by WP-Super-Cache on 2012-04-11 02:29:42 --><!-- Compression = gzip -->

