Home › Forums › Feature Requests › Customize the "add to gallery" button label › Reply To: Customize the "add to gallery" button label
Hi @virgodesign
Thanks for the feature request.
I’ll add this to my list, but not sure when it would be added in.
For now, please use some jQuery to modify the text like so:
<?php
add_action('acf/input/admin_footer', 'my_acf_admin_footer');
function my_acf_admin_footer() {
?>
<script type="text/javascript">
(function($) {
$('.acf-field-54ae017167b45 a.add-attachment').text('Build your slider (select up to 4 images)');
})(jQuery);
</script>
<?php
}
?>
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.