<?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>eventuAlo.net » blog &#187; Wordpress</title>
	<atom:link href="http://www.eventualo.net/blog/tag/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.eventualo.net/blog</link>
	<description>un blog vario ed eventualo</description>
	<lastBuildDate>Mon, 06 Feb 2012 19:26:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Aggiungere rapidamente un effetto thickbox alle immagini del blog</title>
		<link>http://www.eventualo.net/blog/2010/10/aggiungere-rapidamente-un-effetto-thickbox-alle-immagini-del-blog/</link>
		<comments>http://www.eventualo.net/blog/2010/10/aggiungere-rapidamente-un-effetto-thickbox-alle-immagini-del-blog/#comments</comments>
		<pubDate>Mon, 18 Oct 2010 16:42:20 +0000</pubDate>
		<dc:creator>alo</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[thickbox]]></category>

		<guid isPermaLink="false">http://www.eventualo.net/blog/?p=1005</guid>
		<description><![CDATA[L&#8217;installazione base di WordPress include già diverse librerie javascript per la realizzazione di effetti vari. Se vuoi attivare rapidamente l&#8217;effetto thickbox sulle immagini del tuo blog puoi precedere come spiego di seguito. Questo è un sistema molto semplice e spartano e serve solo per la presentazione delle immagini nel sito pubblico. Se invece desideri qualcosa [...]]]></description>
			<content:encoded><![CDATA[<p><img alt="Esempio di effetto thickbox" src="http://www.eventualo.net/gallery/2010_11_18_thickbox.png" title="Esempio di effetto thickbox" class="alignnone" width="445" height="216" /></p>
<p>L&#8217;installazione base di WordPress include già diverse librerie javascript per la realizzazione di effetti vari.<br />
Se vuoi attivare rapidamente l&#8217;effetto <a href="http://jquery.com/demo/thickbox/">thickbox</a> sulle immagini del tuo blog puoi precedere come spiego di seguito.<br />
<span id="more-1005"></span><br />
Questo è un sistema molto semplice e spartano e serve solo per la presentazione delle immagini nel sito pubblico. Se invece desideri qualcosa di più curato e versatile per la gestione delle gallerie ti consiglio di cercare un <a href="http://wordpress.org/extend/plugins/search.php?q=gallery">plugin</a> tra i tantissimi disponibili.<br />
Per questi appunti mi sono basato su questo <a href="http://www.openparenthesis.org/2010/09/10/jquery-thickbox-wordpress">tutorial su www.openparenthesis.org</a>.</p>
<p>Apri il file <strong>header.php</strong> del tuo tema: inserisci le seguenti righe <em>prima</em> della funzione <em>wp_head()</em>:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> 
wp_enqueue_style<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'thickbox'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">// inserting style sheet for Thickbox.</span>
wp_enqueue_script<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'jquery'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>  <span style="color: #666666; font-style: italic;">// including jquery.</span>
wp_enqueue_script<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'thickbox'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">// including Thickbox javascript.</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p>Poi, sempre nella cartella del tuo tema, apri il file <strong>footer.php</strong> e inserisci il seguente javascript dopo la funzione <em>wp_head()</em> (dovrebbe funzionare se inserita anche nel <strong>footer.php</strong>, prima del tag <em>&lt;/body&gt;</em>):</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
</pre></td><td class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>script type<span style="color: #339933;">=</span><span style="color: #3366CC;">'text/javascript'</span><span style="color: #339933;">&gt;</span>
	<span style="color: #003366; font-weight: bold;">var</span> $tk <span style="color: #339933;">=</span> jQuery.<span style="color: #660066;">noConflict</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
   	$tk<span style="color: #009900;">&#40;</span>document<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">ready</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
		<span style="color: #009966; font-style: italic;">/* Per le immagini delle gallery */</span>
		$tk<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;img.attachment-thumbnail&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">parent</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;a&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">addClass</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;thickbox&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		$tk<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;img.attachment-thumbnail&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">parent</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;a&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">attr</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'rel'</span><span style="color: #339933;">,</span><span style="color: #3366CC;">'gallery'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		<span style="color: #009966; font-style: italic;">/* Per le immagini inserite nel post */</span>
		$tk<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;.entry-content a img&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">parent</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;a[href*=&lt;?php echo $_SERVER['SERVER_NAME']?&gt;]&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">addClass</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;thickbox&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		$tk<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;.entry-content a img&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">parent</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;a[href*=&lt;?php echo $_SERVER['SERVER_NAME']?&gt;]&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">attr</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'rel'</span><span style="color: #339933;">,</span><span style="color: #3366CC;">'gallery'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #339933;">&lt;/</span>script<span style="color: #339933;">&gt;</span></pre></td></tr></table></div>

<p>Il codice è abbastanza auto-esplicativo, ma vediamo velocemente il significato delle diverse righe. La riga <strong>2</strong> richiama la modalità <em>noConflict</em> di jQuery per evitare eventuali problemi con altri plugin. Le righe <strong>5</strong> e <strong>6</strong> e le righe <strong>8</strong> e <strong>9</strong> creano dinamicamente gli attributi nei tag <em>&lt;a&gt;</em> necessari per il funzionamento del thickbox, rispettivamente nelle immagini delle gallerie e nelle immagini inserite direttamente del post. Nelle righe 8 e 9 poi è bene aggiungere una clausola sull&#8217;attributo <em>href</em> del collegamento: il thickbox si apre solo per le immagini che risiedono sul nostro sito, per gli altri indirizzi apre semplicemente l&#8217;url.</p>
<p>Oppure, se usi le immagini in evidenza dei post o altri plugin che includono nelle pagine d&#8217;archivio le thumbnail con link all&#8217;articolo, allora potresti aver la necessità di aprire una immagine in un thickbox solo se il link è diretto a una immagine (jpg o png) e non a un&#8217;altra pagina. Sostituisci le righe <strong>8</strong> e <strong>9</strong> con le seguenti:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>8
9
</pre></td><td class="code"><pre class="javascript" style="font-family:monospace;">		$tk<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;.entry-content a img&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">parent</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;a[href*=jpg]&quot;</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">&quot;a[href*=png]&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">addClass</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;thickbox&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		$tk<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;.entry-content a img&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">parent</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;a[href*=jpg]&quot;</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">&quot;a[href*=png]&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">attr</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'rel'</span><span style="color: #339933;">,</span><span style="color: #3366CC;">'gallery'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>Ricordati di modificare le due classi <strong>.attachment-thumbnail</strong> (righe 5-6) e <strong>.entry-content</strong> (righ 8-9) sulla base del codice sorgente del tuo tema. Ogni versione di WordPress e ogni tema potrebbero dare origine a classi diverse nella pubblicazione: guarda il codice sorgente della pagina del tuo blog per trovarle.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.eventualo.net/blog/2010/10/aggiungere-rapidamente-un-effetto-thickbox-alle-immagini-del-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Un plugin di WordPress contro la legge Bavaglio</title>
		<link>http://www.eventualo.net/blog/2010/08/un-plugin-di-wordpress-contro-la-legge-bavaglio/</link>
		<comments>http://www.eventualo.net/blog/2010/08/un-plugin-di-wordpress-contro-la-legge-bavaglio/#comments</comments>
		<pubDate>Tue, 03 Aug 2010 14:34:15 +0000</pubDate>
		<dc:creator>alo</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[legge bavaglio]]></category>
		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://www.eventualo.net/blog/?p=912</guid>
		<description><![CDATA[Ho appena pubblicato un mio plugin di WordPress contro la orribile legge Bavaglio. Le principali funzioni sono: mostrare un modulo laterale (widget) con la dichiarazione “questo blog è contro la legge bavaglio” e una serie di link a informazioni e petizioni; fornire al blogger uno strumento per una generazione “automatica” e una programmazione nel tempo [...]]]></description>
			<content:encoded><![CDATA[<p>Ho appena pubblicato un <a href="http://www.eventualo.net/blog/wordpress-plugin-against-gag-law/" title="Plugin per WordPress contro la Legge Bavaglio" >mio plugin di WordPress</a> contro la orribile <strong>legge Bavaglio</strong>.</p>
<p>Le principali funzioni sono:</p>
<ul>
<li>mostrare un modulo laterale (widget) con la dichiarazione “questo blog è contro la legge bavaglio” e una serie di link a informazioni e petizioni;</li>
<li>fornire al blogger uno strumento per una generazione “automatica” e una programmazione nel tempo delle rettifiche;</li>
<li>la possibilità per il visitatore del blog di nascondere tutte le rettifiche e avere una navigazione più agevole tra i soli articoli originali.</li>
</ul>
<p>Per saperne di più e soprattutto per scaricarlo e installarlo sul tuo blog vai alla <a href="http://www.eventualo.net/blog/wordpress-plugin-against-gag-law/" title="Plugin per WordPress contro la Legge Bavaglio" >pagina del plugin</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.eventualo.net/blog/2010/08/un-plugin-di-wordpress-contro-la-legge-bavaglio/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A hack to disable the qTranslate editor on EasyMail</title>
		<link>http://www.eventualo.net/blog/2010/07/a-hack-to-disable-the-qtranslate-editor-on-easymail/</link>
		<comments>http://www.eventualo.net/blog/2010/07/a-hack-to-disable-the-qtranslate-editor-on-easymail/#comments</comments>
		<pubDate>Fri, 16 Jul 2010 09:17:23 +0000</pubDate>
		<dc:creator>alo</dc:creator>
				<category><![CDATA[Alo EasyMail Newsletter]]></category>
		<category><![CDATA[easymail hack]]></category>
		<category><![CDATA[qtranslate]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.eventualo.net/blog/?p=813</guid>
		<description><![CDATA[If you use the great qTranslate plugin and EasyMail, you have a problem about the visual editor on EasyMail sending page (the editor uses to disappear!). A the moment, the quickest solution is to disable the qTranslate editor on EasyMail sending page: see this forum post. From v.1.8.4 EasyMail is compatible with qTranslate so you [...]]]></description>
			<content:encoded><![CDATA[<p><del datetime="2010-12-15T21:18:01+00:00">If you use the great <strong>qTranslate</strong> plugin and <strong>EasyMail</strong>, you have a problem about the visual editor on EasyMail sending page (the editor uses to disappear!).</p>
<p>A the moment, the quickest solution is to disable the qTranslate editor on EasyMail sending page: see <a href="http://www.eventualo.net/forum/topic/9#post-135">this forum post</a>.</del></p>
<p>From <strong>v.1.8.4</strong> EasyMail is <strong>compatible with qTranslate</strong> so you can use the friendly <strong>multilanguage editor</strong> when you send newsletters.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.eventualo.net/blog/2010/07/a-hack-to-disable-the-qtranslate-editor-on-easymail/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>EasyMail v.1.8 released</title>
		<link>http://www.eventualo.net/blog/2010/07/easymail-v-1-8-released/</link>
		<comments>http://www.eventualo.net/blog/2010/07/easymail-v-1-8-released/#comments</comments>
		<pubDate>Thu, 15 Jul 2010 15:20:18 +0000</pubDate>
		<dc:creator>alo</dc:creator>
				<category><![CDATA[Alo EasyMail Newsletter]]></category>
		<category><![CDATA[easymail update]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.eventualo.net/blog/?p=807</guid>
		<description><![CDATA[After a hard work&#8230; here you are the new version of EasyMail, my newsletter plugin for WordPress. You can download it from WordPress.org. Now I&#8217;m working on the online documentation about the new version. However read the online guide, the FAQ and the forum for more info. Before posting new topic in the forum please [...]]]></description>
			<content:encoded><![CDATA[<p>After a hard work&#8230; here you are the new version of <strong>EasyMail</strong>, my newsletter plugin for WordPress. You can download it from <a title="download v.1.8!" href="http://wordpress.org/extend/plugins/alo-easymail" target="_blank">WordPress.org</a>.</p>
<p>Now I&#8217;m working on the <a href="http://www.eventualo.net/blog/wp-alo-easymail-newsletter/">online documentation</a> about the new version. However read the online guide, the FAQ and the forum for more info. Before posting new topic in the forum please read all the available documentation and the previous topics. Thank you.</p>
<p>As usual, you can support my work: leaving a feedback on my blog or on WP.org plugin page, updating the translation of the plugin in your language, and of course making a donation.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.eventualo.net/blog/2010/07/easymail-v-1-8-released/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>New EasyMail version is coming soon&#8230;</title>
		<link>http://www.eventualo.net/blog/2010/07/new-easymail-version-is-coming-soon/</link>
		<comments>http://www.eventualo.net/blog/2010/07/new-easymail-version-is-coming-soon/#comments</comments>
		<pubDate>Mon, 12 Jul 2010 18:43:51 +0000</pubDate>
		<dc:creator>alo</dc:creator>
				<category><![CDATA[Alo EasyMail Newsletter]]></category>
		<category><![CDATA[easymail]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.eventualo.net/blog/?p=795</guid>
		<description><![CDATA[Sorry, I&#8217;m very busy, but in a very few days I&#8217;ll release it. Be patient&#8230; NEW FEATURES mailing lists subscription choice on registration form tracking system when subscribers open newsletter subscribers importation from existing members or from a csv file use capabilities and not user_level, so better permission managing MINOR CHANGES Added: an option to [...]]]></description>
			<content:encoded><![CDATA[<p>Sorry, I&#8217;m very busy, but in a very few days I&#8217;ll release it.<br />
Be patient&#8230;</p>
<p><em>NEW FEATURES</em></p>
<ul>
<li>mailing lists</li>
<li>subscription choice on registration form</li>
<li>tracking system when subscribers open newsletter</li>
<li>subscribers importation from existing members or from a csv file</li>
<li> use capabilities and not user_level, so better permission managing</li>
</ul>
<p><em>MINOR CHANGES</em></p>
<ul>
<li>Added: an option to show subscription page</li>
<li>Added: dashboard widget and favorite menu link</li>
<li>Updated: a better formatting in admin side</li>
<li>Fixed: now admin can modify subscription on user profile page</li>
<li>Fixed: now easymail page and its option are properly deleted on deactivation</li>
<li>Fixed: encode entities in newsletter header and subject</li>
<li>Fixed: removed a lot of php warnings and wp notice</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.eventualo.net/blog/2010/07/new-easymail-version-is-coming-soon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A hack to solve a bug and add a new feature</title>
		<link>http://www.eventualo.net/blog/2010/06/a-hack-to-solve-a-bug-and-add-a-new-feature/</link>
		<comments>http://www.eventualo.net/blog/2010/06/a-hack-to-solve-a-bug-and-add-a-new-feature/#comments</comments>
		<pubDate>Tue, 22 Jun 2010 22:09:05 +0000</pubDate>
		<dc:creator>alo</dc:creator>
				<category><![CDATA[Alo EasyMail Newsletter]]></category>
		<category><![CDATA[easymail hack]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.eventualo.net/blog/?p=782</guid>
		<description><![CDATA[I found a bug (thanks to thorwik): the admin cannot edit the users subscription in other users profile page. Then, I&#8217;m working on the new release and I&#8217;ve added the easymail opt in registration form. Now here you are a quick hack to fix the 1st bug and to add this new feature: go to [...]]]></description>
			<content:encoded><![CDATA[<p>I found a bug (thanks to thorwik): the admin cannot edit the users subscription in other users profile page.<br />
Then, I&#8217;m working on the new release and I&#8217;ve added the easymail opt in registration form.<br />
Now here you are a quick hack to fix the 1st bug and to add this new feature: go to the <a href="http://www.eventualo.net/forum/topic/24">forum post</a> for the code.<br />
<em>This hack is to v.1.7. The v.1.8 and later do not need it.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.eventualo.net/blog/2010/06/a-hack-to-solve-a-bug-and-add-a-new-feature/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>EasyMail successfully tested on WP 3.0!</title>
		<link>http://www.eventualo.net/blog/2010/06/easymail-successfully-tested-on-wp-3-0/</link>
		<comments>http://www.eventualo.net/blog/2010/06/easymail-successfully-tested-on-wp-3-0/#comments</comments>
		<pubDate>Thu, 17 Jun 2010 20:37:45 +0000</pubDate>
		<dc:creator>alo</dc:creator>
				<category><![CDATA[Alo EasyMail Newsletter]]></category>
		<category><![CDATA[easymail update]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.eventualo.net/blog/?p=777</guid>
		<description><![CDATA[Today I’ve tested EasyMail v.1.7 on WP 3.0 and the test has gone well again. The WP cron seems to work properly. To whom have problems with EasyMail on WP 2.9.2&#8230; go to upgrade to WP 3.0!]]></description>
			<content:encoded><![CDATA[<p>Today I’ve tested EasyMail v.1.7 on <strong>WP 3.0</strong> and the  test has gone well again. The WP cron seems to work properly.</p>
<p>To whom have problems with EasyMail on WP 2.9.2&#8230; go to upgrade to WP 3.0!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.eventualo.net/blog/2010/06/easymail-successfully-tested-on-wp-3-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>EasyMail successfully tested on WP 3.0 RC3</title>
		<link>http://www.eventualo.net/blog/2010/06/easymail-successfully-tested-on-wp-3-0-rc3/</link>
		<comments>http://www.eventualo.net/blog/2010/06/easymail-successfully-tested-on-wp-3-0-rc3/#comments</comments>
		<pubDate>Mon, 14 Jun 2010 12:36:20 +0000</pubDate>
		<dc:creator>alo</dc:creator>
				<category><![CDATA[Alo EasyMail Newsletter]]></category>
		<category><![CDATA[easymail]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.eventualo.net/blog/?p=739</guid>
		<description><![CDATA[Today I&#8217;ve tested EasyMail v.1.7 on WP 3.0 RC3 and the test has gone well. The WP cron seems to continue working well. In these days I&#8217;m working on next EasyMail version. I hope to release it soon (it depends on time left over my work commitments&#8230;.).]]></description>
			<content:encoded><![CDATA[<p>Today I&#8217;ve tested EasyMail v.1.7 on <strong>WP 3.0 RC3</strong> and the test has gone well. The WP cron seems to continue working well.</p>
<p>In these days I&#8217;m working on next EasyMail version. I hope to release it soon (it depends on time left over my work commitments&#8230;.).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.eventualo.net/blog/2010/06/easymail-successfully-tested-on-wp-3-0-rc3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ALO EasyMail v.1.5: Newsletter!</title>
		<link>http://www.eventualo.net/blog/2010/01/alo-easymail-v15-newsletter/</link>
		<comments>http://www.eventualo.net/blog/2010/01/alo-easymail-v15-newsletter/#comments</comments>
		<pubDate>Tue, 26 Jan 2010 18:28:53 +0000</pubDate>
		<dc:creator>alo</dc:creator>
				<category><![CDATA[Alo EasyMail Newsletter]]></category>
		<category><![CDATA[easymail]]></category>
		<category><![CDATA[newsletter]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.eventualo.net/blog/?p=480</guid>
		<description><![CDATA[Ho rilasciato la nuova versione del plugin per WordPress. Dalla versione 0.9.x sono passato direttamente alla numero 1.5, proprio per sottolineare l&#8217;importanza dell&#8217;upgrade. Ora può essere usato proficuamente per l&#8217;invio di newsletter dal momento che è fornito di un widget per l&#8217;iscrizione dei visitatori e di una pagina amministrativa per la gestione deigli iscritti. Vi [...]]]></description>
			<content:encoded><![CDATA[<p>Ho rilasciato la <strong>nuova versione</strong> del plugin per WordPress. Dalla versione 0.9.x sono passato direttamente alla numero 1.5, proprio per sottolineare l&#8217;importanza dell&#8217;upgrade. Ora può essere usato proficuamente per l&#8217;invio di newsletter dal momento che è fornito di un widget per l&#8217;iscrizione dei visitatori e di una pagina amministrativa per la gestione deigli iscritti.<br />
Vi rimando al <a href="http://www.eventualo.net/blog/?p=365" title="Alo EasyMail Newsletter: plugin per WordPress per inviare newsletter" >post del plugin</a> per i dettagli e per scaricarlo.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.eventualo.net/blog/2010/01/alo-easymail-v15-newsletter/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Alo ExportXls: plugin per WordPress per generare file XLS dal db</title>
		<link>http://www.eventualo.net/blog/2009/10/alo-exportxls-plugin-per-wordpress-per-generare-file-xls-dal-db/</link>
		<comments>http://www.eventualo.net/blog/2009/10/alo-exportxls-plugin-per-wordpress-per-generare-file-xls-dal-db/#comments</comments>
		<pubDate>Wed, 28 Oct 2009 19:56:44 +0000</pubDate>
		<dc:creator>alo</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[exportxls]]></category>
		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://www.eventualo.net/blog/?p=400</guid>
		<description><![CDATA[[english version] Pubblico un plugin per WordPress che serve per generare file XLS (MS Excel / OpenOffice Calc) a partire dal database del blog. Per maggiori informazioni vi rimando alla pagina sul sito Worpress.org. Attenzione! A causa di  altri impegni non ci sarà ulteriore sviluppo del plugin. Caratteristiche può scegliere quale tabella esportare (articoli, utenti, [...]]]></description>
			<content:encoded><![CDATA[<p><a title="Alo EasyMail: plugin per WordPress per inviare e-mail" href="http://www.eventualo.net/blog/?p=400#english">[english version]</a></p>
<p>Pubblico un plugin per WordPress che serve per generare file XLS (MS Excel / OpenOffice Calc) a partire dal database del blog.<br />
<span id="more-400"></span>Per maggiori informazioni vi rimando alla pagina sul sito Worpress.org.</p>
<p><em><strong><span style="color: #ff0000;">Attenzione! A causa di  altri impegni non ci sarà ulteriore sviluppo del plugin.</span><br />
</strong></em></p>
<p><strong>Caratteristiche</strong></p>
<ul>
<li>può scegliere quale tabella esportare (articoli, utenti, link, commenti)</li>
<li>nel caso di articoli e utenti può esportare anche i relativi meta</li>
</ul>
<p><strong>Screenshot</strong></p>
<p>» <a title="vedi" href="http://wordpress.org/extend/plugins/alo-exportxls/screenshots/" target="_blank">Schermata dell’amministrazione di ExportXls</a></p>
<p><strong>Download</strong></p>
<p>» <a title="scarica" href="http://wordpress.org/extend/plugins/alo-exportxls/" target="_blank">Scarica Alo ExportXls</a> (dal sito WordPress.org)</p>
<p><a name="english">-</a></p>
<p><span style="color: #333399;"><strong> </strong></span></p>
<p>This plugin for WordPress lets you to generate XLS files (MS Excel / OpenOffice Calc) from WP database&#8217;s tables. For more info please visit its page on WordPress.org.</p>
<p><span style="color: #ff0000;"><em><strong>Warning! Due to more relevant commitments this plugin will not be further developed.</strong></em></span></p>
<p><strong>Features</strong></p>
<ul>
<li>you can select the table to export (users, posts, comments, links)</li>
<li>&#8216;posts&#8217; and &#8216;users&#8217; choises can include meta data too</li>
</ul>
<p><strong>Screenshot</strong></p>
<p>» <a title="vedi" href="http://wordpress.org/extend/plugins/alo-exportxls/screenshots/" target="_blank">View of ExportXls&#8217;s administration</a></p>
<p><strong>Download</strong></p>
<p>» <a title="scarica" href="http://wordpress.org/extend/plugins/alo-exportxls/" target="_blank">Download Alo ExportXls</a> (from WordPress.org)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.eventualo.net/blog/2009/10/alo-exportxls-plugin-per-wordpress-per-generare-file-xls-dal-db/feed/</wfw:commentRss>
		<slash:comments>23</slash:comments>
		</item>
	</channel>
</rss>

