Now taken care of, Oleg. Been working on this all week (I actually fixed the problem that you specified the day that you opened the inquiry (I stupidly forgot to rename a variable), but decided not to post an update till I completed more of the plugin).
Updated (v 0.3)
Change log:
- Basic skin added (still need to work on CSS rules to make them friendlier to edit)
- Pagination for topics and categories added
- Admin panel reorganised (still needs further work)
- Admins can ban members
- Mods/Admins can set topic statuses (e.g. Open, Closed, Moderators Only, Admins Only)
- Categories can now be grouped into 'sections'
- Usage of the plugin has been changed: to use, simply create a page with the slug forum and paste the placeholder (% msgboard %). If you decide to change the page slug, you can modify the URL structure of all the pages in the Admin Panel (under the 'Domain' field).
- Also, to have the page title change depending on where you are in the forum, replace the contents of your <title> tags with this:
- Board statistics added to the main page
- 'msgboard' GET key is no longer used - URLs go directly off of the page slug (e.g. forum&topic=0 instead of forum&msgboard&topic=0
- Avatars and signatures fully supported
To do
- Incorporate more BBCode functionality (as it stands, not all codes are supported, e.g. 'code')
- Integrate a search feature to search for posts (could take a while to do)
- Build a separate 'page comments' plugin that can be integrated with the already existing MSGBoard users
- Continue to improve skinning capabilities
To update from 0.2, delete all of the information from the tables and start afresh, reinstalling MSGBoard (a lot of significant changes have been made, and the incompatibility will likely cause an error).
Updated (v 0.3)
Change log:
- Basic skin added (still need to work on CSS rules to make them friendlier to edit)
- Pagination for topics and categories added
- Admin panel reorganised (still needs further work)
- Admins can ban members
- Mods/Admins can set topic statuses (e.g. Open, Closed, Moderators Only, Admins Only)
- Categories can now be grouped into 'sections'
- Usage of the plugin has been changed: to use, simply create a page with the slug forum and paste the placeholder (% msgboard %). If you decide to change the page slug, you can modify the URL structure of all the pages in the Admin Panel (under the 'Domain' field).
- Also, to have the page title change depending on where you are in the forum, replace the contents of your <title> tags with this:
Code:
<?php
if(return_page_slug()=='forum') { get_msgboard_title(); }
else { get_page_clean_title(); echo ' '; get_site_name(); }
?>
- 'msgboard' GET key is no longer used - URLs go directly off of the page slug (e.g. forum&topic=0 instead of forum&msgboard&topic=0
- Avatars and signatures fully supported
To do
- Incorporate more BBCode functionality (as it stands, not all codes are supported, e.g. 'code')
- Integrate a search feature to search for posts (could take a while to do)
- Build a separate 'page comments' plugin that can be integrated with the already existing MSGBoard users
- Continue to improve skinning capabilities
To update from 0.2, delete all of the information from the tables and start afresh, reinstalling MSGBoard (a lot of significant changes have been made, and the incompatibility will likely cause an error).