Archive for the ‘Software’ Category

Moving to Regent Software

Over the next couple weeks I’ll be cleaning up some loose ends here on thisismyurl.com and part of that includes moving several software packages from their current home here, to new website homes. Eventually, all my tools will be located at http://regentware.com.

Once everything’s moved, the new design for my website will be ready to go online as well as the new skin for http://regentware.com.

Quick Menu Donations

quick menu for wordpress Quick Menu Donations imageI received an email recently with regards to an error in the Quick Menu plugin for WordPress which forced users to PayPal when the Save button was clicked. I can assure you, this wasn’t the intent and I’m sorry for any frustration this may have caused.

I’ve had several people submit donations from this plugin since it’s release and will be sending each of you emails in the coming days to correct the donations.

Christopher

Updates to Random posts and Scheduled Post Plugins

On Wednesday, while I was cleaning up some WordPress 282 details I took a little bit of time and also upgraded the Random posts plugin and Scheduled posts plugin for WordPress.

These new upgrades allow me to make the most of a common admin interface for all my plugins as well as checking for news related to the plugins straight from the admin panel of the WordPress plugin.

Popular Posts Plugin Upgrade

screenshot 1 131x300 Popular Posts Plugin Upgrade imageI’ve just updated a minor update to the Popular Posts plugin for WordPress, the changes are mostly cosmetic to help work with WP 282 but there’s a few new features are well, most dramatic I’ve begun the process of converting all my plugins to a new shared administration file structure which should allow me to rapidly release updates

Great Chefs new iPhone Cookbook

Screenshot 2009.07.03 19.38.03

Great Chefs new iPhone Cookbook

I’m so excited to let everybody know, the new Great Chefs Great Salads cookbook is now available on the App Store from Apple for just 99 cents! The cookbook includes over 20 great recipes from the hit television series, all geared towards helping us beat the heat with some wonderful simple recipes we can share with a salad.

You can download it from the Apple App Store.

v1.1.0 with new link spam protection!

I’m a huge fan of helping people get wonderful, quality links for their website and that’s great but it often leads to people abusing plugins such as the List Posts with Pingbacks and Tracks plugin that I put up.

The latest version of the plugin was just uploaded a few seconds ago and now allows you to specify the minimum Pagerank to include in your list of results, I also fixed a small glitch in the nofollow code so it’s been repaired and is working properly.

Please keep in mind the PR check is resource consuming, so you’d best make sure you’re using a caching script before you go running it!

The script has a built in caching tool which requires the directory  to be set to 777.

Auto Copyright Upgrade v1.1.5

The latest updates include minor formating changes to the administration section as well as the addition of a notification script to check for latest updates.

Smiley update for WordPress Stats (v1.1.0)

As with many of my other plugins for WordPress, the update to WordPress 2.8 through a monkey wrench in the formating of the plugin information page. This fix is just a reformatting the administration pages.

v1.0.0 – Return a whole sentence with Get Better Excerpt

= Return a whole sentence =
If you would like to return whole sentences rather than words, you can control the number of sentences to return:
get_better_excerpt(’sentence=1′);

I’ve upgraded my Get Better Excerpt plugin this morning to include a cool new feature, now you can retrieve a complete sentence instead of a series of words for your WordPress excerpts.

To return a single sentence:

get_better_excerpt(’sentence=1′);

For two sentences:

get_better_excerpt(’sentence=2′);

Of course, you can also combine this with other options:

get_better_excerpt(’sentence=2&link=true’);

Upgrades for No More Frames

While there have been a lot of great fixes in the newest version of WordPress 2.8, the upgrade did some major damage to plugin formating. As a result I’ll be putting in an hour every day for the next couple weeks fixing the formating errors on a variety of plugins.

The No More Frames plugin for WordPress is an awesome plugin that helps websites avoid spam and content theft by breaking the frame when other websites attempt to load content into a frame based web browser.

v1.1.0 – WordPress 2.8.0 Admin Updates

With the recent update to WP28 we lost some formating in the admin panel for Easy Technorati Tags for WordPress, this quick fix cleans up some of that formating.

You can download the upgraded plugin here.

WordPress Plugin Updates for WordPress 2.8

This morning saw the release of WordPress 2.8 which fixed a significant number of small issues with the platform but also required an extensive review of all the plugins I have released over the past few months as a result, all 13 of my existing plugins have received an update this morning to ensure compatibility with the new release.

As always, if you have any questions please do not hesitate to contact me.

Quick Menu Plugin for WordPress

screenshot 1 Quick Menu Plugin for WordPress image

If you’ve ever wished you could add your own menus to WordPress, then this is the plugin for you!

The WordPress Admin Quick Menu plugin allows you to quickly add new menu items to a special WordPress Quick menu, giving you and your clients fast access to important third party website shortcuts such as Analytics and email as well as adding faster access to internal WordPress pages.

Download the plugin for free.

Hotlink Protection Plugin for WordPress

Everyday websites suffer performance loss and higher bills due to bandwidth thieves. This plugin adds the necessary code to your .htaccess file to stop people from loading your graphics from third party websites.

What is a bandwidth thief?

Since many website hosting companies charge per file transferred (or total file transfer size for the month), unscrupulous website owners often load key graphic files from smaller, unsuspecting website owners in hopes of both lowering the costs of running their website and increasing the performance of their site.

This plugin uses Apache’s .htaccess capacity to stop foreign websites from loading images from your web server.

You may download the WordPress plugin for free.

Get Image from Post, a Free WordPress Plugin

As with many of my free WordPress plugins here on the website this one is used extensively throughout my website to help me deliver a great site for my visitors. The plug basically allows users to grab an image from their posts and display it in the Loop.

It’s perfect for home pages, archives etc. where you link to include a visual idea of what the posts about.

This is a simple plugin which allows users to return an image from the related post.

Please feel free to download this plugin.

Installation

To install the plugin, please upload the folder to your plugins folder and active the plugin.

== Frequently Asked Questions ==

= How do I display the results? =

Insert the following code into your WordPress theme files: 

= General results =

ithout passing any parameters, the plugin will return ten results or fewer depending on how many posts you have.

 get_image_from_post();

= Altering the before and after values =

By default the plugin wraps your code in list item (<li>) tags but you can specify how to format the results using the following code:

 get_image_from_post(‘before=<p>&after=</p>’);

= Adding a Link = 

If you’d like to link to the post (remember it’s not live yet) you can do so by calling:

 get_image_from_post(‘link=true’);

= Echo vs. Return =

Finally, if you’d like to copy the results into a variable you can return the results as follows:

 get_image_from_post(’show=false’);