Archive for the ‘Wordpress & plugins’ Category

After many months of development, and an evening of last minute tweaks, JobRoller has finally arrived
I started developing JobRoller back in March, then teamed up with AppThemes (makers of Classipress) to finish it off.
JobRoller is a premium theme for WordPress 3.0 which lets you turn your WordPress blog into a professional job listing Web site.


The Secure and Accessible Contact Form plugin has now been updated for WordPress 3.0 and also contains many other tweaks to set it apart from its predecessor, such as the ability to remove optional fields (a much requested feature). Read on for more information and the download link.

Just posting a video review of my MiniCard theme by Mark Adams I found whilst googling today; some of you might find it interesting to watch.
I will add that there are actually ways to add your own links to MiniCard now; this was added in an update. If you want to get MiniCard and give it a whirl you’ll find the post here. Thanks for the review Mark

WordPress Download Monitor is my popular plugin for managing files available for download in WordPress – version 3.3 is a major update containing many new features and improvements.
Version 3.3 (beta) is now available for beta testing to ensure this is a hassle free update when released officially. I would appreciate any feedback, praise and bug reports in the comments. Read more about the new features and grab it after the break.


The Wordress Snippets series of posts will give you some useful code snippets for use in your projects – just copy and paste (but try to understand how they work!).
This snippet will add a stylesheet to your login page so that you can style it fully, and also change the default WordPress logo link (to wordpress.org) and title text to something of your choosing. Add it to functions.php in your template.


The Wordress Snippets series of posts will give you some useful code snippets for use in your projects – just copy and paste (but try to understand how they work!).
This snippet will add rel="nofollow" to the links in your blogroll, or those outputted by wp_list_bookmarks. Add to functions.php or your links template.


I have had some requests asking me to improve the WordPress Download Monitor documentation, so I decided to write (and maintain) this post explaining the ins-and-outs of configuring and using the plugin. Hopefully it will help you guys use the plugin, and also reveal more of its power and flexibility.
Don’t forget, if you love download monitor please make a small donation and/or rate it on the wordpress plugins directory. I also appreciate your contributions to the development of the plugin, so feel free to email me any code or your suggestions. Your support is very welcome!
Links: Download Monitor Page | Plugin Directory Page


Download Monitor 3 is upon us. Download Monitor is a plugin for uploading and managing downloads, tracking download hits, and displaying links. So far it has been downloaded over 45,000 times!
New features in version 3 include shortcodes, better template tags, daily stats, download logs and more! Download monitor 3 requires at least WordPress version 2.5.
Links: Download Monitor Documenation | Plugin Directory Page


‘Shortcodes’ are a feature of wordpress used for executing custom functions by inserting a small snippit of code into a post. For example, my download monitor plugin now uses shortcodes; by entering [download id="1"] into a post, the plugin will output a download link.
The shortcode syntax varies, here are some examples:
[shortcode]
[shortcode atribute="value"]
[shortcode]Text[/shortcode]
Shortcodes can be created to perform a handful of useful functions. To use any of the shortcodes in this post I recommend adding the functions to your functions.php theme file (create it if it does not exist!). Ill show shortcodes ranging from showing adsense to speaking pirate! (written for wordpress 2.7)


If you have ever tried to include code in a wordpress post you may have gone through hell trying to get it to output correctly; WordPress’ built in functions for formatting text (autop and texturize) mangle your code making it non-functional.
I’ve tried many solutions in the past, such as disabling wordpress’ formatting functions, however, this is not ideal -especially if you rely on them to clean up your text and properly encode characters. On top of that its not even valid to include certain things such as CSS in the body of a xHTML document.
The solution? Custom fields. This post will show you how.
