Please or Register to create posts and topics.

Statuszeile mit eigenen Texten

Hallo Thomas,

besteht die Möglichkeit, in der Zeile einen eigenen Text einzufügen? Das Forum, was hier gezeigt wird, ist ein öffentliches Forum. Ich habe darüber hinaus ein geschütztes, wo die Nutzer aber einen Zugang beantragen müssen. Das würde ich da gerne anfügen.

Danke für alles, was du hier verbesserst. Das Forum ist wirklich sehr nützlich für uns und wird immer besser.

Sylvi

 

Uploaded files:
  • aa.jpg
mahoney has reacted to this post.
mahoney

@Springer ,
I can help you, but my French is not up-to-date, so I will talk english here.
Go into your plugin folder, and navigate to wp-content\plugins\asgaros-forum\includes. You can find “forum.php” there. Just google for the text that’s currently in the box, and change it  to your own. I did it succesfully this way on my community website.

mahoney has reacted to this post.
mahoney

@mahoney: Thank you very much. But what about updates from the plugin? If I chage the php-file, it can be overwrite with next update?

Sylvi

mahoney has reacted to this post.
mahoney

Yes it can. That’s why I always suggest to keep a back-up of your files, so you can change it back after an update. I own a gaming community, and I have a document on my server where I log all the changes, so every time there is an update, I can follow them and make it work 🙂

mahoney has reacted to this post.
mahoney

Hi,

forum.php, bei mir ab Zeile 612 (im Dreamweaver) … Bei jedem Forum – UPDATE dies Zeile erneut eintragen!

function showLoginMessage() {
        if (!is_user_logged_in() && !$this->options['allow_guest_postings']) {
            $loginMessage = '<div class="info">'.__('Du musst dich anmelden um Beiträge und Themen zu erstellen.', 'asgaros-forum').'</div>';
            $loginMessage = apply_filters('asgarosforum_filter_login_message', $loginMessage);
            echo $loginMessage;

LG.
Sven

mahoney has reacted to this post.
mahoney

Hi,

vielen Dank. Habe ich jetzt auch gemacht. Ist natürlich nicht so schön, dass man es nach jedem Update neu eintragen muss.

Vielleicht findet Thomas eine Möglichkeit, den Text ein eine eigene Datei auszulagern, die nicht überschrieben wird.

Liebe Grüße

Sylvia

@springer I hope so too! Someyhing like that is actually quite easy if you set it up, so I think he will be doing that, so you can change the text from the admin panel. At least, I HOPE he does haha!

Hello @springer and others

There is already a filter for this available which you can use for this. Just add the following php-code to your themes functions.php file and replace MY OWN TEXT …” with the text you need:

function change_login_message($message) {
  $message = '<div class="info">'.__('You need to log in to create posts and topics.', 'asgaros-forum');
  $message .= '<br>';
  $message .= 'MY OWN TEXT ...';
  $message .= '</div>';

  return $message;
}
add_filter('asgarosforum_filter_login_message', 'change_login_message');

 

If you want to support the development of Asgaros Forum, you can leave a good review or donate. Thank you very much!

Hallo Thomas,

das ist ja super. Ich habe deinen Vorschlag noch modifiziert, da ich einen Standardtext und den Umbruch auch nicht brauche. Aber ich denke, mit der Anregung bekommt das jeder so hin, wie er es braucht. Hast dir wieder einen kleinen Bonus verdient 😉

Liebe Grüße

Sylvia

Asgaros has reacted to this post.
Asgaros