Wordpress tabanlı bir e-ticaret sitesi yönetiyorum. Gönderimde 200 TL üzerine kargo ücretsiz oluyor. Diğer türlü kargo sabit ücrette.
Şimdi sepetimiz 200 TL üzerini geçince ücretsiz gönderim olarak radio buton ortaya çıkıyor ancak hem seçili olmuyor hem de eski sabit fiyatın radio butonu orada kalma devam ediyor.
Woocommerce cart kodları şu şekilde;
if ( 1 < count( $available_methods ) ) {
printf( '', $index, esc_attr( sanitize_title( $method->id ) ), esc_attr( $method->id ), checked( $method->id, $chosen_method, false ) ); // WPCS: XSS ok.
} else {
printf( '', $index, esc_attr( sanitize_title( $method->id ) ), esc_attr( $method->id ) ); // WPCS: XSS ok.
}
printf( '', $index, esc_attr( sanitize_title( $method->id ) ), wc_cart_totals_shipping_method_label( $method ) ); // WPCS: XSS ok.
do_action( 'woocommerce_after_shipping_rate', $method, $index );
?>
Burada neyi değiştirmem gerek?