• Resolved af3

    (@af3)


    WC: 7.7.0 / wordpress 6.2.2

    Ada dua suggestions / problem:

    1. Saat menghitung tarif shipping di shopping cart, ongkir tidak dihitung kalau pengguna tidak masukkan kode pos. Pls make kode pos satu input mandatori and not allowed to be empty.
    2. Dalam WC 7.7.0/WP 6.2.2, setelah ongkir dihitung, pengguna tidak dapat click opsi kurier i.e. JNE – OKE, JNE REG, JNE – YES — i think ada problem dengan focus() element js?? Plugin lain sudah dihapus tapi problem gak bisa click radio button masih ada.
Viewing 1 replies (of 1 total)
  • Thread Starter af3

    (@af3)

    #2 sudah oke… cache problem ??

    Untuk #1, saya buat ini untuk deactivate checkout bila ongkir tidak dipilih kerna kode pos tidak dimasukkan.

    function disable_checkout_button_no_shipping() {
    
        $chosen_shipping_methods = WC()->session->get( 'chosen_shipping_methods' );
    
        // remove button if there is no chosen shipping method
        if( empty( $chosen_shipping_methods ) ) {
            remove_action( 'woocommerce_proceed_to_checkout', 'woocommerce_button_proceed_to_checkout', 20 );
        }
    }
    add_action( 'woocommerce_proceed_to_checkout', 'disable_checkout_button_no_shipping', 1 );
    
Viewing 1 replies (of 1 total)
  • The topic ‘Tak bisa pilih option JNE di checkout’ is closed to new replies.