Hello @loano1,
Thank you for using the WP Travel plugin.
Please find the answer to your queries below:
1. On the Trip entry page, I see the words “Archives: Trips” and the word “Description.” but I found no way to change the word “Archives” nor how to add the description. (Trips)
Response: The feature to edit the “Archive” text in the archive page is not available, however, it can be done through a child theme.
To know how you can create and activate the child theme, please refer to the below given link:
https://wptravel.io/how-to-create-a-child-theme/
After activating the child theme in your child theme functions.php file add below-given code:
add_filter(‘get_the_archive_title’, function ($title) {
$post_type = get_post_type_object( get_post_type() );
return esc_html( $post_type->labels->singular_name );
});
2. On the trip Gallery Tab (Trip Single) the images are blurry. I did set the default WordPress thumbnail size to 600px by 600px before I uploaded the image. (I read in advance that the thumbnail sizes could cause blurry images). But somehow it is taking thumbnails of the size 150px by 150px.
Response: Please once try regenerating the thumbnail using the thumbnail regenerating plugin.
https://ww.wp.xz.cn/plugins/regenerate-thumbnails/
3. The Gallery images do not appear in one line like in your Demo nor do they float properly. They cover a huge space with massive space between some images
Response: For this, please add below given CSS by going to Additional CSS.
.wp-travel-gallery ul li{
clear: unset !important;
}
4. On AMP mobile view it works pretty well except for the gallery button on the mobile featured image. Instead of redirecting to the gallery the button does noting at all. AMP – Version
Response: When we tested in our side, everything is working as you can see in the screen record below:
https://imgur.com/a/zYJk5zJ
The testing in the emulator will always not be exact so can you please mention how you exactly replicate the issue so that we can check further.
Hope this helps.
If you have any issues further, then please post them in our official support forum below:
https://wptravel.io/support-forum/forum/wp-travel/
Thank you and stay safe.