Skip to content

Instantly share code, notes, and snippets.

View assoscoupa's full-sized avatar
🏠
Working from home

Paris Koutroumanos assoscoupa

🏠
Working from home
View GitHub Profile
@assoscoupa
assoscoupa / Municipalities-Of-Greece.csv
Last active September 22, 2023 23:41
Municipalities Of Greece
Δήμος Κωδ Περιφ Ενότητας Περιφερειακή Ενότητα Κωδικός Χώρας Χώρα
Αμφιλοχίας ΑΙΤ Αιτωλοακαρνανίας GR Ελλάδα
Ακτίου-Βόνιτσας ΑΙΤ Αιτωλοακαρνανίας GR Ελλάδα
Ξηρομέρου ΑΙΤ Αιτωλοακαρνανίας GR Ελλάδα
Ιεράς Πόλεως Μεσολογγίου ΑΙΤ Αιτωλοακαρνανίας GR Ελλάδα
Αγρινίου ΑΙΤ Αιτωλοακαρνανίας GR Ελλάδα
Θέρμου ΑΙΤ Αιτωλοακαρνανίας GR Ελλάδα
Ναυπακτίας ΑΙΤ Αιτωλοακαρνανίας GR Ελλάδα
Δήμος Άργους - Μυκηνών ΑΡΓ Αργολίδας GR Ελλάδα
Ναυπλιέων ΑΡΓ Αργολίδας GR Ελλάδα
@assoscoupa
assoscoupa / Alternative Related Woocommerce Product by Attributes
Last active May 18, 2020 12:30
Alternative Related Woocommerce Product by Attributes
@assoscoupa
assoscoupa / Hide CSS class in a specific WPML language
Last active May 18, 2020 12:33
CSS Hide element from specific language WPML etc
/* Hide element from Spanish language */
.hideLang:lang(es) {display: none !important;}
This DIV will be hidden from Spanish, for instance.
1
<div class="hideLang">Hello my friend</div>
@assoscoupa
assoscoupa / Woocommerce Modify States
Last active May 18, 2020 12:34
Woo Modify States - Πχ. Μετατροπή από Περιφέρειες σε Νομούς
/**
* Add or modify States https://docs.woocommerce.com/document/addmodify-states/
*/
add_filter( 'woocommerce_states', 'custom_woocommerce_states' );
function custom_woocommerce_states( $states ) {
$states['XX'] = array(
'XX1' => 'State 1',
'XX2' => 'State 2'
@assoscoupa
assoscoupa / Remove string from wordpress post with SQL query
Last active May 18, 2020 12:35
Remove string from wordpress post with SQL query
// Όταν θέλω να αφαιρέσω πχ το {loadposition banner_con}
// Info: https://digwp.com/2010/03/remove-replace-content-wordpress-database/
UPDATE rg_posts SET post_content = REPLACE ( post_content, '{loadposition banner_con}', '' );
@assoscoupa
assoscoupa / Woocommerce Make Greece GR State-County Mandatory
Last active July 8, 2024 08:47
Woocommerce Make Greece GR State/County Mandatory
/* By deafault State fields for Greece is not mandatory.
If you want to change it to mandatory, add this code snippet into function.php.
I found this solutions there: https://www.mootpoint.org/blog/woocommerce-make-uk-county-field-required/ */
add_filter( 'woocommerce_get_country_locale', 'mp_change_locale_field_defaults');
function mp_change_locale_field_defaults($countries) {
$countries['GR']['state']['required'] = true;
return $countries;
@assoscoupa
assoscoupa / WooCommerce: Remove related products when up-sell products are defined
Last active May 18, 2020 12:34
WooCommerce: Remove related products when up-sell products are defined