Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Support Patrick – WPMU DEV Support

    (@wpmudevsupport12)

    Hi @dbengston

    First of all, sorry for the delay here.

    I was able to replicate this issue, and we will report to the plugin developers.

    However, I’m afraid we can’t give an estimated time to release the fix, I checked the issue and it seems will require some custom coding to avoid the problem and I couldn’t find a simple workaround.

    Best Regards
    Patrick Freitas

    Thread Starter dbengston

    (@dbengston)

    Thanks, Patrick!

    I can continue to temporarily disable Hustle to do edits that include ACF time fields. I can make that work until you can roll out a fix.

    Dale

    Plugin Support Patrick – WPMU DEV Support

    (@wpmudevsupport12)

    Hi @dbengston

    For a temporary solution, can you try this code as a mu-plugin?

    <?php
    
    add_action( 'admin_enqueue_scripts', function(){
    	global $pagenow;
    
    	if ( 'post.php' === $pagenow ) {
    		wp_deregister_script( 'hui_scripts' );
    	}	
    }, 9999 );

    If you are not familiar with mu-plugins, you can find a guide on
    https://premium.wpmudev.org/docs/using-wordpress/installing-wordpress-plugins/#installing-mu-plugins

    Let us know if this worked for you.

    Best Regards
    Patrick Freitas

    Plugin Support Patrick – WPMU DEV Support

    (@wpmudevsupport12)

    Hi @dbengston

    I hope you are doing well and safe!

    We haven’t heard from you in a while, I’ll mark this thread as resolved.

    Feel free to let us know if you have any additional question or problem.

    Best Regards
    Patrick Freitas

    Thread Starter dbengston

    (@dbengston)

    Hi Patrick,

    I’m sorry I have not had the opportunity to follow up on this, since I was in the process of massive content updates prior to migrating my site from staging to live. The site went up on Friday.

    I added your code to my custom functions (in a plugin), and it resolved the conflict with ACF. Thanks you so much for the great support!

    Best,
    Dale

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Hustle conflict with Advanced Custom Fields’ is closed to new replies.