Quantcast
Channel: WordPress.org Forums » All Topics
Viewing all articles
Browse latest Browse all 59525

Please add filter for initial_country

$
0
0

Replies: 0

Please, add filter into class-country-code-selector-public.php.

Into function ccs_enable_on_woocomerce:

initialCountry: "<?php echo apply_filters('ccs_initial_country', ''); ?>",

Then we can do this:

function ccs_initial_country() {
	return 'cz';
}

add_filter('ccs_initial_country', 'ccs_initial_country', 10, 0);

Viewing all articles
Browse latest Browse all 59525

Trending Articles