# fluent-cart/1.6.3/app/Views/frontend/not-found.php

FluentCart A New Era of eCommerce – Faster, Lighter, and Simpler, version 1.6.3. 41 lines.

- Page: https://pluginprobe.com/plugins/fluent-cart/1.6.3/code/app/Views/frontend/not-found.php
- Raw: https://pluginprobe.com/plugins/fluent-cart/1.6.3/raw/app/Views/frontend/not-found.php
- Modified: 2025-11-20T13:11:16+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/fluent-cart/1.6.3/code/app/Views/frontend/not-found.php#L10-L20`.

```php
<?php if ( ! defined( 'ABSPATH' ) ) exit; ?>
<div class="fct-not-found-container" role="main" aria-labelledby="fct-not-found-title">
    <div class="fct-not-found-content">
        <?php if (!empty($notFoundImg)): ?>
            <img class="fct-not-found-image"
                 src="<?php echo esc_url($notFoundImg ?? ''); ?>"
                 alt="<?php esc_attr_e('Page not found illustration', 'fluent-cart'); ?>"
            >
        <?php endif; ?>

        <?php if (isset($title)): ?>
            <h1 id="fct-not-found-title" class="fct-not-found-title">
                <?php echo wp_kses_post($title); ?>
            </h1>
        <?php endif; ?>

        <?php if (isset($text)): ?>
            <p class="fct-not-found-text">
                <?php echo wp_kses_post($text); ?>
            </p>
        <?php endif; ?>

        <?php if (isset($buttonText)): ?>
            <a
                    href="<?php echo empty($buttonUrl) ? esc_url(home_url()) : esc_url($buttonUrl); ?>"
                    class="fct-not-found-button"
                    role="button"
                    aria-label="<?php
                    printf(
                        /* translators: %s is the button text/destination */
                        esc_attr__('Return to %s', 'fluent-cart'),
                        esc_html($buttonText)
                    );
                    ?>"
            >
                <?php echo esc_html($buttonText); ?>
            </a>
        <?php endif; ?>
    </div>
</div>

```
