Home › Forums › Bug Reports › default_page_template_title › Reply To: default_page_template_title
Hi @misterr
I’m sorry I didn’t realize that ‘default_page_template_title’ is a hook. Mostly, It’s because I never used it or had an issue about it. In the future, please explain it in more detail because vaguely explaining the issue won’t help both you and I. If you could add the docs page about that hook, that would be great too.
Regarding your issue, I’m afraid ACF adds the default template name manually. You can see it in “wp-content/plugins/advanced-custom-fields-pro/admin/field-group.php” line 805:
'default' => __("Default Template",'acf'),
If you want to fix it, you can change that line with this code:
'default' => apply_filters( 'default_page_template_title', __( 'Default Template' ), 'quick-edit' ),
Keep in mind that the changes in the core files will be disappeared on plugin updates.
If you want it to be permanent, please open a new ticket here: http://support.advancedcustomfields.com/new-ticket.
I hope this helps.
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.