Support

Account

Home Forums Add-ons Options Page Options page not showing up

Solved

Options page not showing up

  • Hey guys,

    finally bought ACF PRO and I’m really happy with it.

    Anyway the options page won’t show up whatever I try.

    My Setup:
    – Multisite (working on site id 2, not the root)
    – Included ACF Pro within my theme like described here
    – Custom Fields work fine. Even pro features like repeatable fields etc.
    – Adding the option codes from here don’t work. Nothing shows up.

    Whatever I try no option page shows up. I tried to add the code below the functions.php comment header before anything else will be loaded. nothing happened. Tried it on several other positions, nothing too.

    Any suggestions?

  • Hello? Any suggestions or support would be nice 🙂

  • c’mon please. No support here from the devs?

  • Hi @ddjjmm

    It is pretty strange that the code is not working one your case. Adding the code provided here to my functions.php always does it for me.

    Hmm… May be you could share your code so that I can have something to look at.

  • Hello! I have the same problem.
    My wordpress version is 4.3.1.

    @ddjjmm
    , please tell me how to solve this problem.
    Edit: I saw my mistake 🙂

  • @ddanova

    Don’t know exactly what the problem was but this finally works:

    if( function_exists('acf_add_options_page') ) {
    
        $page = acf_add_options_page(array(
            'page_title' 	=> __('My Theme Options', 'productify'),
            'menu_title' 	=> __('My Theme', 'productify'),
            'menu_slug' 	=> 'my-theme-options',
            'capability' 	=> 'edit_posts',
            'redirect' 	    => false
        ));
    
    }
Viewing 7 posts - 1 through 7 (of 7 total)

The topic ‘Options page not showing up’ is closed to new replies.