plain
5 years ago
admin-cancelled-order.php
5 years ago
admin-failed-order.php
5 years ago
admin-new-order.php
5 years ago
customer-completed-order.php
5 years ago
customer-invoice.php
5 years ago
customer-new-account.php
5 years ago
customer-note.php
5 years ago
customer-on-hold-order.php
5 years ago
customer-processing-order.php
5 years ago
customer-refunded-order.php
5 years ago
customer-reset-password.php
5 years ago
email-addresses.php
5 years ago
email-customer-details.php
5 years ago
email-downloads.php
5 years ago
email-footer.php
5 years ago
email-header.php
5 years ago
email-order-details.php
5 years ago
email-order-items.php
5 years ago
email-styles.php
5 years ago
email-footer.php
57 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Email Footer |
| 4 | * |
| 5 | * This template can be overridden by copying it to yourtheme/woocommerce/emails/email-footer.php. |
| 6 | * |
| 7 | * HOWEVER, on occasion WooCommerce will need to update template files and you |
| 8 | * (the theme developer) will need to copy the new files to your theme to |
| 9 | * maintain compatibility. We try to do this as little as possible, but it does |
| 10 | * happen. When this occurs the version of the template file will be bumped and |
| 11 | * the readme will list any important changes. |
| 12 | * |
| 13 | * @see https://docs.woocommerce.com/document/template-structure/ |
| 14 | * @package WooCommerce\Templates\Emails |
| 15 | * @version 3.7.0 |
| 16 | */ |
| 17 | |
| 18 | defined( 'ABSPATH' ) || exit; |
| 19 | ?> |
| 20 | </div> |
| 21 | </td> |
| 22 | </tr> |
| 23 | </table> |
| 24 | <!-- End Content --> |
| 25 | </td> |
| 26 | </tr> |
| 27 | </table> |
| 28 | <!-- End Body --> |
| 29 | </td> |
| 30 | </tr> |
| 31 | </table> |
| 32 | </td> |
| 33 | </tr> |
| 34 | <tr> |
| 35 | <td align="center" valign="top"> |
| 36 | <!-- Footer --> |
| 37 | <table border="0" cellpadding="10" cellspacing="0" width="600" id="template_footer"> |
| 38 | <tr> |
| 39 | <td valign="top"> |
| 40 | <table border="0" cellpadding="10" cellspacing="0" width="100%"> |
| 41 | <tr> |
| 42 | <td colspan="2" valign="middle" id="credit"> |
| 43 | <?php echo wp_kses_post( wpautop( wptexturize( apply_filters( 'woocommerce_email_footer_text', get_option( 'woocommerce_email_footer_text' ) ) ) ) ); ?> |
| 44 | </td> |
| 45 | </tr> |
| 46 | </table> |
| 47 | </td> |
| 48 | </tr> |
| 49 | </table> |
| 50 | <!-- End Footer --> |
| 51 | </td> |
| 52 | </tr> |
| 53 | </table> |
| 54 | </div> |
| 55 | </body> |
| 56 | </html> |
| 57 |