Plugins 015 – Subscribe to Comments Plugin

Today we’re covering the  Subscribe to Comments WordPress plugin.

The Subscribe to Comments WP plugin allows comment contributors to receive email notifications when additional comments are left for the specified blog post. This is a great way to encourage both comment contribution and increase your returning visits to your web site.

Features include:

  • Customize From email address and name
  • Users who do not leave comments can subscribe to comments
  • Customize the messages shown to comment author, subscribers and unsubscribed users
  • Customize styling for subscription manager pages
  • Add your own custom header, footer and sidebar (for advanced users)

Plugins Podcast Skill Level: Any (Creating customized header, footer and sidebar Plugins Skill Level: Advanced)

To learn more about the Subscribe to Comments plugin, please go to http://wordpress.org/extend/plugins/subscribe-to-comments/.

Plugins 014 – NextGEN Gallery Plugin

Today we’re covering the  NextGEN Gallery WordPress plugin.

The NextGEN Gallery plugin adds image gallery functionality to your WordPress blog. Click here for a demonstration.

Features include:

  • Flash Slideshow
  • Flash Viewer (as an additional addon)
  • Templates
  • CSS styling
  • Watermarks
  • JavaScript Effect (Web 2.0 feel)
  • Custom Media Gallery RSS feed
  • Sidebar Widget
  • Tag images
  • Detailed descriptions
  • Multi-language support
  • Administration
    • Copy/Move images
    • Upload zip file of multiple pictures
    • Integrates to Post/Page editor (TinyMCE)

The NextGEN Gallery plugin makes it easy to add a modern gallery to your blog. Users knowledgeable in CSS and HTML can take further advantage of this plugin, though knowledge of CSS and HTML is not necessary to use this plugin.

Plugins Podcast Skill Level: Any

To learn more about the NextGEN Gallery plugin, please go to http://wordpress.org/extend/plugins/nextgen-gallery/.

Plugins 012a – MailPress Plugin

MailPressToday we’re covering the MailPress plugin to quickly add a newsletter mailing list to your blog.

Features include:

  • Newsletters for (users can subscribe to)
    • Each post
    • Daily (digest of posts each day)
    • Weekly digest
    • Monthly digest
    • Comments
  • Manually send newsletters
  • Detailed logging of sent messages
  • Themes for Email newsletters
  • Add-ons (Sort of like plugins for this plugin)
    • Bulk import tool (comma separated list of addresses)
    • Import data (csv, XML sample, other WordPress plugins from database)
    • Mailing lists manager
    • Newsletter categories
    • Synchronize WordPress accounts with MailPress Users
    • Add roles and capabilities (Special User Roles to apply to WordPress accounts)
    • Custom Fields

The plugin is very powerful which makes it very complicated to setup and configure. It definitely helps to read all of the documentation and have previous knowledge of how to edit source code before attempting to use this plugin.

Plugins Podcast Skill Level: Advanced

To learn more about MailPress, please go to www.mailpress.org.

Plugins 010 – Contact Form 7 Plugin

Today we’re covering the Contact Form 7 plugin to add custom contact forms to WordPress.

Key features include:

  • Solid set of field types (radio, checkbox, dropdown, listbox, email,  etc…)
  • Email admin(s) of form submission
  • Ability to attach files
  • Captcha image to prevent SPAM form submissions
  • Easily customizable (as long as you know html/css)
  • Translated to over 30 languages
  • Works with WordPress 2.7 (latest version as of this writing)

The plugin is developed by Takayuki Miyoshi. To learn more about Contact Form 7 plugin, please visit http://ideasilo.wordpress.com/2007/04/30/contact-form-7/.

Resize Image in Blog Posts To Fit Column Width Using CSS

Have you ever added an image to your blog post to find that the width of the image exceeds the width of the column of the page? Here’s a simple fix you can add to your theme’s style sheet to solve this problem. The fix below assumes that you have a class for your blog post entries called “.entry”. This class may be called something different depending on the preference of the theme developer.

.entry img {
max-width: 500px;
height: auto;
}

The max-width: is the maximum width the image can be within the .entry class. In this example the maximum width for an image is 500 pixels. We set the height: auto so the height of the image is auto adjusted to maintain the aspect ratio. Images that are smaller than the max-width will not be resized.

Note that this will not work for Internet Explorer 6 or older.