# easy-invoice/2.4.1/templates/invoices/single.php

Easy Invoice – Invoice Generator, PDF Quotes &amp; Payments, version 2.4.1. 22 lines.

- Page: https://pluginprobe.com/plugins/easy-invoice/2.4.1/code/templates/invoices/single.php
- Raw: https://pluginprobe.com/plugins/easy-invoice/2.4.1/raw/templates/invoices/single.php
- Modified: 2026-09-15T12:31:20+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/easy-invoice/2.4.1/code/templates/invoices/single.php#L10-L20`.

```php
<?php
/**
 * Superseded by templates/document/single.php.
 *
 * Both public documents render through one page now. This file stays so
 * anything that resolved this path directly keeps working; override the
 * shared page at {theme}/easy-invoice/document/single.php instead.
 *
 * @package Easy_Invoice
 * @subpackage Templates
 * @deprecated 2.4.0
 */

if ( ! defined( 'ABSPATH' ) ) {
    exit;
}

$ei_document_template = easy_invoice_locate_template( 'document/single.php' );
if ( '' !== $ei_document_template ) {
    include $ei_document_template;
}

```
