Support

Account

Home Forums General Issues ACF form post object field not loading Reply To: ACF form post object field not loading

  • It had something to do with hiding the dashboard function for loggedin users.

    function disable_dashboard() {
        if (!is_user_logged_in()) {
            return null;
        }
        if (!current_user_can('administrator') && is_admin()) {
    		$link = get_author_posts_url( get_current_user_id() );
    		
            wp_redirect($link);
            exit;
        }
    }
    add_action('admin_init', 'disable_dashboard');

    i remvoed this now and its working 🙂