Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Author Asgaros

    (@asgaros)

    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. 🙂

    Thread Starter shughey

    (@shughey)

    Thanks, I’ll double check on number 3.

    Thread Starter shughey

    (@shughey)

    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.

    Thread Starter shughey

    (@shughey)

    My mistake on number 3. Members cannot delete posts or replies.

    Thread Starter shughey

    (@shughey)

    Please disregard my question on number 2, I see what it’s doing. Told you I felt dumb!

    All is resolved.

    Plugin Author Asgaros

    (@asgaros)

    Great! I am happy to hear that it is working! 🙂

Viewing 6 replies - 1 through 6 (of 6 total)

The topic ‘Wish List’ is closed to new replies.