dwarv00
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: wp-admin/admin-ajax.phpThank you so much , that was the case , i did not notice that , maybe i did not clear cache before when i deleted it to debug , again many thanks
Thanks a lot 🙂 this was helpful , i’m turning this to resolved
best regards
Forum: Plugins
In reply to: [SEOPress - AI SEO Plugin & On-site SEO] Weird handling of XML sitemap URLdid you find the solution ? i have the same problem , lets say my site is
seofix.com , it will not work unless i do /home , and if i do /fr or /ar , it will also not work unless i do /fr/ , /ar/ ,, please help ?
Forum: Plugins
In reply to: [WooCommerce] woocommerce shipping zonesResolved , so after spending 2 hours searching this is the solution if any one need it
open your function.php file on your child theme ( avoid the parent of course because it will be wiped out after update )
add this
add_filter( ‘woocommerce_states’, ‘custom_woocommerce_states’ );
function custom_woocommerce_states( $states ) {
$states[‘XX’] = array(
‘XX1’ => ‘State 1’,
‘XX2’ => ‘State 2’
);return $states;
}change $states[‘XX’] with country ( in my case algeria = DZ )
change ‘XX1’ => ‘State 1’
‘XX1’ will be your state code ex: CA
‘State 1’ will be name of state ex : Californiai hope this will help some others 🙂