Hi,
1. Please find following code in /inc/frontend/accommodation/templates.php file.
<a href="#" data-post_id="<?php echo esc_attr( $acc_id ) ?>" class="hover-effect popup-gallery"><?php echo get_the_post_thumbnail( $acc_id, 'biggallery-thumb' ); ?></a>
Replace with following.
<a href="<?php echo esc_url( get_permalink( $acc_id ) ); ?>" data-post_id="<?php echo esc_attr( $acc_id ) ?>" class=""><?php echo get_the_post_thumbnail( $acc_id, 'biggallery-thumb' ); ?></a>
And find following code in /inc/frontend/car/templates.php file.
<a href="#" data-post_id="<?php echo esc_attr( $car_id ) ?>" class="hover-effect popup-gallery"><?php echo get_the_post_thumbnail( $car_id, 'biggallery-thumb' ); ?></a>
Replace with following.
<a href="<?php echo esc_url( get_permalink( $car_id ) ); ?>" data-post_id="<?php echo esc_attr( $car_id ) ?>" class=""><?php echo get_the_post_thumbnail( $car_id, 'biggallery-thumb' ); ?></a>
Find following code in /inc/frontend/cruise/templates.php file.
<a href="#" data-post_id="<?php echo esc_attr( $cruise_id ) ?>" class="hover-effect popup-gallery"><?php echo get_the_post_thumbnail( $cruise_id, 'biggallery-thumb' ); ?></a>
Replace with following.
<a href="<?php echo esc_url( get_permalink( $cruise_id ) ); ?>" data-post_id="<?php echo esc_attr( $cruise_id ) ?>" class=""><?php echo get_the_post_thumbnail( $cruise_id, 'biggallery-thumb' ); ?></a>
Find following code in /inc/frontend/tour/templates.php file.
<a title="<?php _e( 'View Photo Gallery', 'trav' ); ?>" class="hover-effect popup-gallery" data-post_id="<?php echo esc_attr( $tour_id );?>" href="#"><?php echo get_the_post_thumbnail( $tour_id, 'biggallery-thumb' ); ?></a>
Replace with following.
<a href="<?php echo esc_url( get_permalink( $tour_id) ); ?>" title="<?php _e( 'View Photo Gallery', 'trav' ); ?>" class="" data-post_id="<?php echo esc_attr( $tour_id );?>"><?php echo get_the_post_thumbnail( $tour_id, 'biggallery-thumb' ); ?></a>
2. Please tell me more details about it, Page url or screenshot, etc.
3. Please tell me more details about it, Page url or screenshot, etc.
Regards, C-Themes
The information you share is very good and interesting, krunker and thanks to that, I know more useful things. Keep posting interesting things and I will keep an eye on your posts.