• Is there a shortcode to insert a fallback country or phrase in case the system is unable to determine the visitor country?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi.

    Maybe you can use the geot/fallback_iso_code hook

    <?php
    function timersys_fallback_iso_code( $iso_code = '' ) {
    	return 'US';
    }
    add_filter( 'geot/fallback_iso_code', 'timersys_fallback_iso_code' );

    Regards

    Thread Starter dannyogolo

    (@dannyogolo)

    Where can i add this code?

    Hi.

    You can add it in your functions.php of your theme or using any snippet PHP plugin.

    Regards

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Shortcode for Fallback country?’ is closed to new replies.