Many other forums have the login name displayed near the top of the forum page. On WPForu it would look good on the main forum title line. It could have an option to enable/disable it in settings. Also the text could be editable with a default of "Hello %s" or "Welcome back %s". If a guest is using the forum it could be blank.
As it is, unless you check your profile it is difficult to see if/how you are logged into the forum.
Just an idea... 😉
Gary
Not related to your question BUT there is an "index.php" in your url and that is WRONG (in your whole site).
Also the "Wordpress" part of your url is UN-NEEDED (in your whole site). Since you are just staring, you better fix those because after some months, if you make the changes, your indexing and rank will be lost.
Hi @ghutchnet,
Many other forums have the login name displayed near the top of the forum page. On WPForu it would look good on the main forum title line. It could have an option to enable/disable it in settings.
Can you provide screenshots.
Also, if you add wpForo Profile & Notification Widget, To show Users info on the sidebar.
also the text could be editable with a default of "Hello %s" or "Welcome back %s".
You can edit every wpForo phrase from Dashboard > Forums > Phrases Page,
Hi @ghutchnet
you can use this PHP code
<?php if ( is_user_logged_in() ) { $current_user = wp_get_current_user(); if ( ($current_user instanceof WP_User) ) { echo ' </br>¡Hello ' . esc_html( $current_user->display_name . '!'); } } ?>
and paste it into the forum.php at the desired position
wpforo > wpf-themes > classic > forum.php