| 1 |
<?php |
| 2 |
|
| 3 |
echo ' |
| 4 |
<tr class =givewp-payment-gateway-fee-recovery-recommendation-row> |
| 5 |
<td colspan="10"> |
| 6 |
<div class="givewp-payment-gateway-fee-recovery-recommendation inner-panel"> |
| 7 |
<div> |
| 8 |
<img src="' . esc_url(GIVE_PLUGIN_URL . 'build/assets/dist/images/list-table/light-bulb-icon.svg') . '" |
| 9 |
alt="light-bulb-icon" /> |
| 10 |
<p>'; |
| 11 |
_e( |
| 12 |
'Dramatically reduce the impact of gateway credit card processing fees by providing donors the option to cover that cost regardless of the gateway selected.', |
| 13 |
'give' |
| 14 |
); |
| 15 |
echo '</p> |
| 16 |
<a href="https://docs.givewp.com/feerecovery-settings-gateway" target="_blank" |
| 17 |
class="givewp-payment-gateway-fee-recovery-recommendation_external">'; |
| 18 |
_e('Recover your fees', 'give'); |
| 19 |
echo '<img |
| 20 |
src="' . esc_url( |
| 21 |
GIVE_PLUGIN_URL . 'build/assets/dist/images/list-table/external-link-icon.svg' |
| 22 |
) . '" |
| 23 |
alt="external-link" /> |
| 24 |
</a> |
| 25 |
</div> |
| 26 |
<button type="button" class="givewp-payment-gateway-fee-recovery-recommendation_close"> |
| 27 |
<img src="' . esc_url(GIVE_PLUGIN_URL . 'build/assets/dist/images/admin/close-icon.svg') . '" |
| 28 |
alt="close-message" /> |
| 29 |
</button> |
| 30 |
</div> |
| 31 |
</td> |
| 32 |
</tr>'; |
| 33 |
?> |
| 34 |
|