Support

Account

Home Forums General Issues Child and Parent Theme calling acf.php error Reply To: Child and Parent Theme calling acf.php error

  • Hi @info@orgspring.com

    Sounds like all you need to do is check if acf.php has already been included.

    Something like this should work:

    
    <?php 
    
    if( !class_exists('acf') )
    {
    	include_once('...');
    }
    
    ?>