Last active
October 25, 2023 11:15
-
-
Save Preciousomonze/03c54e7e0cc0e11ca709832bc757810b to your computer and use it in GitHub Desktop.
Phone Validator Custom Filters and How to Use π
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* List of Phone Validator for WooCommerce custom Filters and how to use. | |
* | |
* Please feel free to add more to this, and don't forget to add your name to contributors, if you want to. | |
* | |
* @author Precious Omonzejele (CodeXplorer π€Ύπ½ββοΈπ₯π¦π€‘) | |
* @contributors ...add name(s) here | |
*/ | |
/** | |
* Separate dial code | |
* | |
* @since 1.2.0 | |
* @return bool | |
*/ | |
add_filter( 'wc_pv_separate_dial_code', '__return_true' ); | |
/** | |
* Set Default Country | |
* | |
* Incase you do not want to use the WooCommerce store country as default | |
* | |
* @param string $value the country's abbr e.g NG for Nigeria | |
* @since 1.2.0 | |
* @return bool | |
*/ | |
function pekky_cx_default_country( $value ){ | |
$value = 'es'; // Nigeria π³π¬ | |
return $value; | |
} | |
add_filter( 'wc_pv_set_default_country', 'pekky_cx_default_country' ); | |
/** | |
* Use your WooCommerce store country as default | |
* | |
* @since 1.2.0 | |
* @return bool | |
*/ | |
add_filter( 'wc_pv_use_wc_default_store_country', '__return_true' ); | |
/** | |
* Allowed countries | |
* | |
* @param array $countries initials | |
* @since 1.2.0 | |
* @return array | |
*/ | |
function pekky_cx_allowed_countries( $countries ) { | |
$countries = array( 'Ng', 'gh' ); | |
// Or add to allowed countries. | |
// $countries[] = 'ng'; ππ½ββοΈπ¦. | |
// Or get all countries from woocommerce. | |
// $countries = array_keys( WC()->countries->get_countries() ); | |
return $countries; | |
} | |
add_filter( 'wc_pv_allowed_countries', 'pekky_cx_allowed_countries' ); | |
/** | |
* Preferred countries | |
* | |
* @param array $countries initials | |
* @since 1.3.0 | |
* @return array | |
*/ | |
function pekky_cx_preferred_countries( $countries ){ | |
$countries = array('ng','gh','es'); | |
return $countries; | |
} | |
add_filter( 'wc_pv_preferred_countries', 'pekky_cx_preferred_countries' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@Preciousomonze is there a filter to hide the country selector? I's a little irelevant when you ship/bill to only one country.