You can call add_image_size() again to update the existing image size. Assuming it is called medium_large (Events Manager Pro is a paid plugin so not very much people have it) you can do something like:
<?php
function update_medium_large_size_wpse216595() {
add_image_size( 'medium_large', 600, 255, array( 'center', 'top' ) );
}
add_action( 'init', 'update_medium_large_size_wpse216595', 11 );
Then you will need to regenerate the thumbnails. Although I am not 100% sure that init is the right hook for the job.
p.s. You can check this if you are using a child theme.
p.s. 2. I am not sure that I understand the center cropping correctly. You many need to play with it a bit. array( 'center', 'top' ) will crop the picture in the center (‘trimming’ the right and left part).
Related Posts:
- image_size with respect to aspect ratios
- Missing feature image link function
- Define custom Page Template without its own .php file
- Does hooking into the same action multiple times drain memory?
- Extract image from content and set it as the featured image
- Issue with get_theme_mod returning a blank value instead of the saved value
- Show modified time if post is actually modified
- How to create thumbnails for PDF uploads?
- Get recent posts with thumbnail
- How to display the_post_thumbnail if a post has one or otherwise display the first image in a post?
- Linking thumbnail to full size image
- Why are image thumbnails cropped proportionally (not per dimensions)?
- Add a Post Thumbnail to an RSS Feed with custom size
- How do I change parameters without changing the core
- Is it possible to be more page/post specific with admin_enqueue_script?
- Why are image thumbnails cropped proportionally (not per dimensions)?
- Issue adding text after short description on product pages Woocommerce [closed]
- Customize “the_posts_pagination” and put list instead div
- Setting featured image with function, 1 part not working
- img width and height attributes being set by get_the_post_thumbnail
- How to display a default image for post thumbnail using functions.php?
- Gravity Forms – Using a Form to Pre-populate A Gravity Form [closed]
- Getting Featured Image Caption to Only Show if Populated
- Can’t check if a post has thumbnail adding filter to get_post_metadata()
- Running a script before absolutely everything
- Add Featured image column into wordpress admin on pages AND posts
- How to display post content instead of excerpt
- Add function to every post?
- Warning: call_user_func_array() expects parameter 1 to be a valid callback, function ‘greenday_head’ not found or invalid function name
- Post thumbnail not showing in WP admin area for custom post type
- Overwriting Parent Theme’s Image Sizes
- Backstretch.js and thumbnail sizes to reduce loading time
- Which action does wp_update_user triggers?
- How can I get my Script to work on the Login page?
- Trigger a custom function when option are saved in admin area
- Execute a ultimate member action when user role is updated
- Add other social networks to TwentyNineteen_SVG_Icons class in child theme?
- How to use wp_trash_post (or wp_delete_post) for deleting a (or all) post(s) from custom post type?
- show first 3 thumbnails of posts in different sizes [closed]
- Set spesific size of featured images
- Pass parameter to hooked function using custom page template
- It does not work concatenation in function.php
- Hook into a function without a hook?
- Is my code correct to enqueue CSS on a specific page?
- Can’t properly set the_title add_filter to show short_URL
- How to retrieve the current post’s generated featured image size?
- Check if the image size is available and if not use ‘full’ image size
- Filter yoast canonical add_action priority [closed]
- How do I hook into the container of wp_nav_menu?
- Remove links from the_content when using filters wp_trim_excerpt
- Is there a way to prevent a function/method from being called outside a specific hook?
- Function not working inside of a function in functions.php
- Can set_post_thumbnail be used to remove a thumbnail?
- Adding code before post title with the_title produces weird results
- Add back in child theme what the parent theme removed with remove_action
- This code works, but the way I integrated it is breaking the media uploader. How can I integrate it properly?
- How to add a new image size and apply it to posts only?
- Add Adsense code between job listings – wp job manager plugin
- update_post_meta is Updating with two page id
- Change custom featured image size in twentythirteen child theme
- How to conditionally add a widget via a hook in functions.php
- resizing of thumbnails not working
- How to place a div inside a function that creates a div
- show all the posts thumbnails
- include w_thumbnail_src in function?
- How to add or delete default value theme options while activate and deactivate theme
- WordPress comment processing . Default unapproved comments detection before posting
- Warning at top of website & top menu gone
- Custom image sizes showing in Classic Editor only when upladed directly to post
- Which filter fires upon setting a featured image
- Can I use ‘Featured Image’ as a hero image and a thumbnail?
- Save_post – Warning: Cannot modify header information
- How to use WP conditional tag in a functions.php with OCEANWP Theme?
- custom error message for empty username and password using authenticate filter not working
- remove_filter function to unhook twentysixteen parent theme function
- Get post_author email for Zapier Integration
- Featured image on archive page based on post type
- How can I stop the hook from breaking the login/logout function?
- Printing medium sized image
- Sticky – Featured Image
- WordPress hooks to call a function inside a construct
- WordPress undefined function error on using add_action() in functions.php
- How to echo the translated custom field?
- Remove Featured Images from Posts Older Than a Certain Date
- Function the_content
- save_post hook – headers already sent?
- Full size image option removing problem
- Add custom fields after post/page title
- Force resize for all video content
- Unhook the comment form in Buddypress
- Image width issue in IE [closed]
- Why functions metaboxes is causing White Screen in Admin [closed]
- How to hook wp_mail to add a custom email as BCC for each sent email?
- Is mytheme_post_thumbnails() still necessary?
- Get category of post inside save_post hook
- Create section wit form
- Log in and out using custom pages, no logout confirmation and redirects for logging in and out 2023
- Copy and Modified WooCommerce function is_coupon_valid [closed]
- How can I able to exclude ‘Category’ and ‘Tag’ slug from the URL in WordPress without reloading to new site?
- No src and sizes attributes present on WordPress thumbnail images; the smallest image size is loaded irregardless of viewport size