Recommended Tool: Turn Your Wordpress Install Into A Fully-fledged Membership Site
WordPress SEO Services | WordPress Plugin Development | WordPress Consulting | Wordpress Upgrade | Wordpress Theme Design

Bookable Events Wordpress Plugin »


VN:F [1.2.3_620]
Rating: 5.0/10 (1 vote cast)

This plugin allows you to create a bookable event using the custom fields. A post creator can make a post ‘bookable’ selecting the custom field ‘bookable_event’ (automatically created at the plugin activation) and setting a value for it, e.g. the ‘yes’ value. The registered users can add/remove their participation to an event (represented by a post) by links at the bottom of the post. This plugin provides also a widget displaying the list of the last ‘bookable events’ added.
Tags: custom fields, plugin, widget, posts, registered users, participants, event, events, register, bookable, bookable posts, bookable events, eventi prenotabili, post prenotabili, prenotare, reservar, partecipanti, participantes, usuarios registrados, utenti registrati

Download Plugin

Events Category Wordpress Plugin »


VN:F [1.2.3_620]
Rating: 1.0/10 (1 vote cast)

Seamless event calendar solution which extends the basic WordPress functionality to enable future-dated posts to be listed within the blog chronology when they are assigned to a particular post category. The a future-dated post’s timestamp is used as the time stamp. Upcoming events widget included; includes iCal feed. HTML output contains hCalendar, hCard, geo, and adr microformats.
Quick Start

1. Activate the plugin
2. Create new posts in the “Events” category
3. Add the Upcoming Events widget to the sidebar

How it works

WordPress is designed to serve posts arranged in a chronological order. Because of this and because the post is such a fundamental building component of WordPress, it only makes since that an Event Calendar solution for WordPress should take advantage of its core functionality. At the most fundamental level, this plugin enables posts to be used as events by automatically publishing any future-dated posts that reside inside of a specific category and its subcategories: this is the “Events Category”.

Since events are merely future-dated posts, they may be browsed using WordPress’s chronological archives. Pretty permalinks to these event posts which contain the common year/month/day structure are intuatively semantic: the URL to the event itself indicates the event’s time. Since WordPress by default displays the future-most posts first in a descending-chronological order, the behavior of the index pages under in the events category was changed. A new query variable, eventscategory-position, is introduced which indicates the current position in the timeline. When serving the root of a category, this query variable is set to “0″, which means that the upcoming events will be shown in ascending order. If there are more upcoming events than what is allowed to show per page, then there is a link generated with the usual previous_posts_link() (yes, the name is unintuitive, but this is normal for WordPress). The second page of future events would have eventscategory-position set to “1″, and the third page “2″, and so on.

If there are events that have already passed, they can be seen by clicking the link generated by next_posts_link(). Unlike future events which are presented in ascending order, past events are presented in descending order. The first page of past events has eventscategory-position set to “-1″, the second page to “-2″, and so on. Basically, all that eventscategory-position does is it replaces the paged paramater, and conceptually it shifts the paged paramater.

As already mentioned, the landing page for the events category lists the next upcoming events, that is, the first page of future results. When pretty permalinks are enabled, on the second page of future results, the URL would appear as /category/events/future/2/ (/category/events/future/1/ and /category/events/future/ and /category/events/ all refer to the same page of results where eventscategory-position is “0″). Likewise, on the first page of past events, the URL would appear as /category/events/past/ (/category/events/past/1/ is equivalent where eventscategory-position is “-1″); the second page of past events would appear as /category/events/past/2/ and so on.

Note that since all events are posts, the default posts page and feed will filter out all posts dated after the current time; otherwise all of your future posts will fill the first pages of your results.
Creating a new event

Creating a new event is just creating a new post and assigning it to the “Events” category (or a subcategory under it). You may rename this category to something else after initially activiating the plugin. Once you select the “Events” category for the post, additional controls will appear asking for the necessary information to create an event, including the start date-time and end-date time, and the location.
Upcoming Events Widget

Multiple upcoming events widgets may be added to your sidebar(s), and each one may be customized to show only certain categories of events, to show a specified number of posts, to include the location, and to customize the date-time format and the address format. The feed links will appear if you are showing only one category.
Template Tags and Data Formatting

The following template tags are introduced:

* eventscategory_get_the_time($dt_format = ”) — prints the time
* eventscategory_the_time($dt_format = ”) — echos the preceding function
* eventscategory_get_the_location($before = ”, $after = ”, $adr_format = ”) — if no location is provided, nothing is returned
* eventscategory_the_location($before = ”, $after = ”, $adr_format = ”) — echos the preceding function

The $dt_format (date-time format) is a hybrid version of the format accepted by PHP’s date() function. Format characters which are enclosed in brackets are removed (along with other characters) if their presence adds no new information. See the following example date format; the event end date-time is enclosed in curly brackets, in which the first square-bracketted string is the separator between the two date-times:

F jS, [Y @] g[:i][a]{[ - ][F ][j][S, ][Y,] g[:i]a} T

The $adr_format (address format) is a string incorporating adr microformat class names:

[%street-address%]\n[%extended-address%]\n[%locality%][, %region%][ %postal-code%]\n[%country-name%]

The HTML output from these functions is tagged using hCalendar, hCard, geo, and adr microformats. The default format strings used by these functions can be modified via the Upcoming Events widget configuration, or via the main Events Category options page; the formats modified in these sections are independent of each other, so you can use a more concise date format in the widget, but have a more verbose format when calling eventscategorythetime() elsewhere.
Displaying Event List: Sample category.php Template

You can determine if the user is currently seeing future posts if the query variable eventscategory-position is less than zero. If it is equal to zero then they are in the present time, meaning the next upcoming events are shown; if it greater than zero, then some page of future events is being viewed. Please locate the file example-templates/category.php in the plugin.
Displaying an Event: Sample single.php Template

The following example includes hCalendar and other microformats if the post being viewed is an event. Please locate the file example-templates/single.php in the plugin.
Changelog

2008-10-10: 0.4 * Large re-write and re-development for WordPress 2.6

2008-02-13: 0.1 (beta)

* is_events_category() now accepts arrays of category IDs or category objects so that is_events_category(get_the_category()) can be used in the single.php template.
* Future events posts now no longer appear on the default posts page nor in the main posts feed.
* Event feeds (RSS2 and iCal) are now automatically added to each page.
* Event location in iCal feed has been improved

2008-02-12: 0.1 (alpha)

* Initial version released

Todo

1. Seconds should be forbidden in the format, because if the minutes are hidden, the seconds will look like minutes? Or we can only remove the [i] if the [s] is 0
2. Tabbing among the events category tabs needs to be resolved (hitting tab from title should go to the start date)
3. Javascript validation of data needed, including ensuring that second date and time should maintain diff from first when the first is modified
4. ??Category count is broken in Manage Categories page as well as Posts Manage page: Category post count incorrect when in admin managing posts
5. Timezones and daylight savings time
1. Setting time at the beginning and end of daylight savings time is buggy.
2. Start and end date-time microformats not currently working with daylight savings time
3. Should we automatically change gmtoffset when DST starts or ends? We could just do setoption(gmt_offset, date(’Z')/3600) after
4. We should always use gmtpostdate - postdate to get the gmtoffset; when saving a post in daylight savings, we’ll add/subtract subtract one from gmt_offset
5. Should we be able to specify the timezone that the user is in? with putenv(TZ=) or datedefaulttimezone_set()
6. Verify conversions: from browser form to PHP handler to database to the_time and finally back to the browser form again; verify consistency and validity for timezones and DST
7. SOLUTION: Allow user to set the offset each time, and upon savepost, change the gmtpost_date to correspond to the user-defined offset
8. save event-gmt-offset in postmeta
9. Present a list of all timezones/offsets for which the user’s timezone is automatically selected
10. Client-logic determines whether the start or end-date are DST: problem: how will server know when DST? If we have the start time the gmt_date (start - gmt-offset), how do we determine if start time + duration is DST or not DST?
6. Add external iCal feeds to display
1. Be able to assign all posts in a feed to a category
2. Note that we need to store in postmeta the post-event’s source feed and unique identifier
3. Do iCal feeds generally keep all feeds from all time? If not, then how do we know when an event was deleted or just stopped from being shown?
4. Disable comments for imported feeds?
5. Disable editing/deleting of imported events
6. Who should be assigned as the author of these imported posts? By default: admin; but provide drop down to choose
7. Add ‘category’ field to microformat…
8. Significant feature: Recurring Events
1. Once recurring events are supported, we’ll have to modify the post-lists in Manage Posts to make them more navigable
9. ??Option to filter thetime to include the beginning and end dates, that is, the results from eventscategorythe_time… and include the format specified
10. Localize in Japanese
11. Significant feature: Event Registration
1. Add support for keeping track of attendees; RSVP status may be assigned by registered users via the comments form: http://microformats.org/wiki/hcalendar-brainstorming
2. iCal feed should include this registrant data

Tags: posts, calendar, events

Download Plugin

Events Registration with PayPal IPN Wordpress Plugin »


VN:F [1.2.3_620]
Rating: 10.0/10 (1 vote cast)

This plugin provides a way to take online registrations for events such as conference and seminars that are held live. It uses the PayPal IPN to record payments to a database.

This wordpress plugin is designed to run on a Wordpress webpage and provide registration for an event. It allows you to capture the registering persons contact information to a database and provides an association to an events database. It provides the ability to send the registrant to your PayPal payment page for online collection of event fees. PayPal payments are captured to the database using the PayPal Standard IPN.

Reporting features provide a list of events, list of attendees, and excel export.

This plugin is strongly based the Event Registration plugin form David Fleming - Edge Technology Consulting.
Support

Email questions or comments to seth@smartwebutah.com.
If you like the plugin and find it useful, your donations would also help me keep it going and improve it. You can donate and find online information at http://shoultes.net/wordpress-events-registration-with-paypal-ipn/.

Changes:

1.3 Fixed/removed some incorrect HTML tags and removed the leading 0 from the times 1.2 Fixed the $GET/$POST feature to actually use both standards
Tags: event registration, event management, paypal event registration, paypal ipn

Download Plugin

Event Registration Wordpress Plugin »


VN:F [1.2.3_620]
Rating: 0.0/10 (0 votes cast)

Allows you to register people online for events. Very flexible. Provides the ability to setup event list and accept online registrations for events and administer them via WordPress. Supports paypal and international currency via paypal. Provides the ability to upload events via CSV format. Provides the ability to have a single event or multiple events.

If you like the plugin and find it useful, your donations would also help me keep it going and improve it. You can donate and find online information at http://edgetechweb.com/

Also if you could rate the plugin that would also be helpful.
Support

Thanks for all your suggestions and feedback. I have begun setting up a dedicated site for the plugin www.edgetechweb.com primarily for support issues. There is a page with installation directions

Documentation included in the document (link on first tab of plugin Admin Panel) as well as http://edgetechweb.com/instructions/

Please continue to email questions or comments to consultant@avdude.com.

If you like the plugin and find it useful, your donations would also help me keep it going and improve it. You can donate and find online information at http://edgetechweb.com/

Changes: 3.05 - Fixed Issue with ShortCode not calling correct event Fixed Issue with Order of Events in listing - now list by start date Fixed Issue with Edit Attendee Records and Extra Questions Erasing/Not updating Fixed Issue with Folder location on Export Reports - no longer requires custom configs for subdirectory installations Fixed Issue with Events Table Installation - Date format Fixed Issue with Registration Form Validation on Extra Questions Fixed Issue with blank image on Events list when no image was identified Fixed Issue where # of registered attendees also includes additional people on a persons registration. Added Admin Page with inline documenation and support
Added Admin Page for Uploading Events via CSV file. Added support for start & end times Added support for event location Added support to display # of open registrations left Added support for More Info link to link to another page. Added support to select currency format per event (still have default currency if none selected at event level) Added support to copy an event in the system so duplicates dont have to be re-entered Added confirmation popup when select edit, copy or delete an event. Changed layout of Events list

3.048 - Sql Bug fix when changing organization details Adjusted table format when no image is assigned to event Added additional Admin panel to provide support feedback about database and also link to online documentation 3.047 - Fixed issue where checks always shows yes on edit Fixed issues where allow multiple always shows yes on edit Fixed validation issue on regform where added fields wouldnt validate

. . . See changelog.txt for more changes
Tags: event registration, event management

Download Plugin

Post Notification Wordpress Plugin »


VN:F [1.2.3_620]
Rating: 10.0/10 (1 vote cast)

** For support please visit the forum! I’m not regularly reading wp.org.

Post Notification 1.2 is not compatible with WP < 2.2. Please use Post Notification 1.1.x. You can find it, if you follow the "other versions" link in the FYI-box on the right.

* Changelog
* News
* WP Mail SMTP is recommended

Features:

* Can handle thousands of subscribers. And has a simple back end to manage them.
* Translations (Front and Backend): German, French, Dutch
* Frontends: Hebrew, Brazilian Portuguese, Spanish, Italian, Japaneese
* Subscribers can choose categories.
* Easy to translate:The frontend should take a few minutes, the backend a bit longer. Please send me your translations!
* The Post can be included, if you wish, only up to the more-tag.
* Mails can be sent as HTML or text.
* If you send text mails, the post is formated.
* Double Opt-in
* Frontend and mails are configured via templates. It is easy to change everything without messing in the code.
* Easy im- and export of Emails
* Every recipient gets his personal mail, with a link to change his subscribed categories or to unsubscribe.
* Nervous Finger option (Mail isn't sent right away - so you still have time to change things once you posted.)
* You can decide how many mails are sent in a burst and how long to pause between bursts.
* Decide on a per post basis whether to send a mail, or not, or just use the default.
* Captchas
* Integrates into almost any theme without tweaks.
* Does not need WP-Cron or anything like that.
* Possebility to adjust mails with userfunctions
* much more

Changes in the templates since 1.1

* select.tmpl has been added.
* activated.tmpl has been removed.
* strings.php has five new strings.
* unsubscribe.tmpl now needs a @@conf_url.
* Mail templates can now use @@author. And @@unsub changed to @@conf_url.
* subscribe.tmpl need @@vars in the form.

Where is the difference to Subscribe2?

Subscribe2 as well as Post Notification are based on the same plugin. While Subscribe2 has it's emphasis on a nice user interface and is more easy to configure this plugin is also suitable for professional sites who want to send several thousand mails as day. There are two main reasons for this:

1. PN sends a "personal" email to each subscriber with a link to change his settings.
2. A subscriber can choose categories without having to register a Wordpress user.

Tags: hebrew, dutch, french, deutsch, german, Subscribe2, subscribe, Post, mail, email, notification

Download Plugin

Post Author Comment Notification Wordpress Plugin »


VN:F [1.2.3_620]
Rating: 0.0/10 (0 votes cast)

Overrides the wp_notify_moderator function located in pluggable.php. By default, wordpress does not notify a comment author of a moderation event. This plugin will look at all users in the blog, and notify anyone who can moderate the plugin, along with the admins and the author of that post. This has been tested and does work with WPMU as well.
Tags: author, notification, comment

Download Plugin

Multi Author Comment Notification Wordpress Plugin »


VN:F [1.2.3_620]
Rating: 0.0/10 (0 votes cast)

By default WordPress sends notifications of new comments to the author of the post only. If you have a blog where there are 3 authors who writes for this blog then they will get notification of new comments for those post which they have written themselves only.

Other 2 authors won�t know what comments the third author is getting in his blog post unless they themselves check that post.

Wouldn�t it be a nice idea to let ALL the authors be notified via email about what comments are being posted in their fellow author�s blogs?This way they can take part in the conversation too. Also, if any of the author has gone for vacation then their fellow author could then continue the conversation by getting notification of new comments.

This is where “Multi Comment Notification”, the small but useful plugin by MaxBlogPress comes into play.

Consider these scenarios where the plugin could help you.

Scenario 1: Get help from your friends for maintaining conversation at your blog

Say you have a very popular blog and its hard to keep up with lots of comments coming in. You can tell some of your friends to help you continue the conversation on blog. You can simply add their emails in the “Multi Author comment notification” and it will automatically send the notification for new comments to your friends.

Scenario 2: Monitor how your hired bloggers are doing

If you are the owner of the blog and there are several hired bloggers who write for you, then you can use this plugin to monitor all the comments made on the post by all the readers. You can then judge on how your bloggers are doing and how much good feedback they are receiving by looking at the comments made on their posts.

Scenario 3: Take peaceful vacation

Work is starting to tire you and you decide to take a vacation. But even during your vacation your fellow authors will know exactly what comments are being received on your blog posts even if your fellow authors don�t exactly know what posts you have written.

This means you don�t have to tell your friends or fellow authors to keep looking at so and so blog post. Your friends and fellow authors will receive the comments directly on their emails and answer them.

Click here for more information…
Tags: administrator, admin, notify, notification, comments, comment notification, multi, email, comemnt, author

Download Plugin

Filter Email Notifications Wordpress Plugin »


VN:F [1.2.3_620]
Rating: 0.0/10 (0 votes cast)

You’re the only user who can create posts and moderate comments on your WordPress installation.

You have both ‘Email me when anyone posts a comment’ and ‘Email me when a comment is held for moderation’ options checked.

You get an email about a comment awaiting moderation and you approve it.

The problem is that right after that you get a second email letting you know that a new comment has been posted, which of course you already knew about.

Solution

Instead of disabling email notifications for new comments alltogether, you can use this plugin and not receive the redundant emails mentioned above.
Tags: notifications, email, admin

Download Plugin

WP-osCommerce Wordpress Plugin »


VN:F [1.2.3_620]
Rating: 0.0/10 (0 votes cast)

This plugin is to be used with WP.osC (released under GNU/GPL by Roya Khosravi).

WP.osC (osCommerce for WordPress) is a modified version of osCommerce, one of the most popular ecommerce solutions. The main difference between WP.osC and osCommerce, is that WP.osC uses the same Theme system as WordPress.

WP.osC allows you to integrate osCommerce into an existing Wordpress website.

You need to install WP.osC package before using this plugin.

Plugin Features:

1.

Displays on your WordPress blog’s post/page:
* New products
* Random products
* Top 10 Best Sellers
2.

Adds a dynamic widget in your blog�s sidebar to display:
* New products
* Random products

Usage: You have three options:

* Create a page or post and enter one of the following tags anywhere in the content.

[wposc:new] Displays new products.
[wposc:best] Displays top 10 best sellers.
[wposc:rand] Displays random products.

*

The plugin adds two widgets to display new products and random products, so you can place these widgets on your sidebar through Design=>Widgets.
*

If your theme doesn’t use widgets, you can use one of the following functions in your sidebar:

displaynewproducts(); and displayrandomproducts();

More About WP.osC - osCommerce for WordPress

http://www.wposc.com
Tags: WP-osCommerce, paypal, osCommerce, ecommerce, wposc, osCommerce for WordPress, e-commerce

Download Plugin

WP From Email Wordpress Plugin »


VN:F [1.2.3_620]
Rating: 0.0/10 (0 votes cast)

Override the default ‘WordPress wordpress@mydomain.com’ from name and email address.
Tags: email, from, name

Download Plugin

Wordpress Hosting

Expert Wordpress hosting services $5.95/mo, unlimited space, unlimited traffic, FREE domain, Free Wordpress installation, Free Wordpress themes and lot More!

Custom Plugin Development

If you are want a Custom WordPress Plugin created?
Or you need an existing WordPress plugin modified?

Choose us for best quality services. Please provide us with your contact information, select the service for which you want pricing and we will get back to you with all the details.

Hire Wordpress Experts

If you are looking for freelance wordpress developers, look no further.
Choose us for best quality services. Please provide us with your contact information, select the service for which you want pricing and we will get back to you with all the details.

Most Downloaded Themes

Premium Wordpress Themes

Is your Blog Looking Crapy?
Download a premium theme today!
Introductory Price $19 Only!

Recent Downloads


Services -

- Home
- Custom Theme Design
- Plugins Development
- Request a Quote
- Seo Services
- Register

Want A Professional Look?
Try Our Premium Themes!
Introductory Price $19 Only!







Help us spread the word...

Need custom wordpress theme design? Looking for a Custom WordPress Plugin?Choose us for best quality services. Please request a quote now!