Support

Account

Forum Replies Created

  • Have you tried to set the parent?
    Set up the menu slug for the main page

    if( function_exists('acf_add_options_page') ) {
    	$page = acf_add_options_page(array(
    		'page_title' 	=> 'My Options Page',
    		'menu_title' 	=> 'My Options Page',
    		'menu_slug' 	=> 'options-settings',
    		'capability' 	=> 'edit_posts',
    		'redirect' 	=> false
    	));
    }

    and then add it as a parent

    if( function_exists('acf_add_options_sub_page') ){
    	acf_add_options_sub_page(array(
    		'title' => 'Din aftale',
    		'parent' => 'options-settings'
    	));
    
    	acf_add_options_sub_page(array(
    		'title' => 'Reklamer',
    		'parent' => 'options-settings'
    	));
  • Okay, I tried to manual copy the upload folder to the specific multisite uploads folder, but it’s still not working.

  • Yeah, it’s the same with a normal image field.
    After translating, the field isn’t empty, it looks like an image is set, but nothing shown.

    Maybe a problem with the image reference? Because of the different upload folders of the multisite?

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