Support

Account

Home Forums ACF PRO Remove "No image selected" text from image uploader Reply To: Remove "No image selected" text from image uploader

  • Hi @krishaamer

    Maybe you can use this code:

    function my_acf_admin_footer() {
    	
    	?>
    
    	<script type="text/javascript">
    	(function($){
            $( document ).ready(function() {
                $(".acf-image-uploader p").each(function(){
                    $(this).replaceWith($(this).html().replace("No image selected", ""));
                });
            });
    	})(jQuery);
    	</script>
    	<?php
    	
    }
    
    add_action('acf/input/admin_footer', 'my_acf_admin_footer');

    I hope this helps.