For the foreseeable future, WP Engine teams cannot log in to www.ads-software.com.
Where plugin updates are made available by WP Engine directly, plugins owned by WP Engine may be updated using guidance shared on their related web pages.
]]>I’m running this plugin on WP Engine hosting and Php8 is a bit more strict on how it handles wp_localize_script().
The third parameter is expected to be an array, but a string is passed instead. This produces a depreciation notice throughout wp-admin.
It’s very easy to fix thanks to Query Monitor – just edit one line.
In wpengine-geoip/class-geoip.php, line 177 has a call to wp_localize_script().
Wrapping the third parameter in an array fixes it.
So it should read:
wp_localize_script( self::TEXT_DOMAIN . ‘-admin-js’, ‘nonce’, array(wp_create_nonce( self::TEXT_DOMAIN ) ));
If that change gets pushed to the repo, then all users of the plugin will benefit when the php8 switchover happens.
Hi:
We are getting notifications in Wordfence that this plugin has been abandoned. Is that actually the case?
Wordfence Notification:
Hi there,
Good day.
Is it possible for this plugin to automatically display the image of product or product or content depending on the autodetect of user location. And also without using woocommerce plugin because we will redirect it to the shopify store.
Example:
The product1 to product5 will not be displayed if the location of the customer that visits the website is in USA but if he is in the Australia those products will be displayed. ANd each product or image with content will be redirect to the shopify store.
Thank you.
]]>I have a client in Hawaii who wants some content to only show up for people in Hawaii.
There are two notification bars at the top of the site. One for not-Hawaii and one for Hawaii only.
My client says that they are seeing the not-hawaii notification bar.
`[geoip-content state=”AL, AZ, AR, CA, CO, CT, DE, FL, GA, ID, IL, IN, IA, KS, KY, LA, ME, MD, MA, MI, MN, MS, MO, MT, NE, NV, NH, NJ, NM, NY, NC, ND, OH, OK, OR, PA, RI, SC, SD, TN, TX, UT, VT, VA, WA, WV, WI, WY”][ditty_news_ticker id=”9452″][/geoip-content][geoip-content state=”hi”][ditty_news_ticker id=”9831″][/geoip-content]’
]]>I am trying to use WPengines GeoTarget to send visitors to the respective language versions of my website.
I’ve tried several code examples, including the one provided by WPengine themselves but all the ones I’ve tried end up in a redirect loop as many others people have found. I settled on this one as it seemed to be the most comprehensive and the only one I could get working.
I managed to get a single language version working for our UK site:
/** GEOIP REDIRECT but allow bots **/
function country_geo_redirect() {
$country = getenv('HTTP_GEOIP_COUNTRY_CODE');
$agent = $_SERVER['HTTP_USER_AGENT'];
$host = $_SERVER['SERVER_NAME'] . $_SERVER['REQUEST_URI'];
if ( $host == 'example.com/en-gb/' || isset($_SERVER['HTTP_USER_AGENT']) && preg_match('/bot|crawl|slurp|spider/i', $_SERVER['HTTP_USER_AGENT']) || $country != "GB" ) {
return;
}
wp_redirect('https://example.com/en-gb/', 301);
exit;
}
add_action('init', 'country_geo_redirect');
However, when I finally got the syntax right for the elseif statements, the UK version doesn’t redirect anywhere anymore, and neither do any of the others:
function country_geo_redirect() {
$country = getenv('HTTP_GEOIP_COUNTRY_CODE');
$agent = $_SERVER['HTTP_USER_AGENT'];
$host = $_SERVER['SERVER_NAME'] . $_SERVER['REQUEST_URI'];
if ( $host == 'example.com/en-gb/' || isset($_SERVER['HTTP_USER_AGENT']) && preg_match('/bot|crawl|slurp|spider/i', $_SERVER['HTTP_USER_AGENT']) || $country != "GB" ) {
wp_redirect('https://example.com/en-gb/', 301);
exit;
} elseif ( $host == 'example.com/zh-hans/' || isset($_SERVER['HTTP_USER_AGENT']) && preg_match('/bot|crawl|slurp|spider/i', $_SERVER['HTTP_USER_AGENT']) || $country != "CN" ) {
wp_redirect('https://example.com/zh-hans/', 301);
exit;
} elseif ( $host == 'example.com/ja/' || isset($_SERVER['HTTP_USER_AGENT']) && preg_match('/bot|crawl|slurp|spider/i', $_SERVER['HTTP_USER_AGENT']) || $country != "JP" ) {
wp_redirect('https://example.com/ja/', 301);
exit;
}
}
add_action('init', 'country_geo_redirect');
Any idea where I’m going on here? This has been driving me nuts!
]]>Hi!
As of v1.2.7, the plugin is using class-geoip.php
file as the loader instead of wpengine-geoip.php
. So, if you’re checking whether the plugin is active or not via loader file, do not forget to use the new file. Or it’s better to use the existence of GeoIp
class if you don’t want to run into issues in the future.
Mentioning such changes in the Changelog would prevent this kind of problems.
Thank you
]]>Plugin installed but didn’t activated..
]]>Any idea how to add cookie to these scripts so that there’s redirect only once, on first visit? So users still could change their region if want to later on?
https://zealth.net/redirect-users-based-on-country-using-wp-engines-geotargeting/
https://www.ads-software.com/support/topic/redirect-based-on-location-example-solved/
Any idea whether this approach is safe with wp rocket cache? Or should i look in to this instead https://wptest.means.us.com/country-geolocation-wp-rocket/
]]>I am trying to set up wildcard redirection based on country.
I have .com website and .ca website with exact same page paths. The only difference people will see if the price/tax difference. That’s why 2 different website.
example.com/somepage
should redirect to
example.ca/somepage
Does anybody else use WP Engine’s GeoTargeting plugin + the Autoptimize caching plugin?
I realized as soon as I enabled the GeoTargeting functionality, my cahce explodes to over 22gigs in less than 12 hours, most likely due to the multi-tiered Evercache system that WP Engine refers to…
Just curious if anybody has had issues with that or simply clearing the cache all the time.
]]>This is a modification to the code created by @areimann. It’s designed to check against an array of countries. This specific version is to check whether the user is in an area under GDPR and direct them to a “Location not available” page, because that’s something a lot of people may be looking to accomplish right now. It could easily be modified to direct users from a group of nations or locations to a different version of a website. Thanks, @areimann, for creating such useful code!
/**
* Redirect EU users to "website not available" site.
*/
function wpe_country_code_redirect() {
// Verify that the WPEngine Geo IP plugin is available.
if ( ! class_exists( '\WPEngine\GeoIp' ) ) {
return;
}
// EU country code
$eu_country_code = array('AT', 'BE', 'BG', 'HR', 'CY', 'CZ', 'DK', 'EE', 'FI', 'FR', 'DE', 'GR', 'HU', 'IE', 'IT', 'LV', 'LT', 'LU', 'MT', 'NL', 'PL', 'PT', 'RO', 'SK', 'SI', 'ES', 'SE', 'GB');
// URL to Location Unavailable page.
$gdpr_url = 'https://www.mywebsite.com/location-unavailable/';
// Instantiate GeoIp class.
$geo = WPEngine\GeoIp::instance();
// Get current country code.
$user_country_code = $geo->country();
// If the current user is accessing the website from the
// domestic country code, then redirect to Location Unavailable page.
if (in_array($user_country_code, $eu_country_code)){
wp_redirect( $gdpr_url );
exit;
}
}
add_action( 'init', 'wpe_country_code_redirect' );
]]>
I would have posted this to solve someone else’s issue below but it was closed. My team needed this and I figured it would be nice to share.
<?php
/**
* Redirect international users from domestic to international website.
*/
function wpe_country_code_redirect() {
// Verify that the WPEngine Geo IP plugin is available.
if ( ! class_exists( '\WPEngine\GeoIp' ) ) {
return;
}
// Domestic country code
$domestic_country_code = 'US';
// URL to international version of website.
$international_url = 'https://www.what_ever_site.international';
// Instantiate GeoIp class.
$geo = WPEngine\GeoIp::instance();
// Get current country code.
$user_country_code = $geo->country();
// If the current user is not accessing the website from the
// domestic country code, then redirect to international version.
if ( $domestic_country_code !== $user_country_code ) {
wp_redirect( $international_url );
exit;
}
}
add_action( 'init', 'wpe_country_code_redirect' );
]]>
Hi there,
We’re displaying results depending an a users location.
What we’re finding is the user location is normally being set 5 to 10Km away from where they are.
Just wondering if there is something that we are missing.
Thanks in advance,
D
Hello!
I have added the GeoTarget plugin to my site using the suggestions and options others have used in this forum. The goal is to do a full site redirect to the corresponding site based on the visitor’s country. I’ve connected with WP Engine and they checked the setup of the buckets and they let me know that everything in the back end is correct.
Our challenge is that visiting the site using tools like GeoPeeker or ShotSherpa displays the primary, US site, regardless of the selected countries. However, when we spoof the country in the address bar — using yourdomain.com/?geoip&country=AU — we are successfully redirected to the correct URL.
I’m posting the function we’ve added to the top of the functions.php file, in case there is something in the code itself that is causing the redirection / IP recognition to fail.
Any assistance or resources you can provide is greatly appreciated. Please also let me know if I need to clarify / add any information.
function country_geo_redirect() {
$geo = WPEngine\GeoIp::instance();
if ( 'UK' === $geo->country() ) {
wp_redirect( 'https://mysite.com/uk/', 301 );
exit;
} else if ( 'CA' === $geo->country() ) {
wp_redirect( 'https://mysite.com/ca/', 301 );
exit;
} else if ( 'IE' === $geo->country() ) {
wp_redirect( 'https://mysite.com/ie/', 301 );
exit;
} else if ( 'AU' === $geo->country() ) {
wp_redirect( 'https://mysite.com/au/', 301 );
exit;
}
}
add_action('init', 'country_geo_redirect');
]]>
I am trying to implement a sitewide redirect to a subdomain based on the user’s country.
I found a sample code showing how to do this, and have modified it for my domain and placed it at the end of my theme’s functions.php file (before the “?>”) but I seem to be stuck in a redirect loop. This is the error I see in the error log when I use the code below:
PHP Parse error: syntax error, unexpected ‘;’ in /nas/content/live/petersengames3/wp-content/themes/seohub/functions.php on line 212
Here are the instructions I found elsewhere on this forum:
Here’s a code snippet for you to try out, drop this into your functions.php file after you customize the redirects to your domains and respective countries. We’ve seen this work well with other GeoIP Users:
function country_geo_redirect() {
$country = getenv(‘HTTP_GEOIP_COUNTRY_CODE’);
if ( $country == “US” ) {
wp_redirect( ‘https://us.domain.com’;, 301 );
exit;
} else if ( $country == “FR” ) {
wp_redirect( ‘https://fr.domain.com’;, 301 );
exit;
}
}
add_action(‘init’, country_geo_redirect’);
My website is using this plugin with no issue until I got a location name that has an apostrophe. How can I pass the url parameter with the apostrophe? I have used %27 but it’s giving me an extra slash: https://screencast.com/t/DyCG7i6ZiC
Thanks.
]]>Hello fellow WPengine GeoIP users. As someone who has limited PHP dev skills, I had a hard time finding the solution to integrating this plugin with my site. I ended up putting together a hodgepodge of code I found on various sites to get this to work the way I wanted. I am posting this here in case anyone else finds a use for this and I am looking for feedback on how I could have done this better. It is currently operating as intended but I am sure it could have been coded more optimally. For example, I would like to find a better way to hide products from shop & search that doesn’t involve me adding a tag to the product, but this works for now. Also, I don’t think setting elements to “display: none !important;” is best practice, but again, this is functioning currently.
My goal was to have my site function as an e-commerce site inside the US and to function as a catalog to anyone outside the US.
I am using the code below to hide pricing, add to cart, certain CSS elements on specific pages, hide specific products from search and shop loop, and various other plugin functionality.
Plugins that were involved: ConvertPlug, Affirm, WooCommerce, WooCommerce MSRP pricing, WooCommerce Catalog Visibility Options, WooCommerce Advanced Product Labels.
I tried to comment on the code to explain what does what, if anyone has questions I will answer if possible.
I used this plugin to add the code to my site Code Snippets. It was my first experience with it and it seems a lot easier than adding code to your functions.php file, especially if you don’t have a child theme. Can’t recommend this plugin enough if you’re doing any custom work like this.
TLDR: Heres some code.
add_action('init', 'custom_visibility_in');
function custom_visibility_in() {
$country = do_shortcode('[geoip-country]');
if ($country !== 'US') {
remove_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_price', 10 ); // Removes price from shop loop
remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10 ); // Removes add to cart button from shop loop
add_action( 'woocommerce_single_product_summary', 'hide_single_product_prices', 1 ); // Function to hide price on product pages based on product type (variable or simple)
add_action( 'woocommerce_single_product_summary', 'custom_visibility', 31 ); // Adds "Request a Quote" in place of "Add to Cart"
add_action( 'wp_enqueue_scripts', 'my_styles_method' ); // Adds the display: none for Advanced Labels plugin
add_action( 'wp_enqueue_scripts', 'my_styles_method_home' ); // Home & Tank page specific custom styles (.css) to hide certain divs.
add_action( 'woocommerce_product_query', 'custom_pre_get_posts_query' ); // Hides select products with a specified tag from the loop, eg 'USA'
add_action( 'pre_get_posts', 'tq_pre_get_posts' ); // Hides select products from search with a specified tag from the loop, eg 'USA'
// add_action( 'woocommerce_after_shop_loop_item', 'custom_visibility', 11 ); //commented out to keep orange button off of product loop
global $woocommerce_msrp_frontend; // Hides MSRP pricing on shop loop and product page
remove_action( 'woocommerce_single_product_summary', array( $woocommerce_msrp_frontend, 'show_msrp' ), 7 );
remove_action( 'woocommerce_after_shop_loop_item_title', array( $woocommerce_msrp_frontend, 'show_msrp' ), 9 );
global $wc_affirm_loader; // Hides Affirm messaging on product page
remove_action( 'woocommerce_single_product_summary', array( $wc_affirm_loader, 'woocommerce_single_product_summary' ), 15 );
remove_action( 'wp_enqueue_scripts', array( $wc_affirm_loader, 'possibly_enqueue_scripts' ) );
global $Smile_Slide_Ins; // Hides Convert Plug Slide in from Displaying
remove_action( 'wp_enqueue_scripts',array($Smile_Slide_Ins,'enqueue_front_scripts' ), 100);
remove_action( 'wp_footer', array( $Smile_Slide_Ins, 'load_slide_in_globally' ) );
remove_action( 'admin_enqueue_scripts',array($Smile_Slide_Ins,'enqueue_admin_scripts' ) );
remove_action( 'admin_menu',array($Smile_Slide_Ins,'add_admin_menu_page' ), 999);
remove_action( 'admin_head',array($Smile_Slide_Ins,'load_customizer_scripts' ) );
remove_action( 'init', array( $Smile_Slide_Ins, 'register_theme_templates') );
remove_filter( 'admin_body_class', array( $Smile_Slide_Ins, 'cp_admin_body_class') );
global $Smile_Modals; // Hides Convert Plug Modals + styles and scripts in head and footer
remove_action( 'wp_enqueue_scripts',array($Smile_Modals,'enqueue_front_scripts' ), 100);
remove_action( 'admin_enqueue_scripts',array($Smile_Modals,'enqueue_admin_scripts' ) );
remove_action( 'admin_menu',array($Smile_Modals,'add_admin_menu_page' ), 999);
remove_action( 'admin_head',array($Smile_Modals,'load_customizer_scripts' ) );
remove_action( 'wp_footer', array( $Smile_Modals, 'load_modal_globally' ) );
remove_action( 'init', array( $Smile_Modals, 'register_theme_templates') );
remove_filter( 'admin_body_class', array( $Smile_Modals, 'cp_admin_body_class') );
}
}
function hide_single_product_prices(){
global $product;
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_price', 10 ); // Removes price from woocommerce product page
if( ! $product->is_type('variable') ){
remove_action('woocommerce_single_product_summary','woocommerce_template_single_add_to_cart', 30 ); // If product IS NOT a variable product, remove add to cart button
} else {
remove_action( 'woocommerce_single_variation', 'woocommerce_single_variation', 10); // If product IS variable type, remove price
remove_action( 'woocommerce_single_variation', 'woocommerce_single_variation_add_to_cart_button', 20 ); // If product IS variable type, remove add to cart button
}
}
function custom_visibility() {
echo '<div id="mk-button-2" class="mk-button-container _ relative inline left"><a id="request-quote-btn" class="request-quote-btn mk-button js-smooth-scroll mk-button--dimension-flat mk-button--size-large mk-button--corner-rounded text-color-light _ relative text-center font-weight-700 no-backface letter-spacing-2 inline" href="https://www.torquefitness.com/sales-quotes/" target="_self"><span class="mk-button--text">REQUEST A QUOTE</span></a></div><br><br>';
//echo '<a href="' . get_permalink(wc_get_page_id('myaccount')) . '">' . __('Login to see prices', 'theme_name') . '</a>'; // Could be used in the future to show pricing for logged in users. Would need to add to function custom_visibility_in() to enable this.
}
function my_styles_method() {
wp_enqueue_style(
'custom-style',
get_stylesheet_directory_uri() . '/style.css'
);
$custom_css = ".br_alabel{display: none !important;}";
$custom_css_two = ".wpb_row.vc_row.vc_row-fluid.mk-fullwidth-true.attched-false.vc_custom_1491585914197.js-master-row.mk-in-viewport{display: none !important;}";
wp_add_inline_style( 'custom-style', $custom_css );
wp_add_inline_style( 'custom-style', $custom_css_two );
}
function my_styles_method_home() {
if( is_page('Home') ) {
wp_enqueue_style(
'custom-style-home',
get_stylesheet_directory_uri() . '/style.css'
);
$custom_css = "
.triple-section{
display: none !important;}";
wp_add_inline_style( 'custom-style-home', $custom_css );
}
elseif( is_page('tank-all-surface-sled') ) {
wp_enqueue_style(
'custom-style-home',
get_stylesheet_directory_uri() . '/style.css'
);
$custom_css_tank = "
.tank-title-and-paragraph .single{
display: none !important;}";
wp_add_inline_style( 'custom-style-home', $custom_css_tank );
}
}
function custom_pre_get_posts_query( $q ) {
$tax_query = (array) $q->get( 'tax_query' );
$tax_query[] = array(
'taxonomy' => 'product_tag',
'field' => 'slug',
'terms' => array( 'USA' ), // Don't display products with the tag "USA"
'operator' => 'NOT IN'
);
$q->set( 'tax_query', $tax_query );
}
/* // Only works for logged in admin users, not for anyone else... Not sure why. SD 9/25/17
function custom_pre_get_posts_query( $q ) {
if ( ! is_admin() && $q->is_main_query() ) {
$q->set('post__not_in', array(8342, 8341, 8177, 8175)); // Enter product IDs seperated with a comma to hide from International Customers
}
}
*/
function tq_pre_get_posts( $query ) {
if ( ! is_admin() && $query->is_main_query() && $query->is_search() ) {
$query->set( 'post_type', array( 'product' ) );
$tax_query = array(
array(
'taxonomy' => 'product_tag',
'field' => 'slug',
'terms' => array( 'USA' ), // put tags here you want excluded from search results
'operator' => 'NOT IN',
),
);
$query->set( 'tax_query', $tax_query );
}
}
]]>
Hello fellow WPengine GeoIP users. As someone who has limited PHP dev skills, I had a hard time finding the solution to integrating this plugin with my site. I ended up putting together a hodgepodge of code I found on various sites to get this to work the way I wanted. I am posting this here in case anyone else finds a use for this and I am looking for feedback on how I could have done this better. It is currently operating as intended but I am sure it could have been coded more optimally. For example, I would like to find a better way to hide products from shop & search that doesn’t involve me adding a tag to the product, but this works for now. Also, I don’t think setting elements to “display: none !important;” is best practice, but again, this is functioning currently.
My goal was to have my site function as an e-commerce site inside the US and to function as a catalog to anyone outside the US.
I am using the code below to hide pricing, add to cart, certain CSS elements on specific pages, hide specific products from search and shop loop, and various other plugin functionality.
Plugins that were involved: ConvertPlug, Affirm, WooCommerce, WooCommerce MSRP pricing, WooCommerce Catalog Visibility Options, WooCommerce Advanced Product Labels.
I tried to comment on the code to explain what does what, if anyone has questions I will answer if possible.
I used this plugin to add the code to my site Code Snippets. It was my first experience with it and it seems a lot easier than adding code to your functions.php file, especially if you don’t have a child theme. Can’t recommend this plugin enough if you’re doing any custom work like this.
TLDR: Heres some code.
add_action('init', 'custom_visibility_in');
function custom_visibility_in() {
$country = do_shortcode('[geoip-country]');
if ($country !== 'US') {
remove_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_price', 10 ); // Removes price from shop loop
remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10 ); // Removes add to cart button from shop loop
add_action( 'woocommerce_single_product_summary', 'hide_single_product_prices', 1 ); // Function to hide price on product pages based on product type (variable or simple)
add_action( 'woocommerce_single_product_summary', 'custom_visibility', 31 ); // Adds "Request a Quote" in place of "Add to Cart"
add_action( 'wp_enqueue_scripts', 'my_styles_method' ); // Adds the display: none for Advanced Labels plugin
add_action( 'wp_enqueue_scripts', 'my_styles_method_home' ); // Home & Tank page specific custom styles (.css) to hide certain divs.
add_action( 'woocommerce_product_query', 'custom_pre_get_posts_query' ); // Hides select products with a specified tag from the loop, eg 'USA'
add_action( 'pre_get_posts', 'tq_pre_get_posts' ); // Hides select products from search with a specified tag from the loop, eg 'USA'
// add_action( 'woocommerce_after_shop_loop_item', 'custom_visibility', 11 ); //commented out to keep orange button off of product loop
global $woocommerce_msrp_frontend; // Hides MSRP pricing on shop loop and product page
remove_action( 'woocommerce_single_product_summary', array( $woocommerce_msrp_frontend, 'show_msrp' ), 7 );
remove_action( 'woocommerce_after_shop_loop_item_title', array( $woocommerce_msrp_frontend, 'show_msrp' ), 9 );
global $wc_affirm_loader; // Hides Affirm messaging on product page
remove_action( 'woocommerce_single_product_summary', array( $wc_affirm_loader, 'woocommerce_single_product_summary' ), 15 );
remove_action( 'wp_enqueue_scripts', array( $wc_affirm_loader, 'possibly_enqueue_scripts' ) );
global $Smile_Slide_Ins; // Hides Convert Plug Slide in from Displaying
remove_action( 'wp_enqueue_scripts',array($Smile_Slide_Ins,'enqueue_front_scripts' ), 100);
remove_action( 'wp_footer', array( $Smile_Slide_Ins, 'load_slide_in_globally' ) );
remove_action( 'admin_enqueue_scripts',array($Smile_Slide_Ins,'enqueue_admin_scripts' ) );
remove_action( 'admin_menu',array($Smile_Slide_Ins,'add_admin_menu_page' ), 999);
remove_action( 'admin_head',array($Smile_Slide_Ins,'load_customizer_scripts' ) );
remove_action( 'init', array( $Smile_Slide_Ins, 'register_theme_templates') );
remove_filter( 'admin_body_class', array( $Smile_Slide_Ins, 'cp_admin_body_class') );
global $Smile_Modals; // Hides Convert Plug Modals + styles and scripts in head and footer
remove_action( 'wp_enqueue_scripts',array($Smile_Modals,'enqueue_front_scripts' ), 100);
remove_action( 'admin_enqueue_scripts',array($Smile_Modals,'enqueue_admin_scripts' ) );
remove_action( 'admin_menu',array($Smile_Modals,'add_admin_menu_page' ), 999);
remove_action( 'admin_head',array($Smile_Modals,'load_customizer_scripts' ) );
remove_action( 'wp_footer', array( $Smile_Modals, 'load_modal_globally' ) );
remove_action( 'init', array( $Smile_Modals, 'register_theme_templates') );
remove_filter( 'admin_body_class', array( $Smile_Modals, 'cp_admin_body_class') );
}
}
function hide_single_product_prices(){
global $product;
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_price', 10 ); // Removes price from woocommerce product page
if( ! $product->is_type('variable') ){
remove_action('woocommerce_single_product_summary','woocommerce_template_single_add_to_cart', 30 ); // If product IS NOT a variable product, remove add to cart button
} else {
remove_action( 'woocommerce_single_variation', 'woocommerce_single_variation', 10); // If product IS variable type, remove price
remove_action( 'woocommerce_single_variation', 'woocommerce_single_variation_add_to_cart_button', 20 ); // If product IS variable type, remove add to cart button
}
}
function custom_visibility() {
echo '<div id="mk-button-2" class="mk-button-container _ relative inline left"><a id="request-quote-btn" class="request-quote-btn mk-button js-smooth-scroll mk-button--dimension-flat mk-button--size-large mk-button--corner-rounded text-color-light _ relative text-center font-weight-700 no-backface letter-spacing-2 inline" href="https://www.torquefitness.com/sales-quotes/" target="_self"><span class="mk-button--text">REQUEST A QUOTE</span></a></div><br><br>';
//echo '<a href="' . get_permalink(wc_get_page_id('myaccount')) . '">' . __('Login to see prices', 'theme_name') . '</a>'; // Could be used in the future to show pricing for logged in users. Would need to add to function custom_visibility_in() to enable this.
}
function my_styles_method() {
wp_enqueue_style(
'custom-style',
get_stylesheet_directory_uri() . '/style.css'
);
$custom_css = ".br_alabel{display: none !important;}";
$custom_css_two = ".wpb_row.vc_row.vc_row-fluid.mk-fullwidth-true.attched-false.vc_custom_1491585914197.js-master-row.mk-in-viewport{display: none !important;}";
wp_add_inline_style( 'custom-style', $custom_css );
wp_add_inline_style( 'custom-style', $custom_css_two );
}
function my_styles_method_home() {
if( is_page('Home') ) {
wp_enqueue_style(
'custom-style-home',
get_stylesheet_directory_uri() . '/style.css'
);
$custom_css = "
.triple-section{
display: none !important;}";
wp_add_inline_style( 'custom-style-home', $custom_css );
}
elseif( is_page('tank-all-surface-sled') ) {
wp_enqueue_style(
'custom-style-home',
get_stylesheet_directory_uri() . '/style.css'
);
$custom_css_tank = "
.tank-title-and-paragraph .single{
display: none !important;}";
wp_add_inline_style( 'custom-style-home', $custom_css_tank );
}
}
function custom_pre_get_posts_query( $q ) {
$tax_query = (array) $q->get( 'tax_query' );
$tax_query[] = array(
'taxonomy' => 'product_tag',
'field' => 'slug',
'terms' => array( 'USA' ), // Don't display products with the tag "USA"
'operator' => 'NOT IN'
);
$q->set( 'tax_query', $tax_query );
}
/* // Only works for logged in admin users, not for anyone else... Not sure why. SD 9/25/17
function custom_pre_get_posts_query( $q ) {
if ( ! is_admin() && $q->is_main_query() ) {
$q->set('post__not_in', array(8342, 8341, 8177, 8175)); // Enter product IDs seperated with a comma to hide from International Customers
}
}
*/
function tq_pre_get_posts( $query ) {
if ( ! is_admin() && $query->is_main_query() && $query->is_search() ) {
$query->set( 'post_type', array( 'product' ) );
$tax_query = array(
array(
'taxonomy' => 'product_tag',
'field' => 'slug',
'terms' => array( 'USA' ), // put tags here you want excluded from search results
'operator' => 'NOT IN',
),
);
$query->set( 'tax_query', $tax_query );
}
}
]]>
Hello,
I am trying to create site-wide redirects for two separate locations. I want to contain our UK users, if they enter .com it will redirect them to the .co.uk and vice versa if any users outside of the UK try to enter .co.uk they will be directed to .com.
I found this code:
<?php
/**
* Redirect users according to location
*/
function country_geo_redirect() {
$country = getenv(‘HTTP_GEOIP_COUNTRY_CODE’);
if ( $country == “GB” ) {
wp_redirect( ‘https://www.ggpoker.co.uk’;, 301 );
exit;
} else {
wp_redirect( ‘https://www.ggpoker.com’;, 301 );
exit;
}
}
add_action(‘init’, country_geo_redirect’);
And where is this function to be placed and how do we call the this function so it is SITEWIDE?
Any help/assistance is greatly appreciated.
Regards,
Roudy
]]>Hi,
For certain pages I have where I just need a few components or text changing, them the shortcode works fine.
For other pages I need completely different landing pages depending on the country.
So for example https://goproposal.com/pricing-uk or https://goproposal.com/pricing-usa
I found the code below in one of the other threads but wasn’t clear if that was for the entire site or whether it could be applied to specific pages too.
Cheers…
function country_geo_redirect() {
$country = getenv('HTTP_GEOIP_COUNTRY_CODE');
if ( $country == "US" ) {
wp_redirect( 'https://us.domain.com';, 301 );
exit;
} else if ( $country == "GB" ) {
wp_redirect( 'https://gb.domain.com';, 301 );
exit;
}
}
add_action('init', country_geo_redirect');
]]>
Hello author,
Is this plugin can work with w3 total cache/super cache?
because thing is that once content is cached then it will not check any condition for GEOIP
Appreciate your response
thanks
]]>We have had a few reports of users returning very specific Canadian locations even though they are clearly located in the US. It has occurred for users in California, Texas, and Arizona. It seems to be working fine for most users but for some the canadian location is returned and we are unable to figure out why. Below is the code we use to get the location, we have tried 2 methods, but neither seems to return US for all users. Is there something on an ISP level that could cause this?
$geo->country();
//TRYING WITH ENVIRONMENT VARIABLE instead
getenv(‘HTTP_GEOIP_COUNTRY_CODE’);
I got the plugin to work and have added shortcodes successfully. I’ve tested it on mobil and other devices and it works great!
But when my boss tries it on multiple devices it won’t display anything where the shortcode is. He is behind a firewall, I’m wondering if that is preventing it from working.
My question is, is it possible for cases like this, for me to display an alternative message if the geolocation isn’t going to return any result.
Thanks,
]]>Hi guys,
I’m trying to get a redirect to work which redirects all visitors from the US to a specific page. But everytime I enable the function the site throws a generic 500 error.
The code in question is:
function country_geo_redirect() {
$country = null;
if ( class_exists( 'WPEngine\GeoIp' ) ) {
??$geo = WPEngine\GeoIp::instance();
??$country = $geo->country();
}
if ( $country == "US" ) {
wp_redirect( 'https://domain.com/us', 301 );
exit;
}
}
add_action('init', __NAMESPACE__ . '\\country_geo_redirect');
The namespacing in the add_action bit is because I’m using the Sage starter theme. Any ideas of whats going on?
]]>Is there a way to have people coming from a location using a VPN to still be able to see the geo wrapped content on our site. As is, everyone that has tested the site can see the geo wrapped content except for a few people and they all seem to be on VPNs.
]]>Hello,
I was testing out some basic code to get a feel for GEOIP but when I try to spoof the url to think I’m coming from somewhere else it’s not working. It’s still showing my current zip code rather then whats in the url.
<?php
$postal_code = getenv('HTTP_GEOIP_POSTAL_CODE');
$michigan_zip_codes = array('49508', '49503');
if (in_array($postal_code, $michigan_zip_codes)) {
echo "Welcome to michigan";
} else {
echo "Hey you!";
}
?>
<pre><code><?php var_dump($michigan_zip_codes); ?></code></pre>
<pre><code>Your Zip Code: <?php var_dump($postal_code); ?></code></pre>
Then in the url I’m using this: mydomain.com/?geoip&zip=01610
I did contact WP Engine and they say the buckets are activated so they directed me here. Any help would be appreciated.
]]>Hey –
I am using this function, and I am receiving a redirect loop. Any ideas?
function country_geo_redirect() {
$country = getenv('HTTP_GEOIP_REGION');
if ( ( $country == "MO" ) && ! is_user_logged_in() ) {
wp_redirect( home_url( '/missouri-page' ) ), 301 );
exit;
}
}
add_action('init', 'country_geo_redirect' );
]]>
We want to show a different section of our landing page to different parts of Australia. It works fine on everything but Android. The offending code:
[geoip-content country="AU,NZ" region=" ACT,NT,TAS,QLD,VIC"]
some content
[/geoip-content]
[geoip-content country="AU" region="NSW,SA,WA"]
some other content
[/geoip-content]
The issue is neither of these codes are showing any content at all on Android. Am I missing something simple here? Is there a way to show a default?
]]>We implement this function to get the array of geo data:
$geo = WPEngine\GeoIp::instance();
$geodata = $geo->get_actuals();
It works fine for some time and then site crashes with this in the logs:
PHP Fatal error: Class ‘WPEngine\\GeoIp’ not found in /nas/content/live/***/wp-content/plugins/eteacher-contact-form/eteacher_contact_form.php on line 39
Can you please advise on what can be causing this?
Thank you.
]]>