Okay
  Public Ticket #2381781
Using custom Fields
Closed

Comments

  • DaGom started the conversation

    Hello,

    We would like to use custom fields in posts.

    But there is no way to get  nor 

    default custom fields appear in editor

    nor

    Advanced Custom fields plugin (bundled in theme) showing in Menu

    Is there some kind of lock to custom Fields, It's a useful ordpress functionnality and we would like to use it.

    Regards

  •  291
    Paul replied

    Hello,

    To manually enable the ACF menu, please follow the steps below:

    1. Create a new child theme ( https://uxbarn.ticksy.com//article/8649 )

    2. In the "functions.php" file of the child theme, add this code:

    function kathy_customize_acf() {
            add_filter( 'acf/settings/show_admin', '__return_true', 99 );
            add_filter( 'acf/settings/show_updates', '__return_false' );
        }

    3. Reload the admin area

    Now the menu should be visible on the panel. Please let me know if this helps.

    Regards,
    Paul

  • DaGom replied

    Ok, thanks it works