下記サイトを作りました。
http://xn--gckwa7lxc270ys3wd.com/
お買い上げ金額により、北海道と沖縄のみ送料無料になる条件が異なります。
これを実現させたいのですが、試しに下記コードをfunction.phpに入れましたがエラーが出ます。
正しいやり方をご教授ください。
<?php
add_filter( ‘usces_filter_getShippingCharge’, ‘or_getShippingCharge’, 10, 3);
function or_getShippingCharge($charge) {
global $usces;
$total = $usces->get_total_price( $cart );
$japcustompost = $usces->get_jap_custompost( $entry );
if (($japcustompost == “北海道”) && ($total < 11000)) {
$charge = 1500;
}else if (($japcustompost == “沖縄県”) && ($total < 11000)) {
$charge = 1500;
}else if (($japcustompost == “沖縄県”) && ($total > 11000)) {
$charge = 0;
}else if (($japcustompost == “北海道”) && ($total > 11000)) {
$charge = 0;
}else if($total > 10000){
$charge = 0;
}else if($total < 10000){
$charge = 1000;
}
return $charge;
}
?>