Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author kaggdesign

    (@kaggdesign)

    Yes, you can use the following code:

    
    function dequeue_cyr2lat_acf_script() {
    	wp_dequeue_script( 'cyr-to-lat-acf-field-group' );
    }
    
    add_action( 'admin_enqueue_scripts', 'dequeue_cyr2lat_acf_script', PHP_INT_MAX );
    

    But may I know – why?

    Thread Starter antonvyukov

    (@antonvyukov)

    I need this because I use my similar function and my transliteration rules are different from those in your plugin. And changing the character mapping table each time is difficult. )

    Plugin Author kaggdesign

    (@kaggdesign)

    You can change transliteration table by filter, as it is described in the readme.txt.

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Disable ACF support?’ is closed to new replies.