Hi,
You can follow this documentation to know how to override the plugin templates https://wpautolistings.com/docs/templates/
The gallery image code is located in the file /wp-content/plugins/auto-listings/templates/single-listing/gallery.php
find the thumbnail size al-sml on line 31. Hope that helps.
Hello,
Thank you for answer. I meant this place – https://ibb.co/NpJX3r5
We want to change listings image aspect ratio (make it higher).
Thank you!
Hi,
If you want to change the listing image dimension, please try to add this PHP code to the file functions.php in the theme/child theme folder
add_action( 'init', 'custom_listing_image_size', 99 );
function custom_listing_image_size() {
remove_image_size( 'al-sml', 400, 250, array( 'center', 'center' ) );
add_image_size( 'al-sml', 400, 400, array( 'center', 'center' ) );
}
Then re-generate the thumbnail with this plugin https://ww.wp.xz.cn/plugins/regenerate-thumbnails/. Let me know how it goes.