• Resolved ayrez

    (@ayrez)


    Halo pak sofyan.
    Gimana caranya woongkir libraries agar hanya dimuat di page tertentu saja?
    Semisal checkout page atau cart page saja?
    Karena woongkir memuat beberapa file seperti /woongkir/data/subdistrict.json?t=xx pada semua page yang cukup mengurangi loading speed.
    Terimakasih pak sofyan.

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter ayrez

    (@ayrez)

    Saya menambahkan conditional tags seperti di bawah, sementara berjalan dg baik dan ga ada kendala.
    Terimakasih pak, this is the best ongkir plugin I’ve ever used.

    	if ( is_checkout() || is_cart() ) {
    		// Enqueue main scripts.
    		$js_url = WOONGKIR_URL . 'assets/js/woongkir-frontend.min.js';
    		if ( $is_debug ) {
    			$js_url = add_query_arg( array( 't' => time() ), str_replace( '.min', '', $js_url ) );
    		}
    
    		wp_enqueue_script(
    			'woongkir-frontend', // Give the script a unique ID.
    			$js_url, // Define the path to the JS file.
    			array( 'jquery', 'wp-util', 'select2', 'selectWoo', 'lockr.js' ), // Define dependencies.
    			WOONGKIR_VERSION, // Define a version (optional).
    			true // Specify whether to put in footer (leave this true).
    		);
    
    		woongkir_localize_script( 'woongkir-frontend', 'woongkir_params' );
    	}
    Plugin Author Sofyan Sitorus

    (@sofyansitorus)

    Mungkin perlu juga di enable pada halaman formulir my shipping/billing address agar form bisa berfungsi dengan baik,

    Thread Starter ayrez

    (@ayrez)

    Mungkin di update berikutnya bisa di perbaiki agar script hanya di-eneble pada page yang membutuhkan saja pak.

    saya masukkan di theme functions.php

    
    // Deregister woongkir
    add_action( 'wp_print_scripts', 'woongk_deregister_javascript', 100 );
    function woongk_deregister_javascript() {
        if ( ! is_checkout() && ! is_cart() && ! is_page_template('form-billing.php') ) {
            wp_deregister_script( 'woongkir-frontend' );
        }
    }
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Load plugin only on certain page(s)’ is closed to new replies.