Hi everyone. I am trying to redesign our church website but I am not using Joomla. I tried it based on how much I like the plugin you have made but I just don't like Joomla very much. Mostly because I really like the simplicity of WordPress much more.
I have tried WordPress sermon plugins but they are nothing like this, and don't handle hundreds of messages well or display them the way I would like.
I am making a standard HTML page separate from the WordPress installation using sortable tables, which works very well. The problem is only people with a little HTML knowledge can update it.
My question is ... is there something like Joomla Bible Study that is not dependent on a CMS? I would like something that is PHP/MySQL based.
Any help is greatly appreciated!
Here is the html I wrote ...
<html>
<head><title>Sermons</title>
<script src="sorttable.js"></script>
</head>
<body><h2>Church Sermons</h2>
<br>You can sort by Date, Series, Message, or Speaker simply by clicking on those menu items.<br><br>
<table 'sortable' cellpadding="5" border='1'><tbody>
<tr><th 'sorttable_numeric sorttable_sorted'>Date</th><th 'sorttable_alpha'>Series</th><th 'sorttable_alpha'>Message</th><th 'sorttable_nosort'>Handout</th><th 'sorttable_nosort'>Description</th><th 'sorttable_alpha'>Speaker</th></tr>
<tr><td>2011-04-10</td><td>Revelation</td><td><a href="/Messages/Revelation2.mp3">Revelation #12</a></td><td><a href="/messages/Revelation2.pdf">Printout</a></td><td>Message 2</td><td>Pastor Joe</td></tr>
<tr><td>2011-04-03</td><td>Revelation</td><td><a href="/messages/Revelation1.mp3">Revelation #11</a></td><td><a href="/messages/Revelation1.pdf">Printout</a></td><td>Message 1</td><td>Pastor Joe</td></tr>
</tbody></table>
</body>
</html>