Notifications
Clear all

[Closed] Show display notification " you must be logged to reply to this topic"

4 Posts
2 Users
1 Reactions
973 Views
Posts: 7
Topic starter
(@yesterday55555)
Active Member
Joined: 4 years ago

Hello everyone. How can I display notification " you must be logged to reply to this topic" like this?

Β 

3 Replies
Sofy
Posts: 4660
 Sofy
Admin
(@sofy)
Support Team
Joined: 7 years ago

Hi @yesterday55555

You can customize the post.php file in the layout and add the text. Please read wpForo template files documentation and customization instruction:

2 Replies
(@yesterday55555)
Joined: 4 years ago

Active Member
Posts: 7

@sofy

Sorry, because I do not understand much about code in wordpress. I will try to do it, but If there is any photo that help me step by step. that will be more great.

Anyway thank you so much.

Sofy
 Sofy
Admin
(@sofy)
Joined: 7 years ago

Support Team
Posts: 4660

@yesterday55555,

Please see the example below. In the example, we've added the text for the Extended layout. In the case of other layouts, you should put the code in the post.php file of the current layout.

Please attentively read this doc:

https://wpforo.com/docs/root/forum-themes/theme-files/#layouts%C2%A0-wpforo-wpf-themes-classic-layouts

The code you should use:

<?php if( !is_user_logged_in() ): ?>
<p> you must be <a href="Put here the login link">logged </a>to reply to this topic </p>
<?php endif; ?>

Β