Browse
For agents
About
YayMail – WooCommerce Email Customizer
/
4.3.3
YayMail – WooCommerce Email Customizer
v4.3.3
Switch version
4.4.4
4.4.3
4.4.2
4.4.1
trunk
1.9.6
2.1.4
2.1.5
3.2.2
3.2.6
3.2.7.1
3.2.8.1
3.2.9
3.3
3.3.1
3.3.4
3.3.5
3.3.6
3.3.7
3.3.8
3.3.9
3.4
3.4.1
3.4.2
3.4.3
All 55 releases
Overview
Code
yaymail
/
templates
/
shortcodes
/
billing-address
/
sample.php
sample.php
in YayMail – WooCommerce Email Customizer 4.3.3, at templates/shortcodes/billing-address/sample.php
17 lines
415 B
Find file
t
No matching file
Up and down to move
Enter to open
Esc to close
Raw
Download
Zip
View raw
1
<
?
php
2
if
(
!
defined
(
'
ABSPATH
'
)
)
{
3
exit
;
4
}
5
6
$
address
=
'
<span>John Doe <br>YayCommerce <br>7400 Edwards Rd <br>Edwards Rd</span>
'
;
7
$
billing_phone
=
'
(910) 529-1147
'
;
8
?
>
9
<
address
>
10
<
?
php
echo
wp_kses_post
(
$
address
)
;
?
>
11
<
br
/
>
12
<
a
href
=
'
tel:<?php echo esc_attr( $billing_phone ); ?>
'
style
=
"
font-family: inherit
"
>
13
<
?
php
echo
esc_html
(
$
billing_phone
)
;
?
>
14
<
/
a
>
15
<
br
>
16
<
/
address
>
17