Browse
For agents
About
WP Click to Chat – Email, Live Chat, Call & Book Now Buttons
/
2.3.4
WP Click to Chat – Email, Live Chat, Call & Book Now Buttons
v2.3.4
Switch version
trunk
1.2.2
2.0
2.1
2.2
2.3
2.3.1
2.3.2
2.3.3
2.3.4
2.3.6
Overview
Code
support-chat
/
functions.php
functions.php
in WP Click to Chat – Email, Live Chat, Call & Book Now Buttons 2.3.4, at functions.php
9 lines
297 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
(
!
function_exists
(
'
njt_wp_saio_get_user_ip
'
)
)
{
3
function
njt_wp_saio_get_user_ip
(
)
4
{
5
$
ip
=
$
_SERVER
[
'
HTTP_CLIENT_IP
'
]
?
$
_SERVER
[
'
HTTP_CLIENT_IP
'
]
:
(
$
_SERVER
[
'
HTTP_X_FORWARDED_FOR
'
]
?
$
_SERVER
[
'
HTTP_X_FORWARDED_FOR
'
]
:
$
_SERVER
[
'
REMOTE_ADDR
'
]
)
;
6
return
$
ip
;
7
}
8
}
9