@ericmurrel
It’s possible that the length of the announcement content is throwing off some of the announcement orders. Can you try adding some test content with a bit of length to some of the items that are out of order?
As for the image resolutions, are you trying to use a full sized, larger image size? We do have a filter built into the plugin allowing you to filter the image size that is used.
One option is the use the full image size for the announcements (this could also possibly help with the out of order items on the timeline):
function custom_timeline_express_announcement_image_size( $image_size, $post_id ) {
$image_size = 'full';
return $image_size;
}
add_filter( 'timeline-express-announcement-img-size', 'custom_timeline_express_announcement_image_size', 10, 2 );
https://www.wp-timelineexpress.com/documentation/how-do-i-use-a-larger-announcement-thumbnail-size/
You can also reference other image sizes outside of ‘full’, such as ‘medium’, and ‘large’.
Another option is to define your own image size using the WordPress core function add_image_size, and then use the above filter to reference your new image size.
If you go this route, it’s worth noting that you will need to regenerate your thumbnail images, so the newly defined image size is present. These image sizes are generated when an image is uploaded, so only new images you upload would have the new custom image size present. To regenerate thumbnails I would recommend Regenerate Thumbnails.
Also, feel free to shoot us an email using the contact page on our site now that you are a pro user if you’d like to take things off of the www.remarpro.com support forums.