1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
<?php /** * Customer back-in-stock notification email. * * This template can be overridden by copying it to yourtheme/woocommerce/emails/customer-stock-notification.php. * * HOWEVER, on occasion WooCommerce will need to update template files and you * (the theme developer) will need to copy the new files to your theme to * maintain compatibility. We try to do this as little as possible, but it does * happen. When this occurs the version of the template file will be bumped and * the readme will list any important changes. * * @see https://woocommerce.com/document/template-structure/ * @package WooCommerce\Templates\Emails * @version 10.2.0 */
// Exit if accessed directly. if ( ! defined( 'ABSPATH' ) ) { exit; }
/** * Hook: woocommerce_email_header. * * @since 10.2.0 * * @hooked WC_Emails::email_header() Output the email header */ do_action( 'woocommerce_email_header', $email_heading, $email );
?>
<table border="0" cellpadding="0" cellspacing="0" id="notification__container"><tr><td>
<div id="notification__into_content"> <?php echo wp_kses_post( wpautop( wptexturize( $intro_content ) ) ); ?> </div>
<div id="notification__product"> <?php /** * Hook: woocommerce_email_stock_notification_product. * * @since 10.2.0 * * @hooked \Automattic\WooCommerce\Internal\StockNotifications\Templates::email_product_image - 10 * @hooked \Automattic\WooCommerce\Internal\StockNotifications\Templates::email_product_title - 20 * @hooked \Automattic\WooCommerce\Internal\StockNotifications\Templates::email_product_attributes - 30 * @hooked \Automattic\WooCommerce\Internal\StockNotifications\Templates::email_product_price - 40 */ do_action( 'woocommerce_email_stock_notification_product', $product, $notification, $plain_text, $email ); ?>
<a href="<?php echo esc_url( $button_link ); ?>" id="notification__action_button"> <?php echo esc_html( $button_text ); ?> </a> </div>
<table id="notification__footer"><tr><td>
<?php echo esc_html( __( 'You have received this message because your e-mail address was used to sign up for stock notifications on our store.', 'woocommerce' ) );
if ( ! $is_guest ) { // translators: %1$s placeholder is the unsubscribe link, %2$s placeholder is the Unsubscribe text link. $unsubscribe_link_tag = sprintf( '<a href="%1$s" id="notification__unsubscribe_link">%2$s</a>', esc_url( $unsubscribe_link ), _x( 'click here', 'unsubscribe cta for stock notifications for existing customers', 'woocommerce' ) ); // translators: %s placeholder is the text part from above. echo wp_kses_post( sprintf( __( 'To manage your notifications, %s to log in to your account.', 'woocommerce' ), $unsubscribe_link_tag ) ); } else { // translators: %1$s placeholder is the unsubscribe link, %2$s placeholder is the Unsubscribe text link. $unsubscribe_link_tag = sprintf( '<a href="%1$s" id="notification__unsubscribe_link">%2$s</a>', esc_url( $unsubscribe_link ), _x( 'click here', 'unsubscribe cta for stock notifications for guests', 'woocommerce' ) ); // translators: %s placeholder is the text part from above. echo wp_kses_post( sprintf( __( 'To stop receiving these messages, %s to unsubscribe.', 'woocommerce' ), $unsubscribe_link_tag ) ); } ?> <br><br> <?php
/** * Show user-defined additional content - this is set in each email's settings. */ if ( $additional_content ) { echo wp_kses_post( wpautop( wptexturize( $additional_content ) ) ); } ?> </td></tr></table>
</td></tr></table>
<?php
/** * Hook: woocommerce_email_footer. * * @since 10.2.0 * * @hooked WC_Emails::email_footer() Output the email footer */ do_action( 'woocommerce_email_footer', $email );
|