# learnpress/4.3.9.1/templates/checkout/order-comment.php

LearnPress – WordPress LMS Plugin for Create and Sell Online Courses, version 4.3.9.1. 19 lines.

- Page: https://pluginprobe.com/plugins/learnpress/4.3.9.1/code/templates/checkout/order-comment.php
- Raw: https://pluginprobe.com/plugins/learnpress/4.3.9.1/raw/templates/checkout/order-comment.php
- Modified: 2026-06-10T02:53: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/learnpress/4.3.9.1/code/templates/checkout/order-comment.php#L10-L20`.

```php
<?php
/**
 * Template for displaying order comment.
 *
 * This template can be overridden by copying it to yourtheme/learnpress/checkout/order-comment.php.
 *
 * @author  ThimPress
 * @package  Learnpress/Templates
 * @version  4.0.0
 */

defined( 'ABSPATH' ) || exit();
?>

<div class="learn-press-checkout-comment">
	<h4><?php esc_html_e( 'Additional Information', 'learnpress' ); ?></h4>
	<textarea name="order_comments" class="order-comments" placeholder="<?php esc_attr_e( 'Note to administrator', 'learnpress' ); ?>"></textarea>
</div>

```
