Comments DaGom started the conversationApril 29, 2020 at 10:14amHello,We would like to use custom fields in posts.But there is no way to get nor default custom fields appear in editornorAdvanced Custom fields plugin (bundled in theme) showing in MenuIs there some kind of lock to custom Fields, It's a useful ordpress functionnality and we would like to use it.Regards 295Paul repliedMay 12, 2020 at 7:07pmHello,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 areaNow the menu should be visible on the panel. Please let me know if this helps.Regards,PaulDaGom repliedMay 13, 2020 at 11:13amOk, thanks it works Sign in to reply ...
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
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:
3. Reload the admin area
Now the menu should be visible on the panel. Please let me know if this helps.
Regards,
Paul
Ok, thanks it works