PluginProbe
Forumax – AI Powered Advanced Community Forum Plugin / 2.4.0
Forumax – AI Powered Advanced Community Forum Plugin v2.4.0
2.4.4 2.4.3 2.4.2 2.4.1 2.4.0 trunk 1.0.8 1.1.0 1.2.1 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 1.3.0 1.3.1 1.3.2 1.3.3 1.4.0 1.4.1 2.0.0 2.1.0 All 29 releases
bbp-core / templates / hello-single-user.php

hello-single-user.php in Forumax – AI Powered Advanced Community Forum Plugin 2.4.0, at templates/hello-single-user.php

31 lines 598 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Hello Elementor Single User Template
4 *
5 * @package Forumax
6 */
7
8 defined( 'ABSPATH' ) || exit;
9
10 get_header();
11 ?>
12
13 <main id="frmx-user-profile" class="frmx-user-profile">
14 <div class="frmx-container">
15
16 <?php do_action( 'bbp_before_main_content' ); ?>
17
18 <?php do_action( 'bbp_template_notices' ); ?>
19
20 <div id="bbp-user-<?php bbp_current_user_id(); ?>" class="bbp-single-user">
21 <div class="entry-content">
22 <?php bbp_get_template_part( 'content', 'single-user' ); ?>
23 </div>
24 </div>
25
26 <?php do_action( 'bbp_after_main_content' ); ?>
27
28 </div>
29 </main>
30
31 <?php get_footer(); ?>