PluginProbe
GiveWP – Donation Plugin and Fundraising Platform / 4.17.0
GiveWP – Donation Plugin and Fundraising Platform v4.17.0
4.17.0 4.16.9 4.16.8.1 4.16.8 4.16.7.2 4.16.7.1 4.16.7 4.16.6.1 4.16.6 4.16.5.1 4.16.5 4.16.4 4.16.3 4.16.2 4.16.1 4.16.0 4.15.5 4.15.4 4.15.3 4.15.2 4.15.1 4.15.0 2.3.0 2.3.1 2.3.2 All 256 releases
give / src / Promotions / InPluginUpsells / resources / views / payment-gateway.php

payment-gateway.php in GiveWP – Donation Plugin and Fundraising Platform 4.17.0, at src/Promotions/InPluginUpsells/resources/views/payment-gateway.php

34 lines 1.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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