Plugin Directory

Organize Series

A plugin for managing the article series you write.

Download Version 2.4

2.4.0

Bugfix

  • WP 3.0 introduced new way of adding meta boxes. This release adopts that format.

2.3.9

Bugfixes and WP 3.3 compatible. I was hoping to get a new feature in this release but ran out of time and thought it more important to get a bugfix out. Hopefully a new feature by Christmas :)

  • fixed a bug with improper inclusion of series id. This primarily surfaced when using %token_replace% for certain items (with add ons) but may have caused problems elsewhere as well. ht to ldsphilosopher for the catch.
  • fixed a .css error that messed up tiny-mce editor
  • changed the way series_icons get uploaded so the url text field is disabled (makes less likely for mistakes).
  • fix to make sure js in series.js is loaded on document ready
  • fix for series_icon not getting properly saved in some circumstances (when creating a new series)
  • selected series icon is cleared when the submit button is pressed for the "Add Series" form.
  • changed wording of "Upload Image" to "Select Image" for the add new series form. Better reflects what happens.
  • minor fix for pue-client.php to hopefully fix PHP errors in certain cases.
  • switched usage of jquery .live() to .on() because .live() is deprecated in jquery 1.7
  • adding 'series' custom column via 'manage_posts_columns' hook will only fire when the displayed post list is for the "post" post_type (since by default Organize Series is only setup for the "post" post_type);

2.3.8

  • major fix to a flaw on the automatic upgrades backend for addons. Current implementation has your site firing off the api to ping OrganizeSeries.com far to frequently than necessary and thus creating unneccessary overhead for your site.

2.3.7

  • ensure full compatibility with WordPress 3.2

2.3.6

Bugfixes and backend changes

  • OrganizeSeries addons are using a new framework I developed for automatic upgrades which are now served from Amazon S3 (reducing load on OrganizeSeries.com). This affects the core plugin because some of the framework is included with the core.
  • New Organize Series API key field displayed for all users of Organize Series. If you have purchased an addon and at least the basic support purchased you will receive an API key that you enter in this field to enable automatic updates via the WordPress backend of purchased addons (which are not hosted on the WordPress repository).
  • changed the way the series_navigation templates work so the &lacquo and &racquo aren't hardcoded. In the process I made things more flexible...
  • %previous_post_custom% and %next_post_custom% tokens are now deprecated (however existing users of those tokens will still find they work - for painless upgrades).
  • %next_post% and %previous_post% tokens now take their values from the Custom Next Post Text field and the Custom Previous Post text field. If those fields are empty then the corresponding post titles are automatically added.
  • The "Custom Next Post Text" and "Custom previous navigation text" fields are now token enabled. Default settings show '%post_title% >>' and '<< %post_title%' for corresponding fields. The entire contents of these fields will still be linked to the next and previous post.

2.3.5

Note that Organize Series requirements have been bumped to WordPress 3.1 from WordPress 3.0. It should still work on WP3.0 but it will no longer be supported for versions prior to WP3.1.

Bugfixes

  • fixed SSL error when Organize Series is used on a WordPress install using https:// ( props Scott Elkin )
  • Removed the hardcoded "<<" for the series_toc browser title. This leaves it up to the user to control the characters used via the "Series Table of Contents Title" field in the Series Options page
  • fixed scheduled, pending, and draft posts not updating the total parts in a series when being published. This bug has resurfaced various times with different versions of Organize Series. I think I nailed it's coffin shut this time!
  • The Organize Series news feed in the Series Options page was using a deprecated file in WordPress. It's now using the simple-pie class. Also of note is I changed the location of the news feed in the sidebar along with adding a plug to rate Organize Series on WordPress.org (if you're reading this, please help promote Organize Series by rating it or indicating it works for your WordPress version. Your help with this will help gain more users and in turn help with development incentive. Thanks!)
  • Image Uploader for Series Icons (via the "manage series" page) should now properly display the "Use as Series Image" button. If it still doesn't appear fixed, make sure you refresh your browser caches so the new javascript file gets loaded.

Minor New Feature

  • A settings link has been added to the Organize Series listing on the Plugins admin page. This makes it much easier to get to the Series Options page after activating/updating the plugin.

2.3.4

Bugfixes

  • fix for series-toc-title not sticking for the page title on the series-toc page.

  • fixed php warnings on series-options page related to undefined/isset variables.

  • fixed a typo affecting automatic upgrades for Organize Series Addons.

  • fixed a few deprecated functions hooking into WordPress.

2.3.3

Bugfix

  • fixed bug where filtering the posts on the edit post screen excluding series did not return expected results

  • Also fixed the reported bug where site searches only returned results in series. Searches should work as expected.

2.3.2

Bugfix release

  • fixed typo with update routine that could affect some updates from earlier versions.

  • fixed wp_postlist_display() so if it's being used manually it respects the setting for auto_tag_toggle in the series_options page. (ht charles)

  • changed the required capabability for viewing the series options page to 'manage_options' from the custom 'manage_series'. 'manage_series' capability was assigned to editors along with administrators. The options page should really be limited to administrators as usual.

  • fixed potential 401's happening with search engine robots on pages containing the series widget if the series_url was changed from the default 'series' via the series options page. (ht tang )

  • fixed a bug with get_series_posts() that in some cases results php errors.

2.3.1

Bugfix release

  • version 2.3 resulted in some problems in certain cases for people upgrading from an earlier version of Organize Series. This release should take care of that for those of you with the problems.

  • fix for potential function name collision with other plugins. (see report here)

  • removal of wphelp info since it is being discontinued.

2.3

Bugfixes and Behind the scenes updates:

  • One of the major changes in this version of Organize Series is that the "series_part" custom field is now hidden when creating or editing a post. The series meta-box is still there, and series parts still use custom fields but I've taken advantage of a little known feature in WordPress to clean things up on that page.

  • This version brings in a couple more hooks and filters and also lays the groundwork in other areas for some more future addons planned for Organize Series.

  • This version also fixes some minor bugs and streamlines the way things work behind the scenes (especially the Quick-edit feature on the edit.php page).

  • Improved the usability of the "add new series" input in the series-meta box on the create/edit post screen. When adding a new series it will appear at the top of the list of series instead of at the bottom as before.

  • For those of you using template tags for custom implementation of Organize Series (i.e not having it automatically done via the series options) the following changes have been made that are important to take note of:

    • wp_postlist_count(): Previously you could just use wp_postlist_count() in the loop and get the number of posts in the series that a post belonged to without passing the series id (i.e. wp_postlist_count('39') where "39" is the id of the series)). Now if you can still have Organize Series to dynamically figure out the series id but to do it you need to do this -> wp_postlist_count(false,true);

    • wp_series_part(): Previously you could just use wp_series_part() in the loop and get the part the post was in a series that a post belonged to withouth including the series id (see how it worked for wp_postlist_count() above). Now, to do this you need to use the following format -> wp_series_part(0,0,true)

    • wp_series_nav(): Same changes as above two functions. To have the nav dynamically generated without knowing the series_id for the series a post belonged to, use the following format (leaving other options at defaults) -> wp_series_nav(null,true,false,false,true)

  • You can view all the specifics of the changes and cleanup that's been done via this changeset

2.2.9

Bugfix release AND full compatibility check with WordPress 3.1

  • Organize Series is fully compatible with the upcoming version 3.1 of WordPress.

  • Fixed a bug with the ajax form in the series meta box on the edit-post.php page. When creating a new series using the form the new series would be created BUT not automatically selected. Also you wouldn't be able to attach the post to the new series until the page was reloaded. This is fixed.

  • The Series dropdown in the SeriesTOC widget would not redirect to a series archive page when a series is selected (in certain cases). This has been fixed.

  • Some other bug fixes for certain cases where a "FATAL ERROR..." message would appear.

  • a naming convention change. On WordPress version prior to 3.1 you will see the name of the menu item for the Manage Series page as "Series". With WordPress 3.1 this will go back to "Manage Series" which is what it was prior to this release. The reason for the difference is I'm using a new paramater available for the taxonomy api (menu_name) so I can clean up what the General Taxonomy name is (from "Manage Series" to "Series"). This WILL affect any users who have localization files. If you start using Organize Series 2.2.9 with the 3.0 branch of WordPress make sure you revisit your translation files once you upgrade to WordPress 3.1 to make sure all the translations are correct.

2.2.8

minor bugfix (not a necessary update unless you are using any premium addons for Organize Series)

  • Automatic Upgrades framework for addons had a bug that surfaced in certain cases.

2.2.7

Some more bugfixes:

  • renamed a class related to the automatic plugin updates (for premium orgseries addons) that conflicted with another plugin. I should've been more unique... If you experienced errors when activating a newer version of any Organize Series addons, this was why. You should be good to go with this update.

  • fixed a bug with the get_series_link() function that would produce an error if you didn't include a paramater.

  • some more minor cleanups of the readme.txt file.

2.2.6

Some houskeeping in this release along with including the framework to enable automatic updates for addons released on OrganizeSeries.com

2.2.5

Two more bug fixes:

  • fix for scheduled posts not retaining a set series part number.

  • fix for "<<Manage Series" showing up in the browser title when a series archive page is displayed. I've completely removed that text and now just the "Series: {series title} << {Blog Title}" is showing up.

2.2.4

Display Bug Fix

  • version 2.2.3 had a bug that affected the display of series icons on public facing side of your website. This has been fixed.

2.2.3

More bugfixes

  • made some fixes in the javascript for the quick-edit implementation so Organize Series plays nicely with other plugins that hook into the quick-edit.

  • fixed an incorrect path pointer that broke the series-options page for users with a custom WP_CONTENT_DIR set.

  • modified the function returning the series_icon_url so it works correctly for users with a custom WP_CONTENT_DIR and WP_CONTENT_PATH set.

2.2.2

Another bugfix release

  • Fixed query bug: When series archive pages were displayed, any widgets or other plugins querying posts (using $wp_query) on the page would not display expected posts (i.e. "Recent Posts" widget, Alikivia Sideposts, "Kates Gasis' Sideblog" plugin). The custom joins/wheres/orderbys used by Organize Series are now isolated to only occur for the series posts being displayed. Other queries on the page should be unaffected now.

  • Cleaned up errors shown by setting wp_debug as true in the wp-config.php file.

  • Introduced with 2.2.1 was a bug where get_seriestoc() would not return the correct permalink for the series toc in certain cases. This is fixed in 2.2.2

  • Fixed conflict with wp-hide-posts plugin.

2.2.1

This is a bugfix release

  • Fixed series archive bug: When series_custom_base and series_toc_url were the same (as set on the series options page) then any links to specific series archive pages would load the series-toc page. With this fix it is possible to have both set as the same without any problems. (NOTE: After upgrading make sure to visit your series options page and make sure the custom_base and series_toc_url are set. If not you will have problems with your sites rss feeds.)

  • Fixed scheduled post bug: This bug affected scheduled posts that were a part of a series that lost all series information when they transitioned to a published post.

  • Fixed draft and pending posts bug: This bug affected posts that were saved as a draft or pending and then later published. When published the "total parts in series" count would not increment.

2.2

This version is a major update to the plugin and introduces big changes to the core code and structure of the plugin. Care has been given to make the upgrade as seamless as possible for users of previous versions but you will definitely want to read over the changelog to see if there are any changes that will impact you.

AS ALWAYS - BACKUP YOUR BLOG FIRST BEFORE UPGRADING!!

Highlights

  • The code has been rewritten and given a full review to make it as efficient and tidy as possible.
  • Everything has been looked at to ensure the plugin integrates as tightly as possible with the built-in custom taxonomy system provided by WordPress. Some significant changes were introduced with WordPress 3.0 that made this tighter integration possible.
  • I've renamed some of the plugin files to keep the naming consistent and make it easier to find components of the plugin.
  • Organize Series Publisher has been unbundled from the core plugin and is offered as a separate download via the WordPress.org repository. It is still free. This unbundling is part of the new direction of releasing add-ons for Organize Series.
  • The code has been structured and given multiple new action and filter hooks for the easier implementation of "Add-ons" for extending the functionality of the core plugin.
  • The plugin now has it's own home on OrganizeSeries.com
  • Some more PHPDOCs have been added to the files to make it easier to track how things work and where things are (especially helpful for developers wanting to create addons for Organize Series)

Changes

  • {developer note} Core components of Organize Series have been moved to an Object model. See the orgSeries class in orgSeries-setup.php. Note that all the initial setup functions have been moved to this class and out of the orgSeries.php file.
  • {developer note} some files have been renamed/removed. If you customized any Organize Series plugin files you will want to make note of the differences before upgrading.
  • {developer note} Organize Series settings (options) are now accessible via the $orgseries object. $orgseries-settings.
  • {developer note} the options page completely utilizes the WordPress options/settings api.
  • {developer note} widgets now fully use the WordPress widget api.
  • {developer note} did a full review of the plugin files and updated any deprecated WordPress hooks/filters/functions to the current implementation.

  • {bug fix} A lot of the jQuery/javascript has been given a once over and this should fix the reported conflicts with plugins like the Admin DropDown Menu plugin by Ozh.

  • {bug fixes} There are numerous bug fixes and optimization done to the plugin since the last version. For a full look at the changes check out changeset.

  • {enhancement} Organize Series now incorporates the same look and feel for the "manage series" page as any of the built-in WordPress taxonomy management pages. This includes the ability to "Quick-Edit" series information.

  • {enhancement} polished up the usage of the built-in WordPress image uploader/manager for associating images with series.
  • {enhancement} NEW template tag: in_series($series_term) This function will check if the current post is in a given series OR if the post is in ANY series (when the series_id or series_slug isn't provided). Will return true or false.
  • {enhancement} NEW template tag: is_series_toc This function will check to see if the displayed page is the series_toc page. Helpful for in the cases when you want to do something custom in the header or footer or sidebar of a seriestoc page.

Requires: 3.3 or higher
Compatible up to: 3.3.1
Last Updated: 2012-1-17 Downloads: 55,953

Average Rating

5 stars
4 stars
3 stars
2 stars
1 star
(43 ratings)

Compatibility

+
=
Not enough data

1 person says it works.
0 people say it's broken.

Log in to vote.

100,1,1 0,1,0
100,1,1
100,1,1
100,1,1
100,1,1
100,1,1 100,1,1 100,1,1
100,3,3 100,1,1 100,1,1
100,1,1 100,2,2
100,1,1 100,3,3
80,5,4
40,5,2 0,1,0
100,2,2 100,1,1 100,1,1
50,2,1 100,3,3 100,2,2 50,2,1 100,1,1 100,1,1 100,1,1 100,1,1
100,1,1 100,1,1
100,1,1 100,1,1 100,1,1 100,1,1 100,1,1
100,1,1 100,1,1 100,1,1 100,1,1
100,1,1
100,1,1 100,1,1 100,1,1 100,1,1 100,1,1 67,3,2 100,1,1
100,2,2
100,1,1 100,2,2 0,1,0
100,4,4 100,1,1
100,1,1 100,1,1
100,1,1 25,4,1
50,4,2 100,1,1
50,2,1 100,1,1