You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -12,7 +12,7 @@ Create a personalized user experience based on location.
12
12
13
13
== Description ==
14
14
15
-
WP Engine GeoIP integrates with the variables on your WP Engine site to display content catered to the visitor’s location. With the ability to access variables from as broad as country to as specific as latitude and longitude, your website can now display geographically relevant content.
15
+
WP Engine GeoTarget integrates with the variables on your WP Engine site to display content catered to the visitor’s location. With the ability to access variables from as broad as country to as specific as latitude and longitude, your website can now display geographically relevant content.
16
16
17
17
18
18
= Geo-Marketing =
@@ -42,7 +42,7 @@ This plugin will only function on your [WP Engine](http://wpengine.com/plans/?ut
42
42
1. Upload `wpengine-geoip` to the `/wp-content/plugins/` directory
43
43
2. Activate the plugin through the 'Plugins' menu in WordPress
44
44
45
-
Please view the 'Other Notes' tab to see all of the available GeoIP shortcodes
45
+
Please view the 'Other Notes' tab to see all of the available GeoTarget shortcodes
46
46
47
47
48
48
== Location Variable Shortcodes ==
@@ -62,7 +62,7 @@ You can use any of the following location variable shortcodes to return the vari
62
62
63
63
5) Postal Code: `[geoip-postalcode]`
64
64
65
-
* This variable is only available in the US due to limitations with the location data GeoIP uses
65
+
* This variable is only available in the US due to limitations with the location data GeoTarget uses
You can use the following URL parameters to test how your localized content will appear to visitors from various geographic locations. You can add any of the parameters below to any URL of a page using the GeoIP shortcodes or API calls:
183
+
You can use the following URL parameters to test how your localized content will appear to visitors from various geographic locations. You can add any of the parameters below to any URL of a page using the GeoTarget shortcodes or API calls:
184
184
185
185
Spoof visitor from the state of Texas:
186
186
@@ -209,9 +209,9 @@ No, this will only work within the WP Engine environment. This will not work for
209
209
210
210
2) Are there any other restrictions to using this plugin?
211
211
212
-
Yes. Even though the GeoIP variables on the server are available to Business, Premium and Enterprise customers, you will still need to reach out to the [Support Team](https://my.wpengine.com/support#general-issue) to fully enable GeoIP for your site.
212
+
Yes. On Startup, Growth, and Scale plans the GeoTarget feature is available as an add-on. For Business and Premium plans or once you have added the GeoTarget add-on you will need to reach out to the [Support Team](https://my.wpengine.com/support) to fully enable GeoTarget for your site.
213
213
214
-
For Personal and Professional customers who are interested in GeoIP, please contact the [Support Team](https://my.wpengine.com/support#general-issue) as well.
214
+
You can read our full GeoTarget activation guide [here](https://wpengine.com/support/geoip-personalizing-content-based-geography/).
Copy file name to clipboardExpand all lines: wpengine-geoip.php
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
<?php
2
2
/**
3
-
* Plugin Name: WP Engine GeoIP
3
+
* Plugin Name: WP Engine GeoTarget
4
4
* Version: 1.2.3
5
5
* Description: Create a personalized user experienced based on location.
6
6
* Author: WP Engine
@@ -31,7 +31,7 @@ function geoip_append_content( $content ) {
31
31
}
32
32
33
33
/**
34
-
* Base class for the GeoIP plugin
34
+
* Base class for the GeoTarget plugin, GeoTarget was formerly called GeoIP
35
35
*/
36
36
class GeoIp {
37
37
@@ -178,7 +178,7 @@ public function enqueue_admin_js() {
178
178
* Here we extract the data from headers set by nginx -- lets only send them if they are part of the cache key
179
179
*
180
180
* @since 0.1.0
181
-
* @return array All of the GeoIP related environment variables available on the current server instance
181
+
* @return array All of the GeoTarget related environment variables available on the current server instance
182
182
*/
183
183
publicfunctionget_actuals() {
184
184
@@ -206,7 +206,7 @@ public function get_actuals() {
206
206
*
207
207
* @since 1.1.0
208
208
* @param array $geos Array of values for the user's location.
209
-
* @return array Modified version of the GeoIP location array based on url parameters
209
+
* @return array Modified version of the GeoTarget location array based on url parameters
210
210
*/
211
211
publicfunctionget_test_parameters( $geos ) {
212
212
@@ -620,7 +620,7 @@ public function action_admin_init_check_plugin_dependencies() {
620
620
621
621
if ( $this->helper_should_notice_show( $notice_key ) ) {
622
622
/* translators: Tells users that the plugin won't automatically work if they're not in the right setup */
623
-
$notice = __( 'WP Engine GeoIP requires a <a href="%s">WP Engine account</a> with GeoIP enabled for full functionality. Only testing queries will work on this site.', 'wpengine-geoip' );
623
+
$notice = __( 'WP Engine GeoTarget requires a <a href="%s">WP Engine account</a> with GeoTarget enabled for full functionality. Only testing queries will work on this site.', 'wpengine-geoip' );
0 commit comments