Hello shughey!
1.
You can enable the quicktags functionality which allows you to add HTML to your posts. Add this code to your themes functions.php file:
function change_editor_settings($settings) {
$settings['quicktags'] = true;
return $settings;
}
add_filter('asgarosforum_filter_editor_settings', 'change_editor_settings');
2.
Threads can be ordered via your themes functions.php file as well. You can use this code if you want to order threads by name:
function asgarosforum_sort_threads($order) {
$order = 't.name ASC';
return $order;
}
add_filter('asgarosforum_filter_get_threads_order', 'asgarosforum_sort_threads');
3.
Only administrators/moderators can delete posts. Are you sure that normal users can delete replies as well? If yes: Can you give me some steps to reproduce it because this should be not possible!
4 & 5
Both suggestions are on my todo-list. 🙂
Thanks, I’ll double check on number 3.
Number 1 worked great but, with regards to number 2, I’ve added the code for ordering threads but obviously I’m missing something really simple and it’s making me feel dumb. How do I order threads by name? I apologize but am thankful for your time and patience.
My mistake on number 3. Members cannot delete posts or replies.
Please disregard my question on number 2, I see what it’s doing. Told you I felt dumb!
All is resolved.
Great! I am happy to hear that it is working! 🙂