# bbp-core/2.4.1/includes/Elementor/Search/ajax-sarch-results.php

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

- Page: https://pluginprobe.com/plugins/bbp-core/2.4.1/code/includes/Elementor/Search/ajax-sarch-results.php
- Raw: https://pluginprobe.com/plugins/bbp-core/2.4.1/raw/includes/Elementor/Search/ajax-sarch-results.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/includes/Elementor/Search/ajax-sarch-results.php#L10-L20`.

```php
<?php
/**
 * AJAX Search Results Container
 *
 * The `id` is dynamically scoped per widget instance using $frmx_result_id,
 * which is set in the parent Search widget's render() method to prevent
 * conflicts when multiple instances appear on the same page.
 *
 * @var string $frmx_result_id Unique result container ID for this widget instance.
 */
$frmx_result_id = isset( $frmx_result_id ) ? $frmx_result_id : 'bbpc-search-result';
?>
<div
	id="<?php echo esc_attr( $frmx_result_id ); ?>"
	class="bbpc-search-result-container"
	data-noresult="<?php esc_attr_e( 'No Results Found', 'forumax' ); ?>"
></div>
```
