ตัวอย่างคำสั่ง Remove Action ของ SeedConfirm ในหน้า Checkout Page

// remove seedconfirm in checkout page
function remove_scf_checkout() {
	if ( class_exists( 'WooCommerce' ) ) {
		if ( is_checkout() ) {
			wp_dequeue_script( 'seed-confirm' );
			wp_dequeue_script( 'seed-confirm-modal' );
			wp_dequeue_script( 'seed-confirm-form' );
			wp_dequeue_script( 'jquery-ui-datepicker' );
		}
	}
}
add_action( 'wp_print_scripts', 'remove_scf_checkout', 100 );
Did this answer your question? Thanks for the feedback There was a problem submitting your feedback. Please try again later.

Still need help? Contact Us Contact Us