| 1 |
<?php |
| 2 |
/** |
| 3 |
* The template used to display the suggested amounts field. |
| 4 |
* |
| 5 |
* Override this template by copying it to yourtheme/charitable/form-fields/content.php |
| 6 |
* |
| 7 |
* @author WP Charitable LLC |
| 8 |
* @package Charitable/Templates/Form Fields |
| 9 |
* @since 1.4.14 |
| 10 |
* @version 1.4.14 |
| 11 |
*/ |
| 12 |
|
| 13 |
if ( ! array_key_exists( 'content', $view_args['field'] ) ) { |
| 14 |
return; |
| 15 |
} |
| 16 |
|
| 17 |
echo $view_args['field']['content']; |
| 18 |
|