PluginProbe
WP Click to Chat – Email, Live Chat, Call & Book Now Buttons / 2.1
WP Click to Chat – Email, Live Chat, Call & Book Now Buttons v2.1
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
support-chat / functions.php

functions.php in WP Click to Chat – Email, Live Chat, Call & Book Now Buttons 2.1, at functions.php

9 lines 297 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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_FORWARDE‌​D_FOR']?$_SERVER['HTTP_X_FORWARDED_FOR']:$_SERVER['REMOTE_ADDR']);
6 return $ip;
7 }
8 }
9