• Resolved zitrusblau

    (@zitrusblau)


    Hey Volkmar,

    we switched from Manual Image Crop to your plugin. Looks awesome!
    Now a feature we slightly miss is custom image size titles, this is the settings screen of Manual Image Crop:
    https://jumpshare.com/v/XmdQIs3J30RwWS5gjEBf

    Custom titles displayed in the backend for our customers instead of the image size name is a bit more descriptive and helps them to decide which image size is used where on the site. Maybe even a short description would be a nice idea (maybe through action/filter hooks).

    what do you think?

    • This topic was modified 7 years, 8 months ago by zitrusblau.
    • This topic was modified 7 years, 8 months ago by zitrusblau.
Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Volkmar Kantor

    (@volkmar-kantor)

    Hi there,
    you can change the naming of the image-sizes with the following code:

    add_filter( 'image_size_names_choose', 'my_custom_sizes' );
    function my_custom_sizes( $sizes ) {
    	$sizes = array_merge( $sizes, array(
    		'my-image-size-unique-name' => 'My readable name',
    		) );
    	return $sizes;
    }
    Thread Starter zitrusblau

    (@zitrusblau)

    great, thanks! ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Suggestion: Custom Image Size Titles’ is closed to new replies.