settings_button.html
17 lines
| 1 | <script type="text/javascript"> |
| 2 | jQuery(function($){ |
| 3 | $('#mailpoet_woocommerce_customize_button') |
| 4 | .insertAfter($('#email_notification_settings-description')) |
| 5 | .show(); |
| 6 | }); |
| 7 | </script> |
| 8 | |
| 9 | <p id="mailpoet_woocommerce_customize_button" style="display: none;"> |
| 10 | <a class="button button-primary" |
| 11 | href="?page=mailpoet-newsletter-editor&id=<%= woocommerce_template_id %>" |
| 12 | data-automation-id="mailpoet_woocommerce_customize_button" |
| 13 | > |
| 14 | <%= _x('Customize with MailPoet', 'Button in WooCommerce settings page') %> |
| 15 | </a> |
| 16 | </p> |
| 17 |