• Resolved mestregd

    (@mestregd)


    Hello Thomas, in order to help make your plugin even better, I would like to congratulate you first, secondly I wanted to give some tips that I would like to see and I think other users as well.

    Date of entry below avatar:

    It’s cool to see if a user is new or inexperienced, so it would be cool, see the date the user joined, in my opinion would be a very good thing and not difficult to is implement ??

    Forum Stats:
    As mentioned in a previous my topic, it would be very useful to see some statistics below the forum with some information like; Total members, total posts / topics and members online

    Open Translation:
    This is crucial, I noticed that even using a plugin for this, you can not notice changes when manually updating the traducion. It would be nice to be able to give ourselves the freedom to translate to our site from the plugin menu itself or through other plugins.


    For now it’s just that, even if it seems to be silly ideas, many people would like to see this in a wordpress forum and maybe that’s the difference to make a popular plugin, out of many other things you’ll be able to accomplish in future updates, Congratulations on the beautiful Thomas plugin!

    • This topic was modified 8 years, 2 months ago by mestregd. Reason: Fix bbcode
Viewing 4 replies - 1 through 4 (of 4 total)
  • Hello @mestregd

    1. functions.php add:

    add_action('asgarosforum_after_post_author', 'my_function_registered', 10, 1);
    function my_function_registered($author_id) {
    $user_info = get_userdata($author_id);
    $registered = $user_info->user_registered;
    echo '<div class="data-registered">Registration:<br/>'.date("j.n.Y", strtotime($registered)).'</div>';
    	
    }

    Check!!

    Plugin Author Asgaros

    (@asgaros)

    Hello @mestregd

    Date of entry below avatar

    The code of @yworld should work perfectly fine for it. Just add it to your themes functions.php file and it will appear.

    Forum Stats

    I am already working hard on it and plan to bring this functionality somewhere in January.

    Open Translation

    The translation via other plugins is already possible. Please make sure that you store the translation files in this folder:
    wp-content\languages\plugins
    e.g.:

    wp-content\languages\plugins\asgaros-forum-de_DE.po
    wp-content\languages\plugins\asgaros-forum-de_DE.mo

    After it ensure that you set your WordPress language after it to the corresponding language in Settings -> General.

    • This reply was modified 8 years, 2 months ago by Asgaros.
    Plugin Author Asgaros

    (@asgaros)

    Hello @mestregd

    I have good news for you: A first version of the statistics functionality is ready and will be available with the upcoming v1.3.2 release in the next 24 hours. You can find more information about it here:
    https://www.asgaros.de/support/?view=thread&id=1&part=1#postid-1

    Here is the GitHub commit:
    https://github.com/Asgaros/asgaros-forum/commit/5d71b0de3971c1a320803ca37669360ba3cc1d00

    Greetings,
    Thomas

    • This reply was modified 8 years, 2 months ago by Asgaros. Reason: Added GitHub commit

    Hello @asgaros

    Great news!!!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Suggestion to news update’ is closed to new replies.