<?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>Anne Helmond &#187; plugins</title>
	<atom:link href="http://www.annehelmond.nl/tag/plugins/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.annehelmond.nl</link>
	<description>Anne Helmond. New Media Research Blog</description>
	<lastBuildDate>Thu, 12 Jan 2012 20:06: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>
	<atom:link rel='hub' href='http://www.annehelmond.nl/?pushpress=hub'/>
		<item>
		<title>Now Reading plugin, CSS and WordPress theme compatibility problems</title>
		<link>http://www.annehelmond.nl/2007/03/18/now-reading-plugin-css-and-wordpress-theme-compatibility-problems/</link>
		<comments>http://www.annehelmond.nl/2007/03/18/now-reading-plugin-css-and-wordpress-theme-compatibility-problems/#comments</comments>
		<pubDate>Sun, 18 Mar 2007 20:28:40 +0000</pubDate>
		<dc:creator>Anne</dc:creator>
				<category><![CDATA[MA Thesis]]></category>
		<category><![CDATA[cascading-style-sheets]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[compatibility]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[hierarchy]]></category>
		<category><![CDATA[now-reading-plugin]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[wordpress-themes]]></category>

		<guid isPermaLink="false">http://www.annehelmond.nl/2007/03/18/now-reading-plugin-css-and-wordpress-theme-compatibility-problems/</guid>
		<description><![CDATA[I installed the Now Reading plugin written by Rob Miller to display the books I am currently reading in my sidebar. The reason I chose this plugin is because it allows you to create a database of your books and offers reviewing possibilities. Installing and configuring the plugin was easy but after adding my first [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.annehelmond.nl/wordpress/wp-content/uploads/2007/03/nowreading_before1.png" title="Now Reading before" alt="Now Reading before" align="left" />I installed the <a href="http://robm.me.uk/projects/plugins/wordpress/now-reading"  title="Now Reading plugin" target="_blank">Now Reading plugin</a> written by Rob Miller to display the books I am currently reading in my sidebar. The reason I chose this plugin is because it allows you to create a database of your books and offers reviewing possibilities. Installing and configuring the plugin was easy but after adding my first book the layout of my sidebar was messed up (see picture on the left). The border of the box had disappeared and the design did not quite match the rest of the page. My first guess was that it had something to do with the hierarchy and inheritance aspect of style sheets because CSS determines how the plugin is displayed. Once the page is loaded the PHP code of the plugin is &#8220;executed&#8221; into HTML (more on this later) which is sided by the style sheet which rules the style/layout.</p>
<p>I took a look at the PHP code from sidebar.php located in the templates folder (now-reading/templates/sidebar.php) and noticed the following:</p>
<p><span id="more-202"></span></p>
<pre>
&lt;div class="now-reading"&gt;&lt;h3&gt;Planned books:&lt;/h3&gt;

?php if( have_books('status=unread') ) : ?&gt;

&lt;ul&gt;

&lt;?php while( have_books('status=unread') ) : the_book(); ?&gt;

&lt;li&gt;&lt;a href="&lt;?php book_permalink() ?&gt;"&gt;&lt;?php book_title() ?&gt;&lt;/a&gt; by &lt;?php book_author() ?&gt;&lt;/li&gt;</pre>
<p>The class element &#8220;now-reading&#8221; determines the style of the &lt;div&gt; in the stylesheet which I haven&#8217;t defined (yet). I could add it in my stylesheet and adjust the font size and style but it wouldn&#8217;t fix the missing box. The plugin isn&#8217;t compatible with my WordPress theme which requires a nested lists after the header in the sidebar. A standard object in my sidebar would look like this:</p>
<pre>
&lt;<span class="start-tag">div</span><span class="attribute-name"> id</span>=<span class="attribute-value">"sidebar"</span>&gt;</pre>
<pre>&lt;<span class="start-tag">h2</span>&gt;Recent Comments&lt;/<span class="end-tag">h2</span>&gt;

&lt;<span class="start-tag">ul</span><span class="attribute-name"> id</span>=<span class="attribute-value">"recentcomments"</span>&gt;

&lt;<span class="start-tag">li</span><span class="attribute-name"> class</span>=<span class="attribute-value">"recentcomments"</span>&gt;</pre>
<p>But the plugin opens an unordered list <strong>after</strong> the first line of PHP is already executed. So I have to change the code in sidebar.php and start with opening an unordered list (I also removed the &#8220;Current books&#8221; header to better suit my layout):</p>
<pre>&lt;ul&gt;

&lt;?php if( have_books('status=reading') ) : ?&gt;

&lt;ul&gt;

&lt;?php while( have_books('status=reading') ) : the_book(); ?&gt;

&lt;li&gt;</pre>
<p>After adding the unordered list element the plugin displayed the books correctly.</p>
<p><strong>Up next:</strong></p>
<ul>
<li>Fix the other Now Reading pages such as the library which gives an overview of all the books in your database.</li>
<li>Dive deeper into the hierarchy of plugins and widgets, CSS and themes.</li>
</ul>
<div id="tweetbutton202" class="tw_button" style=""><a target="_blank" href="http://twitter.com/share?url=http%3A%2F%2Fbit.ly%2FbTORso&amp;via=silvertje&amp;text=Now%20Reading%20plugin%2C%20CSS%20and%20WordPress%20theme%20compatibility%20problems&amp;related=&amp;lang=en&amp;count=horizontal&amp;counturl=http%3A%2F%2Fwww.annehelmond.nl%2F2007%2F03%2F18%2Fnow-reading-plugin-css-and-wordpress-theme-compatibility-problems%2F"  class="twitter-share-button"  style="width:55px;height:22px;background:transparent url('http://www.annehelmond.nl/wordpress/wp-content/plugins/wp-tweet-button/tweetn.png') no-repeat  0 0;text-align:left;text-indent:-9999px;display:block;">Tweet</a></div>
 
<span class = "" style = " "><iframe src="http://www.facebook.com/plugins/like.php?href=http://www.annehelmond.nl/2007/03/18/now-reading-plugin-css-and-wordpress-theme-compatibility-problems/&layout=button_count&send=false&show_faces=true&width=&action=like&colorscheme=light&font=" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:px; height:px"></iframe></span>]]></content:encoded>
			<wfw:commentRss>http://www.annehelmond.nl/2007/03/18/now-reading-plugin-css-and-wordpress-theme-compatibility-problems/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Photo gallery online</title>
		<link>http://www.annehelmond.nl/2007/02/09/photo-gallery-online/</link>
		<comments>http://www.annehelmond.nl/2007/02/09/photo-gallery-online/#comments</comments>
		<pubDate>Fri, 09 Feb 2007 19:20:54 +0000</pubDate>
		<dc:creator>Anne</dc:creator>
				<category><![CDATA[MA Thesis]]></category>
		<category><![CDATA[gallery2]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[wpg2]]></category>
		<category><![CDATA[zenphoto]]></category>
		<category><![CDATA[zenpress]]></category>

		<guid isPermaLink="false">http://www.annehelmond.nl/2007/02/09/photo-gallery-online/</guid>
		<description><![CDATA[Thanks to Zenphoto and the ZenPress WordPress plugin I have finally put some of my photos online! This clean looking gallery and nicely working plugin were brought to my attention by Lorelle&#8217;s great and extensive post on WordPress Plugins for Images, Photographs, and Graphics. I ditched Gallery 2 (way too much hassle to manually remove [...]]]></description>
			<content:encoded><![CDATA[<p>Thanks to <a href="http://www.zenphoto.org/"  title="Zenphoto" target="_blank">Zenphoto</a> and the <a href="http://simbul.bzaar.net/zenpress/"  title="ZenPress" target="_blank">ZenPress</a> WordPress plugin I have finally put <strike>some of my photos online</strike>!</p>
<p>This clean looking gallery and nicely working plugin were brought to my attention by Lorelle&#8217;s great and extensive post on <a href="http://lorelle.wordpress.com/2007/02/07/wordpress-plugins-for-images-photographs-and-graphics/"  target="_blank" title="Lorelle on WordPress">WordPress Plugins for Images, Photographs, and Graphics</a>.</p>
<p>I ditched Gallery 2 (way too much hassle to manually remove all the headers, footers, sidebars and navigation tools you don&#8217;t want to display) and the WPG2 WordPress plugin (see <a href="http://www.annehelmond.nl/2006/11/20/wordpress-problems-1/"  title="Wordpress Gallery2 problems">my previous post</a> on this issue).</p>
<p>I will add more pictures soon.</p>
<p><strong>UPDATE July 2007: <a target="_blank" href="http://www.flickr.com/photos/silvertje/"  title="anne helmond photos flickr">I have moved all my photos to Flickr</a>. </strong>
<div id="tweetbutton177" class="tw_button" style=""><a target="_blank" href="http://twitter.com/share?url=http%3A%2F%2Fbit.ly%2FbkmAiX&amp;via=silvertje&amp;text=Photo%20gallery%20online&amp;related=&amp;lang=en&amp;count=horizontal&amp;counturl=http%3A%2F%2Fwww.annehelmond.nl%2F2007%2F02%2F09%2Fphoto-gallery-online%2F"  class="twitter-share-button"  style="width:55px;height:22px;background:transparent url('http://www.annehelmond.nl/wordpress/wp-content/plugins/wp-tweet-button/tweetn.png') no-repeat  0 0;text-align:left;text-indent:-9999px;display:block;">Tweet</a></div>
 
<span class = "" style = " "><iframe src="http://www.facebook.com/plugins/like.php?href=http://www.annehelmond.nl/2007/02/09/photo-gallery-online/&layout=button_count&send=false&show_faces=true&width=&action=like&colorscheme=light&font=" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:px; height:px"></iframe></span>]]></content:encoded>
			<wfw:commentRss>http://www.annehelmond.nl/2007/02/09/photo-gallery-online/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Software constraints in blogging software</title>
		<link>http://www.annehelmond.nl/2006/12/01/software-constraints-in-blogging-software/</link>
		<comments>http://www.annehelmond.nl/2006/12/01/software-constraints-in-blogging-software/#comments</comments>
		<pubDate>Fri, 01 Dec 2006 10:38:10 +0000</pubDate>
		<dc:creator>Anne</dc:creator>
				<category><![CDATA[MA Thesis]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[Software-Constraints]]></category>
		<category><![CDATA[Standards]]></category>
		<category><![CDATA[widgets]]></category>

		<guid isPermaLink="false">http://www.annehelmond.nl/2006/12/01/software-constraints-in-blogging-software/</guid>
		<description><![CDATA[I&#8217;ve been working with WordPress for about two months now and I am still getting used to it. My blog seems like an open-ended project, one that will never finish. Maybe that seems like a rather obvious statement, since a blog is a tool for continuously expressing your thoughts. What I actually mean is the [...]]]></description>
			<content:encoded><![CDATA[<p><img align="left" title="Widget" id="image129" alt="Widget" src="http://www.annehelmond.nl/wordpress/wp-content/uploads/2006/12/my-widget_options.thumbnail.png" />I&#8217;ve been working with WordPress for about two months now and I am still getting used to it. My blog seems like an open-ended project, one that will never finish. Maybe that seems like a rather obvious statement, since a blog is a tool for continuously expressing your thoughts. What I actually mean is the form or shape of the blog. I feel like I am building a house and even though the framework is done, the house itself is under constant construction.</p>
<p lang="en-US" style="margin-bottom: 0cm">The framework itself feels restrictive and I have been looking for tools to accomplish what I want. In the case of WordPress I have been looking for <a href="http://automattic.com/code/widgets/" target="_blank" title="Widgets" >Widgets</a> and Plug ins that can achieve what I want. Or rather, the backend tools that shape and form my blog. Plugins and widgets are solutions to the restrictions in the WordPress software, but are restrictions being reproduced on another level? What kind of constraints are built into the internet on the content level? How does software control meaning (content). These are several questions I am planning to ask myself in my MA thesis.<br />
I recently came across two related posts: <a href="http://www.justinshattuck.com/2006/11/28/ranting-on-wordpress-plugin-development/" target="_blank" >Ranting on WordPress Plugin Development by Justin Shattuck</a> and <a rel="bookmark" title="Permanent Link to Ranting on WordPress Plugin Development" href="http://www.bloggingpro.com/archives/2006/11/29/ranting-on-wordpress-plugin-development/">Ranting on WordPress Plugin Development by David at Blogger Pro<br />
</a></p>
<div id="tweetbutton89" class="tw_button" style=""><a target="_blank" href="http://twitter.com/share?url=http%3A%2F%2Fbit.ly%2F9KmZTP&amp;via=silvertje&amp;text=Software%20constraints%20in%20blogging%20software&amp;related=&amp;lang=en&amp;count=horizontal&amp;counturl=http%3A%2F%2Fwww.annehelmond.nl%2F2006%2F12%2F01%2Fsoftware-constraints-in-blogging-software%2F"  class="twitter-share-button"  style="width:55px;height:22px;background:transparent url('http://www.annehelmond.nl/wordpress/wp-content/plugins/wp-tweet-button/tweetn.png') no-repeat  0 0;text-align:left;text-indent:-9999px;display:block;">Tweet</a></div>
 
<span class = "" style = " "><iframe src="http://www.facebook.com/plugins/like.php?href=http://www.annehelmond.nl/2006/12/01/software-constraints-in-blogging-software/&layout=button_count&send=false&show_faces=true&width=&action=like&colorscheme=light&font=" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:px; height:px"></iframe></span>]]></content:encoded>
			<wfw:commentRss>http://www.annehelmond.nl/2006/12/01/software-constraints-in-blogging-software/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>WordPress problems #3</title>
		<link>http://www.annehelmond.nl/2006/11/28/wordpress-problems-3/</link>
		<comments>http://www.annehelmond.nl/2006/11/28/wordpress-problems-3/#comments</comments>
		<pubDate>Mon, 27 Nov 2006 22:08:31 +0000</pubDate>
		<dc:creator>Anne</dc:creator>
				<category><![CDATA[MA Thesis]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[tagging]]></category>
		<category><![CDATA[widgets]]></category>

		<guid isPermaLink="false">http://www.annehelmond.nl/2006/11/28/wordpress-problems-3/</guid>
		<description><![CDATA[So I decided it is time to finally implement the Ultimate Tag Warrior. I am not a php wizard, but I am patient and eager to learn new stuff, both of which help a lot when installing WordPress plug-ins. Although all the plug-ins come with instructions I am often experiencing difficulties. Adding tags to my [...]]]></description>
			<content:encoded><![CDATA[<p>So I decided it is time to finally implement the <a href="http://www.neato.co.nz/ultimate-tag-warrior/" target="_blank" >Ultimate Tag Warrior</a>. I am not a php wizard, but I am patient and eager to learn new stuff, both of which help a lot when installing WordPress plug-ins. Although all the plug-ins come with instructions I am often experiencing difficulties.</p>
<p><a href="http://www.annehelmond.nl/wordpress/wp-content/uploads/2006/11/tag-archive-3b.jpg" title="Tag archive error" class="imagelink" ><img align="left" alt="Tag archive error" id="image128" title="Tag archive error" src="http://www.annehelmond.nl/wordpress/wp-content/uploads/2006/11/tag-archive-3b.thumbnail.jpg" /></a>Adding tags to my posts was easy, but creating a tagcloud wasn&#8217;t. I was able to create a tag archive page which would display a tagcloud (following the instructions), but that wasn&#8217;t quite what I was looking for. I wanted to display my tagcloud in my dynamic sidebar which uses widgets. So I put the php code in the (empty) Text1 widget, but it turned up empty. So I tried adding list HTML tags, which didn&#8217;t help either. After some googling it turns out that you cannot put php code in your widgets. But of course there is <a href="http://www.blog.mediaprojekte.de/cms-systeme/wordpress-plugins/wordpress-widget-king-text/" target="_blank" >a widget</a> to help me fix this widget problem.</p>
<p><span id="more-123"></span></p>
<p>This widget required <a href="http://www.blog.mediaprojekte.de/cms-systeme/wordpress-plugins/king-widget-framework/" target="_blank" >a framework</a> which generated yet other problem: <strong>Fatal error</strong>:  Call to undefined function king_version_head() in wp-content/plugins/king-includes/king-framework.php on line 118</p>
<p>Whoops! Nothing would show up because of this error. Fortunately the easy solution of deleting the plug-in from my server and uploading it again helped. I encountered another error while installing the <a href="http://www.blog.mediaprojekte.de/cms-systeme/wordpress-plugins/wordpress-widget-king-text/" title="King Text Widget" target="_blank" >King Text Widget</a> but fortunately this was entirely my own fault. I had put the php-file in the plugin folder, but this isn&#8217;t a plug-in but a widget so it belongs in the widget folder. But the framework had to be put in the plug-in folder, because the framework is a plug-in and not a widget. Are you still with me?</p>
<p>Then there it was, my tagcloud! But it didn&#8217;t quite look alright. The block didn&#8217;t show a white background like all my blocks in the sidebar do. So it doesn&#8217;t automatically take the CSS, which makes sense, because it&#8217;s a dynamic block. After several guesses at where to put my div class code for the block it worked! (Just put the correct CSS around your php, it is logical after all). It pretty much took a whole evening, but here it is&#8230; my tagcloud.</p>
<p>PS: I just noticed the tags only display on the front page, not on the individual post page. It&#8217;s getting late. Tomorrow.</p>
<p>Update December 1st: added a php line to single.php<br />
Next task: convert the old categories which are now tags to lowercase (simply renaming the categories didn&#8217;t work). Any ideas besides a possible CSS solution of <em>text-transform:lowercase</em> ?
<div id="tweetbutton123" class="tw_button" style=""><a target="_blank" href="http://twitter.com/share?url=http%3A%2F%2Fbit.ly%2Fd6fbvw&amp;via=silvertje&amp;text=WordPress%20problems%20%233&amp;related=&amp;lang=en&amp;count=horizontal&amp;counturl=http%3A%2F%2Fwww.annehelmond.nl%2F2006%2F11%2F28%2Fwordpress-problems-3%2F"  class="twitter-share-button"  style="width:55px;height:22px;background:transparent url('http://www.annehelmond.nl/wordpress/wp-content/plugins/wp-tweet-button/tweetn.png') no-repeat  0 0;text-align:left;text-indent:-9999px;display:block;">Tweet</a></div>
 
<span class = "" style = " "><iframe src="http://www.facebook.com/plugins/like.php?href=http://www.annehelmond.nl/2006/11/28/wordpress-problems-3/&layout=button_count&send=false&show_faces=true&width=&action=like&colorscheme=light&font=" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:px; height:px"></iframe></span>]]></content:encoded>
			<wfw:commentRss>http://www.annehelmond.nl/2006/11/28/wordpress-problems-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress problems #1</title>
		<link>http://www.annehelmond.nl/2006/11/20/wordpress-problems-1/</link>
		<comments>http://www.annehelmond.nl/2006/11/20/wordpress-problems-1/#comments</comments>
		<pubDate>Mon, 20 Nov 2006 17:01:17 +0000</pubDate>
		<dc:creator>Anne</dc:creator>
				<category><![CDATA[MA Thesis]]></category>
		<category><![CDATA[gallery2]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[wpg2]]></category>

		<guid isPermaLink="false">http://www.annehelmond.nl/2006/11/20/wordpress-problems-1/</guid>
		<description><![CDATA[Yesterday I noticed that some of my pictures were gone. Everything seemed to be alright on the front page, but there were no pictures in the post pages. I think this happened after I installed the WPG2 plug in which &#8220;seamlessly&#8221; integrates Gallery2 into WordPress. Wether WPG2 is &#8220;responsible&#8221; or not my whole WordPress upload [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday I noticed that some of my pictures were gone. Everything seemed to be alright on the front page, but there were no pictures in the post pages. I think this happened after I installed the <a href="http://wpg2.galleryembedded.com/index.php/Main_Page"  target="_blank" title="WPG2 plugin">WPG2 plug in</a> which &#8220;seamlessly&#8221; integrates <a href="http://gallery.menalto.com/"  target="_blank" title="Gallery2">Gallery2</a> into WordPress.</p>
<p>Wether WPG2 is &#8220;responsible&#8221; or not my whole WordPress upload directory is gone! So bare with me while I upload all my photos and papers again&#8230;</p>
<p>Note to self: BACKUPS are IMPORTANT!</p>
<ul>
<li>Lorelle on WordPress: <a href="http://lorelle.wordpress.com/2005/09/20/backing-up-wordpress/"  target="_blank">Backing Up WordPress</a></li>
<li>WordPress: <a href="http://codex.wordpress.org/Backing_Up_Your_Database"  target="_blank">Backing Up Your Database</a></li>
</ul>
<div id="tweetbutton94" class="tw_button" style=""><a target="_blank" href="http://twitter.com/share?url=http%3A%2F%2Fbit.ly%2FarHbra&amp;via=silvertje&amp;text=WordPress%20problems%20%231&amp;related=&amp;lang=en&amp;count=horizontal&amp;counturl=http%3A%2F%2Fwww.annehelmond.nl%2F2006%2F11%2F20%2Fwordpress-problems-1%2F"  class="twitter-share-button"  style="width:55px;height:22px;background:transparent url('http://www.annehelmond.nl/wordpress/wp-content/plugins/wp-tweet-button/tweetn.png') no-repeat  0 0;text-align:left;text-indent:-9999px;display:block;">Tweet</a></div>
 
<span class = "" style = " "><iframe src="http://www.facebook.com/plugins/like.php?href=http://www.annehelmond.nl/2006/11/20/wordpress-problems-1/&layout=button_count&send=false&show_faces=true&width=&action=like&colorscheme=light&font=" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:px; height:px"></iframe></span>]]></content:encoded>
			<wfw:commentRss>http://www.annehelmond.nl/2006/11/20/wordpress-problems-1/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

