# bbp-core/2.4.1/templates/hello-single-user.php

Forumax – AI Powered Advanced Community Forum Plugin, version 2.4.1. 31 lines.

- Page: https://pluginprobe.com/plugins/bbp-core/2.4.1/code/templates/hello-single-user.php
- Raw: https://pluginprobe.com/plugins/bbp-core/2.4.1/raw/templates/hello-single-user.php
- Modified: 2026-04-10T15:32:42+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/bbp-core/2.4.1/code/templates/hello-single-user.php#L10-L20`.

```php
<?php
/**
 * Hello Elementor Single User Template
 *
 * @package Forumax
 */

defined( 'ABSPATH' ) || exit;

get_header();
?>

<main id="frmx-user-profile" class="frmx-user-profile">
	<div class="frmx-container">

		<?php do_action( 'bbp_before_main_content' ); ?>

		<?php do_action( 'bbp_template_notices' ); ?>

		<div id="bbp-user-<?php bbp_current_user_id(); ?>" class="bbp-single-user">
			<div class="entry-content">
				<?php bbp_get_template_part( 'content', 'single-user' ); ?>
			</div>
		</div>

		<?php do_action( 'bbp_after_main_content' ); ?>

	</div>
</main>

<?php get_footer(); ?>
```
