# bbp-core/2.4.3/templates/feedback-no-access.php

Forumax – AI Powered Advanced Community Forum Plugin, version 2.4.3. 24 lines.

- Page: https://pluginprobe.com/plugins/bbp-core/2.4.3/code/templates/feedback-no-access.php
- Raw: https://pluginprobe.com/plugins/bbp-core/2.4.3/raw/templates/feedback-no-access.php
- Modified: 2026-01-28T15:54:38+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.3/code/templates/feedback-no-access.php#L10-L20`.

```php
<?php

/**
 * No Access Feedback Part
 *
 * @package bbPress
 * @subpackage Theme
 */

// Exit if accessed directly
defined( 'ABSPATH' ) || exit;
?>

<div id="forum-private" class="bbp-forum-content">
	<h1 class="entry-title"><?php esc_html_e( 'Private', 'forumax' ); ?></h1>
	<div class="entry-content">
		<div class="bbp-template-notice info">
			<ul>
				<li><?php esc_html_e( 'You do not have permission to view this forum.', 'forumax' ); ?></li>
			</ul>
		</div>
	</div>
</div><!-- #forum-private -->

```
