• Resolved mattmuirhead

    (@mattmuirhead)


    Is there a way of changing the current users location via the URL.

    I.e. we want to be able force users to the £ store from an external link, regardless of actual location, like: example.com?location=GB

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Oscar Gare

    (@oscargare)

    Try this snippet

    function custom_manual_country_param(){
    	if ( isset( $_REQUEST['location'] ) && $_REQUEST['location'] ){
    		$_REQUEST['wcpbc-manual-country'] = $_REQUEST['location'];
    	}
    }
    add_action('init', 'custom_manual_country_param' );

    I added These Function In my theme and i tried mydomain.com?location=GB but not working

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Change country with URL’ is closed to new replies.