Marco Luthe Online! » Archive for July 2010
Plugin: Flickr Photo Album For WordPress
I finally found a new (and almost excellent) working plugin to integrate your Flickr photos and albums into your WordPress blog (see my photos page): Flickr Photo Album For WordPress: tantannoodles.com/toolkit/photo-album/ After giving up on other plugins like Slickr Gallery or Falbum, this one seems to work quite nicely (after adjusting the template, that is, which took quite some time). Unfortunately, there are still at least two three issues: In the title bar, every child page to my photos page shows a “404 File Not Found” error, although the page is being displayed correctly. It works well with the main “/photos/” link, since I have created a page with that name. I know this issue is a known bug, but has anyone found a solution to this, yet? Private photos … Read entire article »
Filed under: WordPress Stuff
How To Add Ping-/Trackbacks When Using Disqus
As I mentioned in this post, ping-/trackbacks are not yet supported by Disqus when using the plugin for WordPress. When you export the comments from WordPress, ping-/trackbacks are simply not imported into the Disqus database, yet (they promised that they are working on it). In the meantime, I managed to add this feature by using the ping-/trackbacks that are stored within the WordPress comments table (mostly, this will be wp_comments). This is what it looks like (see the original post): How it’s done: I wrote a function named DisplayPingTrackbacks() which achieves the goal. In the single.php, I simply put it before comments_template() is called by WordPress, which – in my case – looks like this: <?php DisplayPingTrackbacks(); ?> <div id="comments"> <?php comments_template(); ?> </div> Here is what the function looks … Read entire article »
Filed under: WordPress Stuff

Disqus And Broken Anchors
July 10th, 2010 | View Comments
If you have the feeling that the anchors to the comments and to the comment form are broken since you installed the Disqus Comment System plugin for WordPress, you might want to read along… maybe you’d also be interested in other posts about Disqus. When displaying how many comments a post has, WordPress determines the link to the comment section in two ways. If there is a comment, the anchor will be “#comments” (id=”comments”), if there are none, the anchor will be “#respond”, which leads directly to the comment form (“Leave A Reply”). People who are interested in viewing the WordPress source code should look at the function comments_popup_link(), defined in wp-includes/comment-template.php on line 946ff (WordPress 3.0). The decision wether to use “#respond” or “#comments” is made on line 974ff. … Read entire article »
Filed under: WordPress Stuff