| 1 |
<?php |
| 2 |
/** |
| 3 |
* The Template for displaying the docs sidebar. |
| 4 |
* |
| 5 |
* @since 1.0.0 |
| 6 |
* |
| 7 |
* @package woo-additional-terms |
| 8 |
*/ |
| 9 |
|
| 10 |
defined( 'ABSPATH' ) || exit; |
| 11 |
defined( 'WC_VERSION' ) || exit; |
| 12 |
|
| 13 |
?> |
| 14 |
<div class="woo-additional-terms-docs"> |
| 15 |
<h2 class="woo-additional-terms-docs-title"> |
| 16 |
<?php echo esc_html_x( 'Learn Settings', 'upsell', 'woo-additional-terms' ); ?> |
| 17 |
</h2> |
| 18 |
<p> |
| 19 |
<?php echo esc_html_x( 'Click on the link below to explore a wealth of information about the plugin’s settings, including step-by-step tutorials, configuration options, and troubleshooting guides. Everything you need to harness the full potential of the plugin is just a click away!', 'upsell', 'woo-additional-terms' ); ?> |
| 20 |
</p> |
| 21 |
<p class="woo-additional-terms-docs-cta"> |
| 22 |
<a href="<?php echo esc_url( $args['uri'] ); ?>" target="_blank" rel="noopener noreferrer nofollow"> |
| 23 |
<?php echo esc_html_x( 'Visit the documentation', 'upsell', 'woo-additional-terms' ); ?> |
| 24 |
</a> |
| 25 |
</p> |
| 26 |
</div> |
| 27 |
|
| 28 |
<?php |
| 29 |
/* Omit closing PHP tag at the end of PHP files to avoid "headers already sent" issues. */ |
| 30 |
|