<?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>Lecciones Prácticas &#187; addthis</title>
	<atom:link href="http://www.leccionespracticas.com/tag/addthis/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.leccionespracticas.com</link>
	<description>informática y bibliotecas 2.0</description>
	<lastBuildDate>Mon, 06 Feb 2012 13:36:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Drupal: how to add a &#8220;share in facebook&#8221; link without IE8 crashing</title>
		<link>http://www.leccionespracticas.com/informatica-web/drupal-how-to-add-a-share-in-facebook-link-without-ie8-crashing/</link>
		<comments>http://www.leccionespracticas.com/informatica-web/drupal-how-to-add-a-share-in-facebook-link-without-ie8-crashing/#comments</comments>
		<pubDate>Sat, 16 Jan 2010 13:35:13 +0000</pubDate>
		<dc:creator>Miguel</dc:creator>
				<category><![CDATA[Drupal]]></category>
		<category><![CDATA[Informática - web]]></category>
		<category><![CDATA[addthis]]></category>
		<category><![CDATA[button]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[FB.Load]]></category>
		<category><![CDATA[FB.Share]]></category>
		<category><![CDATA[icon]]></category>
		<category><![CDATA[share]]></category>

		<guid isPermaLink="false">http://www.leccionespracticas.com/?p=1054</guid>
		<description><![CDATA[I am developing a Drupal website and my client wants a &#8220;Share in facebook&#8221; button to appear in his news. Well, first time I thought about using addthis but I did not want to depend on addthis. Then I tried to use the facebook share tool, which they claim to be something simple to use, [...]
Related posts:<ol>
<li><a href='http://www.leccionespracticas.com/informatica-web/wordpress/al-compartir-posts-en-facebook-no-salen-las-imagenes-thumbnails-solucionado/' rel='bookmark' title='Al compartir posts en facebook no salen las imagenes (thumbnails) [SOLUCIONADO]'>Al compartir posts en facebook no salen las imagenes (thumbnails) [SOLUCIONADO]</a></li>
<li><a href='http://www.leccionespracticas.com/informatica-web/anadir-boton-de-facebook-dinamico-para-la-pagina-actual-solucionado/' rel='bookmark' title='Añadir botón de facebook dinámico (para la página actual) [SOLUCIONADO]'>Añadir botón de facebook dinámico (para la página actual) [SOLUCIONADO]</a></li>
<li><a href='http://www.leccionespracticas.com/informatica-web/empty-div-takes-up-space-in-ie8-solved/' rel='bookmark' title='Empty DIV takes up space in IE8 [SOLVED]'>Empty DIV takes up space in IE8 [SOLVED]</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>I am developing a Drupal website and my client wants a &#8220;Share in facebook&#8221; button to appear in his news.</p>
<p>Well, first time I thought about <a href="http://www.leccionespracticas.com/?s=addthis&#038;search=">using addthis</a> but I did not want to depend on addthis.</p>
<p>Then I tried to use the <a href="http://www.facebook.com/facebook-widgets/share.php">facebook share tool</a>, which they claim to be something simple to use, just these lines:</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;a name=&quot;fb_share&quot; type=&quot;button&quot; href=&quot;http://www.facebook.com/sharer.php&quot;&gt;Share&lt;/a&gt;&lt;script src=&quot;http://static.ak.fbcdn.net/connect.php/js/FB.Share&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;</pre></div></div>

<p>But then, when using Internet Explorer 8, the page was not rendering ok, and this message was shown:<br />
<code><br />
FB.loader is null or not an object.</p>
<p>http://static.ak.fbcdn.net/connect.php/js/FB.Share</p>
<p>FB.Share                                               line:15<br />
Code:0                                                 Char:1<br />
</code></p>
<p>And <a href="https://addons.mozilla.org/es-ES/firefox/addon/1843">Firebug</a> tells me:<br />
<code><br />
FB.Loader is undefined<br />
        FB.Share()FB.Share (line 15)<br />
        [Break on this error] FB.Loader.onScriptLoaded(["FB.Share","FB.SharePro"]);<br />
</code></p>
<p>The solution to this problem seems to be easy, as explained in <a href="http://jacklucky.posterous.com/how-to-solve-facebook-fbloader-problem">this post</a>, it is supposed to work fine by just adding a call to &#8220;FB.Loader&#8221; function:<br />
<code><br />
<script src="http://static.ak.fbcdn.net/connect.php/js/FB.Loader" type="text/javascript"></script><br />
<script src="http://static.ak.fbcdn.net/connect.php/js/FB.Share" type="text/javascript"></script><br />
</code></p>
<p>But in my case it still did not work properly, so I decided to use another code to genereate a &#8220;Facebook share&#8221; button:</p>
<p>I edited my <code>node-story.tpl.php</code>, deleted the following lines:</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;a name=&quot;fb_share&quot; type=&quot;box_count&quot; share_url=&quot;&lt;?php echo url(&quot;node/&quot;.$node-&gt;nid,array(&quot;absolute&quot;=&gt;true)); ?&gt;&quot; href=&quot;http://www.facebook.com/sharer.php?t=&lt;?php echo $node-&gt;title; ?&gt;&quot;&gt;Compartir&lt;/a&gt;&lt;script src=&quot;http://static.ak.fbcdn.net/connect.php/js/FB.Loader&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;&lt;script src=&quot;http://static.ak.fbcdn.net/connect.php/js/FB.Share&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;</pre></div></div>

<p>And added these ones:</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;script&gt;
                   function fbs_click(){
                         u=location.href;
                         t=document.title;
                         window.open('http://www.facebook.com/sharer.php?u='+encodeURIComponent(u)+'&amp;t='+encodeURIComponent(t),'sharer','toolbar=0,status=0,width=626,height=436');
                         return false;
                   }
                &lt;/script&gt;
                &lt;style&gt; 
                   html .fb_share_link { padding:2px 0 0 20px; height:16px; background:url(http://static.ak.facebook.com/images/share/facebook_share_icon.gif?6:26981) no-repeat top left; }
                &lt;/style&gt;
                &lt;a rel=&quot;nofollow&quot; href='http://www.facebook.com/share.php?u=&lt;?php echo url(&quot;node/&quot;.$node-&gt;nid,array(&quot;absolute&quot;=&gt;true)); ?&gt;' onclick=&quot;return fbs_click()&quot; target=&quot;_blank&quot; class=&quot;fb_share_link&quot;&gt;Compartir&lt;/a&gt;
&nbsp;
                &lt;br /&gt;</pre></div></div>

<p>Easy and no annoying problems <img src='http://www.leccionespracticas.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Related posts:<ol>
<li><a href='http://www.leccionespracticas.com/informatica-web/wordpress/al-compartir-posts-en-facebook-no-salen-las-imagenes-thumbnails-solucionado/' rel='bookmark' title='Al compartir posts en facebook no salen las imagenes (thumbnails) [SOLUCIONADO]'>Al compartir posts en facebook no salen las imagenes (thumbnails) [SOLUCIONADO]</a></li>
<li><a href='http://www.leccionespracticas.com/informatica-web/anadir-boton-de-facebook-dinamico-para-la-pagina-actual-solucionado/' rel='bookmark' title='Añadir botón de facebook dinámico (para la página actual) [SOLUCIONADO]'>Añadir botón de facebook dinámico (para la página actual) [SOLUCIONADO]</a></li>
<li><a href='http://www.leccionespracticas.com/informatica-web/empty-div-takes-up-space-in-ie8-solved/' rel='bookmark' title='Empty DIV takes up space in IE8 [SOLVED]'>Empty DIV takes up space in IE8 [SOLVED]</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.leccionespracticas.com/informatica-web/drupal-how-to-add-a-share-in-facebook-link-without-ie8-crashing/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>AddThis plugin for joomla 1.5</title>
		<link>http://www.leccionespracticas.com/informatica-web/joomla-informatica-web/addthis-plugin-for-joomla-1-5/</link>
		<comments>http://www.leccionespracticas.com/informatica-web/joomla-informatica-web/addthis-plugin-for-joomla-1-5/#comments</comments>
		<pubDate>Tue, 06 Oct 2009 07:40:17 +0000</pubDate>
		<dc:creator>Miguel</dc:creator>
				<category><![CDATA[Joomla]]></category>
		<category><![CDATA[addthis]]></category>
		<category><![CDATA[joomla]]></category>
		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://www.leccionespracticas.com/?p=850</guid>
		<description><![CDATA[I was searching for some plugin to insert addthis button in a project which uses joomla and I was able to find it in informalthinkers.com. Thanks a lot for this great plugin. Related posts: Aumentar el tráfico a tu sitio web: AddThis Joomla plugin and templating: how to know if you are in the frontpage [...]
Related posts:<ol>
<li><a href='http://www.leccionespracticas.com/informatica-web/wordpress/aumentar-el-trafico-a-tu-sitio-web-addthis/' rel='bookmark' title='Aumentar el tráfico a tu sitio web: AddThis'>Aumentar el tráfico a tu sitio web: AddThis</a></li>
<li><a href='http://www.leccionespracticas.com/informatica-web/joomla-plugin-and-templating-how-to-know-if-you-are-in-the-frontpage/' rel='bookmark' title='Joomla plugin and templating: how to know if you are in the frontpage'>Joomla plugin and templating: how to know if you are in the frontpage</a></li>
<li><a href='http://www.leccionespracticas.com/php/joomla-templating-know-where-you-are-full-article-view-or-article-listing-solved/' rel='bookmark' title='Joomla templating &#8211; know where you are (full article view or article-listing) [SOLVED]'>Joomla templating &#8211; know where you are (full article view or article-listing) [SOLVED]</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>I was searching for some plugin to insert <a href="http://www.addthis.com">addthis</a> button in a project which uses joomla and I was able to find it <a href="http://informalthinkers.com/joomla/addthis-plugin-for-joomla/">in informalthinkers.com</a>.</p>
<p>Thanks a lot for this great plugin.</p>
<p>Related posts:<ol>
<li><a href='http://www.leccionespracticas.com/informatica-web/wordpress/aumentar-el-trafico-a-tu-sitio-web-addthis/' rel='bookmark' title='Aumentar el tráfico a tu sitio web: AddThis'>Aumentar el tráfico a tu sitio web: AddThis</a></li>
<li><a href='http://www.leccionespracticas.com/informatica-web/joomla-plugin-and-templating-how-to-know-if-you-are-in-the-frontpage/' rel='bookmark' title='Joomla plugin and templating: how to know if you are in the frontpage'>Joomla plugin and templating: how to know if you are in the frontpage</a></li>
<li><a href='http://www.leccionespracticas.com/php/joomla-templating-know-where-you-are-full-article-view-or-article-listing-solved/' rel='bookmark' title='Joomla templating &#8211; know where you are (full article view or article-listing) [SOLVED]'>Joomla templating &#8211; know where you are (full article view or article-listing) [SOLVED]</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.leccionespracticas.com/informatica-web/joomla-informatica-web/addthis-plugin-for-joomla-1-5/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Aumentar el tráfico a tu sitio web: AddThis</title>
		<link>http://www.leccionespracticas.com/informatica-web/wordpress/aumentar-el-trafico-a-tu-sitio-web-addthis/</link>
		<comments>http://www.leccionespracticas.com/informatica-web/wordpress/aumentar-el-trafico-a-tu-sitio-web-addthis/#comments</comments>
		<pubDate>Wed, 24 Jun 2009 10:37:46 +0000</pubDate>
		<dc:creator>Miguel</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[addthis]]></category>
		<category><![CDATA[aumentar trafico]]></category>
		<category><![CDATA[bookmark]]></category>
		<category><![CDATA[favoritos]]></category>
		<category><![CDATA[page rank]]></category>
		<category><![CDATA[SEF]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://www.leccionespracticas.com/?p=579</guid>
		<description><![CDATA[Muchos usuarios me preguntan cómo aumentar el tráfico a su sitio web. Para ello, además de tener una página bien construida (DTD&#8217;s validados), usar url&#8217;s SEF, etc, debemos realizar labores de promoción y fidelización del lector. (Te recomiendo la lectura de mi anterior artículo de mejora de posicionamiento) Una buen forma de promoción para tu [...]
Related posts:<ol>
<li><a href='http://www.leccionespracticas.com/informatica-web/joomla-informatica-web/addthis-plugin-for-joomla-1-5/' rel='bookmark' title='AddThis plugin for joomla 1.5'>AddThis plugin for joomla 1.5</a></li>
<li><a href='http://www.leccionespracticas.com/php/widget-para-wordpress-mostrar-los-twitts-favoritos-de-tu-cuenta-twitter/' rel='bookmark' title='Widget para wordpress: mostrar los twitts favoritos de tu cuenta twitter'>Widget para wordpress: mostrar los twitts favoritos de tu cuenta twitter</a></li>
<li><a href='http://www.leccionespracticas.com/informatica-web/joomla-informatica-web/personalizar-la-pagina-de-el-sitio-esta-desactivado-por-tareas-de-mantenimiento/' rel='bookmark' title='Personalizar la página de &#8220;El sitio está desactivado por tareas de mantenimiento&#8221;'>Personalizar la página de &#8220;El sitio está desactivado por tareas de mantenimiento&#8221;</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Muchos usuarios me preguntan cómo <b>aumentar el tráfico</b> a su sitio web. Para ello, además de tener una página bien construida (DTD&#8217;s validados), usar url&#8217;s SEF, etc, debemos realizar labores de promoción y fidelización del lector. (Te recomiendo la lectura de <a href="http://www.leccionespracticas.com/informatica-utilidades-internet/posicionamiento-en-google-ii/">mi anterior artículo de mejora de posicionamiento</a>)</p>
<p>Una buen forma de promoción para tu sitio web pasa por ofrecer a tus lectores la posibilidad de añadir tu página a favoritos, o compartir las noticias (digg, twitter, etc). Existe un servicio, llamado <a href="http://www.addthis.com">addthis.com</a>, que es idóneo para ello.</p>
<p>Cuando colocas el botón de AddThis en tu sitio web, automáticamente determina la URL de tu página. Cuando los visitantes hacen click en este botón, éste les lleva a una página que permite elegir qué servicio de favoritos prefieren utilizar. </p>
<p>Como veréis, utilizo el botón de AddThis a lo largo de toda mi página. Si ofreces contenidos interesantes, existe un enorme mercado de lectores que querrán añadirte a favoritos, y esto generará miles de enlaces a tu sitio web y aumentará de forma considerable tu ranking. </p>
<h3>Añadiendo este botón a tu blog WordPress</h3>
<p>Puedes añadir AddThis como plugin o como widget.</p>
<p>Como plugin: entra en la sección de plugins &#8211; Add new y busca <i>AddThis</i>. Instálalo y actívalo. Fácil, sencillo y para toda la familia <img src='http://www.leccionespracticas.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>Como widget: entra a AddThis y rellena el formulario para darte de alta. Éste te proporcionará un código fuente, que debes copiar (Control+V). Después accede al panel de administración de WordPress, más en concreto a la sección de Apariencia (Appearance) y pulsa sobre Widgets. Crea un nuevo Widget de texto e inserta el código AddThis, que debería ser algo asi:</p>
<p><code></p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;!-- AddThis Button BEGIN --&gt;
&lt;div&gt;&lt;a href=&quot;http://www.addthis.com/bookmark.php?v=250&quot; title=&quot;Bookmark and Share&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://s7.addthis.com/static/btn/lg-bookmark-en.gif&quot; width=&quot;125&quot; height=&quot;16&quot; alt=&quot;Bookmark and Share&quot; style=&quot;border:0&quot;/&gt;&lt;/a&gt;&lt;/div&gt;
&lt;!-- AddThis Button END --&gt;</pre></div></div>

<p></code></p>
<p>¿Te ha parecido interesante el artículo? Añádenos como favorito!<!-- AddThis Button BEGIN --></p>
<div><a href="http://www.addthis.com/bookmark.php?v=250" title="Bookmark and Share" target="_blank"><img src="http://s7.addthis.com/static/btn/lg-bookmark-en.gif" width="125" height="16" alt="Bookmark and Share" style="border:0"/></a></div>
<p><!-- AddThis Button END --></p>
<p>Related posts:<ol>
<li><a href='http://www.leccionespracticas.com/informatica-web/joomla-informatica-web/addthis-plugin-for-joomla-1-5/' rel='bookmark' title='AddThis plugin for joomla 1.5'>AddThis plugin for joomla 1.5</a></li>
<li><a href='http://www.leccionespracticas.com/php/widget-para-wordpress-mostrar-los-twitts-favoritos-de-tu-cuenta-twitter/' rel='bookmark' title='Widget para wordpress: mostrar los twitts favoritos de tu cuenta twitter'>Widget para wordpress: mostrar los twitts favoritos de tu cuenta twitter</a></li>
<li><a href='http://www.leccionespracticas.com/informatica-web/joomla-informatica-web/personalizar-la-pagina-de-el-sitio-esta-desactivado-por-tareas-de-mantenimiento/' rel='bookmark' title='Personalizar la página de &#8220;El sitio está desactivado por tareas de mantenimiento&#8221;'>Personalizar la página de &#8220;El sitio está desactivado por tareas de mantenimiento&#8221;</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.leccionespracticas.com/informatica-web/wordpress/aumentar-el-trafico-a-tu-sitio-web-addthis/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

