Posts Tagged ‘plugins’

Live Blogroll

8
responses
by
on
July 7th, 2008
in
WordPress Plugins

Vladimir Prelovac has come up with yet another cool plugin, this time called Live Blogroll. Live Blogroll replaces the default blogroll in that when a user hovers their mouse over a link, the rss feed from that site is aggregated in an Ajax created box showcasing the most recent (configured number) of posts. The Live Blogroll uses internal caching for feed discovery and WordPress caching for RSS feeds to keep everything from slowing down to a crawl. Vladimir is on a roll in terms of creating cool WordPress plugins. This one is yet another shining example.

[Continue Reading...]

WordPress Plugin Releases for 07/05

8
responses
by
on
July 5th, 2008
in
WordPress Plugins

StumbleUpon Favorites StumbleUpon Favorites is a widget based on the default RSS widget that was developed to allow the sharing of bookmarks with blog visitors. This plugin makes it much easier to use and customize the list grabbed from your own StumbleUpon account. Automated Picture Posting Plugin PICS (Picture Increment Cron System) is a WordPress Plugin designed to allow you to automatically post pictures to your WordPress blog at a administrator determined timed interval. WP Wall “Wall” widget that appears in your blog’s side bar. Readers can add a quick comment about the blog as a whole, and the comment will appear in the sidebar immediately (without reloading the page). Live Blogroll This plugin shows a number of ‘recent posts’ for each link in your Blogroll using Ajax. When the user hover above the link the rss feed from the site is automatically detected and a number of recent posts […]

[Continue Reading...]

3 Under Rated Plugins

32
responses
by
on
June 29th, 2008
in
WordPress Plugins

There appears to be a WordPress meme going around (started by John at WordPress Expert) where members throughout the community are tagging other blogs along with mentioning three plugins which they feel are under rated. Although I don’t have access to the plugins used here on WLTC, I would like to bring about three under rated plugins I use on my own blog. DiggThis – This plugin was written by Aviran Mordod This by far my favorite DiggThis plugin because it only displays on posts which have been submitted to Digg. My opinion, which is shared by many others is that, it’s better to show a DiggThis button when the article has been submitted to Digg rather than showing a Digg button next to every article. Unless you are ReadWriteWeb or some other mainstream blog, those buttons will show 0 diggs and will possibly hint to the content not being […]

[Continue Reading...]

Andy Skelton Introduces Batcache

9
responses
by
on
June 22nd, 2008
in
WordPress Plugins

So far, there are two excellent performance enhancing caching solutions available for WordPress, WP-Cache and WP-SuperCache. Both do an awesome job of caching posts/pages to help keep your website from falling off the map in the middle of a Digg effect. Now, there is a new entrant in the caching arena called Batcache which was created by Andy Skelton. This plugin is meant to be used in situations where file-based caching is either not practical, or is not desired. According to Andy, development testing showed a 40x reduction in the time it took to generate pages. Pages that were generated in 200ms ended up being served from the cache in only 5ms. Batcache uses Memcached to store and serve rendered pages. It’s not as fast as Donncha’s WP-Super-Cache but it can be used where file-based caching is not practical or not desired. The basic premise of the plugin works similar […]

[Continue Reading...]

All In One SEO Lives On

38
responses
by
on
June 17th, 2008
in
LinkyLoo, WordPress Plugins

For those of you who may not have heard, it was recently discovered that the popular All In One SEO Plugin for WordPress would be no longer updated or supported past WordPress 2.5.1. The plugin is currently compatible with 2.5.1 but may not work with future versions of WordPress. However, I have managed to get a hold of the plugin author and he informed me that he believes the plugin will not die. He is currently in discussions with a number of other developers to continue maintenance of the plugin. He also expressed interest in the idea of having the plugin integrated into the core of WordPress. *UPDATE* It looks like the plugin has found a new home. A WordPress.org user who goes by the username hallsofmontezuma who is also the plugin author of the WP Security Scan plugin as well as the SMS Text Message plugin has taken over […]

[Continue Reading...]

If Plugin Deactivation Breaks Your Blog

14
responses
by
on
June 1st, 2008
in
LinkyLoo

Ever deactivate a plugin, only to have it crash your blog? Typically, this will result in a “Fatal error: Call to undefined function.” which is then displayed on the front end of your site. According to John Lamansky, the reason this error occurs is because the theme is still calling on the plugin you deactivated. John Lamansky has put together a list of steps that you should perform to alleviate this issue entitled, What To Do If Plugin Deactivation Breaks Your Blog. Typically, deleting the plugin file from your plugin directory usually solves most problems. However, John’s list of steps guides you through the process of determining which bits of code from the failed plugin are causing the errors and then removing those lines of code. If you have ever gone through the experience described above, please let us know how you went about fixing the issue.

[Continue Reading...]

WordPress Plugin Releases for 5/31

8
responses
by
on
May 31st, 2008
in
WordPress Plugins

Google AJAX Libraries API Plugin The Google Ajax Libraries API Plugin is designed to make it easy to use the Google hosted libraries without the need to mess with your theme and plugin code. Get The Image This plugin will allow you to have full control over images displayed, or it takes the power of WordPress and uses its image cropping methods. MW Adminimize This plugin pares down the page-topping links interface that shows up on every WordPress administration page. MW Latest Tweet This one does what you’d probably guess: shows the latest tweet. Be sure to check out the release page as it offers more than just displaying the latest tweet. BT Active Discussions This is a recent comments plugin that displays customizable number of blog posts with recently updated comments. The output is very similar to phpBB’s View Active Topics and vBulletin’s Today’s Posts functions. User Rank Plugin […]

[Continue Reading...]

Ajax Edit Comments Part Deux

13
responses
by
on
May 30th, 2008
in
WordPress Plugins

Ajax Edit Comments, the Digg like comment editor written by Ronald Huereca has undergone a significant rewrite. For those that are familiar with the older versions, you’re going to be in for quite the surprise as Ronald has rewritten the plugin from the ground up. The new version contains an updated interface, numerous backend improvements and a redesigned configuration page. One of the biggest changes I noticed with the new version is that you no longer can double click on the comment text to edit it inline. Instead, you click on an Edit link. After clicking the edit link, you’re presented with a screen similar to this one: Another visual change are the buttons/links that appear underneath every comment. The buttons give you access to edit the comment, moderate the comment, mark the comment as spam or deleting the comment. That comment interface looks little like this: In my opinion, […]

[Continue Reading...]

Removing Width/Height from the Image Uploader

33
responses

Reader Vivien writes in: Is there a way to prevent WordPress from inserting the width and the height for images in the new 2.5 media manager? In short, yes, but it requires you to insert some code into your theme’s functions.php file. Fortunately, there is a WordPress filter we can use called image_downsize, which takes in three arguments (a boolean, an attachment ID, and a size string). add_filter('image_downsize', 'my_image_downsize',1,3); All I’m doing in the above filter is setting the filter name, the function to call (my_image_downsize), what priority I want the filter, and how many arguments the function takes. From there, I mimic the function image_downsize in the ‘wp-includes/media.php’ file, but do not return a width or a height. As a result, when the image is sent to the editor, no width or height is present. function my_image_downsize($value = false,$id = 0, $size = "medium") { if ( !wp_attachment_is_image($id) ) […]

[Continue Reading...]



Obviously Powered by WordPress. © 2003-2013

css.php