donation-options-form-editor.php
9 months ago
payment-gateway.php
1 year ago
sale-banners.php
2 years ago
stellarwp-sale-banner.php
2 years ago
donation-options-form-editor.php
23 lines
| 1 | <?php |
| 2 | |
| 3 | echo '<div class="givewp-donation-options inner-panel"> |
| 4 | <div> |
| 5 | <img src="' . GIVE_PLUGIN_URL . 'build/assets/dist/images/list-table/light-bulb-icon.svg' . '" alt="light-bulb-icon" /> |
| 6 | <p>'; |
| 7 | _e( |
| 8 | 'Did you know? You can provide donors with flexible recurring donation options! Recurring donors give up to 30% more.', |
| 9 | 'give' |
| 10 | ); |
| 11 | echo '</p> |
| 12 | <a href="https://docs.givewp.com/recurring-legacy" target="_blank" class="givewp-donation-options_external">'; |
| 13 | _e('Get more donations', 'give'); |
| 14 | echo '<img src="' . GIVE_PLUGIN_URL . 'build/assets/dist/images/list-table/external-link-icon.svg' . '" alt="external-link" /> |
| 15 | </a> |
| 16 | </div> |
| 17 | <button type="button" class="givewp-donation-options_close"> |
| 18 | <img src="' . GIVE_PLUGIN_URL . 'build/assets/dist/images/admin/close-icon.svg' . '" alt="close-message" /> |
| 19 | </button> |
| 20 | </div>'; |
| 21 | |
| 22 | ?> |
| 23 |