Προσθήκη νομών σε Woocommerce
Μπορείτε πολύ εύκολα να προσθέσετε τους νομούς στο Woocommerce ( States ) αντιγράφοντας τον παρακάτω κώδικα στο functions.php add_filter( ‘woocommerce_states’, ‘custom_woocommerce_states’ ); function custom_woocommerce_states( $states ) { $states[‘GR’] = array( ‘GR1’ => ‘ΕΒΡΟΥ’, ‘GR2’ => ‘ΑΓΙΟ ΟΡΟΣ’, ‘GR3’ => ‘ΑΘΗΝΩΝ’, ‘GR4’ => ‘ΑΙΤΩΛΟΑΚΑΡΝΑΝΙΑΣ’, ‘GR5’ => ‘ΑΝΑΤΟΛΙΚΗΣ ΑΤΤΙΚΗΣ’, ‘GR6’ => ‘ΑΡΓΟΛΙΔΑΣ’, ‘GR7’ => ‘ΑΡΚΑΔΙΑΣ’, ‘GR8’…